:root {
            --primary-orange: #FF6B35;
            --secondary-orange: #FF8C42;
            --light-orange: #FFA366;
            --dark-orange: #E55B2B;
            --orange-light: rgba(255, 107, 53, 0.1);
            --white: #FFFFFF;
            --light-gray: #F8F9FA;
            --medium-gray: #E9ECEF;
            --dark-gray: #212529;
            --text-gray: #6C757D;
            --blue-accent: #0D6EFD;
            --success: #198754;
            --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
      .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: grey;
            color: white;
            padding: 2rem 0;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .header-content h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .header-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            font-style: italic;
        }
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Top Header Bar */
        .top-header-bar {
            background: #6d390a;
            padding: 8px 0;
            color: white;
            font-size: 13px;
            font-weight: 500;
        }

        .top-header-bar a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .top-header-bar a:hover {
            opacity: 0.8;
        }

        .top-header-bar .fa {
            margin-right: 6px;
            font-size: 12px;
        }

        /* Main Header */
        .main-header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .main-header.scrolled {
            padding: 8px 0;
            box-shadow: var(--shadow-lg);
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-container:hover .logo-icon {
            transform: rotate(5deg) scale(1.05);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: white;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            font-weight: 700;
            background: #55b321;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .logo-subtext {
            font-size: 10px;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: none;
        }

        .desktop-nav .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
        }

        .desktop-nav .nav-link:hover {
            color: #55b321;
        }

        .desktop-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: #55b321;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .desktop-nav .nav-link:hover::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark-gray);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            color: #55b321;
        }

        /* CTA Button */
        .btn-orange {
            background: #55b321;
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-orange:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
            color: white;
        }

        /* Navigation Menu Bar */
        .nav-menu-bar {
            background-color: var(--light-gray);
            border-top: 1px solid var(--medium-gray);
            padding: 0;
        }

        .nav-menu-bar .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            padding: 12px 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .nav-menu-bar .nav-link i {
            margin-right: 8px;
            width: 16px;
        }

        .nav-menu-bar .nav-link:hover {
            background-color: #55b321;
            color: white;
        }

        .nav-menu-bar .dropdown-menu {
            border: none;
            box-shadow: var(--shadow-lg);
            border-radius: 8px;
            padding: 8px 0;
            min-width: 250px;
        }

        .nav-menu-bar .dropdown-item {
            padding: 8px 16px;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .nav-menu-bar .dropdown-item:hover {
            background-color: var(--orange-light);
            color: #55b321;
        }

        /* Dropdown Submenu */
        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu .dropdown-toggle::after {
            display: none;
        }

        .dropdown-submenu .dropdown-toggle::before {
            content: "\f105";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            float: right;
            margin-left: auto;
        }

        .dropdown-submenu-menu {
            position: absolute;
            top: 0;
            left: 100%;
            margin-top: -6px;
            margin-left: -1px;
            border-radius: 0 6px 6px 6px;
        }

        .dropdown-submenu:hover .dropdown-submenu-menu {
            display: block;
        }

        /* Responsive Design for Desktop Navigation */
        @media (min-width: 992px) {
            .desktop-nav {
                display: flex;
            }
            
            .mobile-menu-toggle {
                display: none;
            }
            
            .nav-menu-bar {
                display: block;
            }
        }

        @media (max-width: 991px) {
            .nav-menu-bar {
                display: none;
            }
        }

        @media (max-width: 76px) {
            .top-header-bar {
                font-size: 12px;
                padding: 6px 0;
            }
            
            .main-header {
                padding: 1px 0;
            }
            
            .logo-text {
                font-size: 18px;
            }
            
            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            
            .btn-orange {
                font-size: 12px;
                padding: 8px 16px;
            }
        }

        /* Enhanced Mobile Navigation Menu */
        .mobile-nav-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 320px;
            height: 100vh;
            background: var(--white);
            box-shadow: var(--shadow-lg);
            z-index: 9999;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-nav-menu.active {
            left: 0;
        }

        .mobile-nav-header {
            padding: 20px;
            border-bottom: 1px solid var(--medium-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            background: var(--white);
            z-index: 10;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark-gray);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-nav-close:hover {
            color: var(--primary-orange);
            transform: rotate(90deg);
        }

        .mobile-nav-items {
            padding: 20px 0;
        }

        /* Main Navigation Items */
        .mobile-nav-item {
            display: block;
            padding: 15px 20px;
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            position: relative;
        }

        .mobile-nav-item:hover {
            background-color: var(--orange-light);
            border-left-color: var(--primary-orange);
            color: var(--primary-orange);
        }

        .mobile-nav-item i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }

        /* Service Category Items with Dropdowns */
        .mobile-service-category {
            position: relative;
        }

        .mobile-service-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
        }

        .mobile-service-toggle:hover {
            background-color: var(--orange-light);
            border-left-color: var(--primary-orange);
            color: var(--primary-orange);
        }

        .mobile-service-toggle.active {
            background-color: var(--primary-orange);
            color: white;
            border-left-color: var(--dark-orange);
        }

        .mobile-service-toggle i.service-icon {
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }

        .mobile-service-toggle i.toggle-icon {
            transition: transform 0.3s ease;
            font-size: 12px;
        }

        .mobile-service-toggle.active i.toggle-icon {
            transform: rotate(180deg);
        }

        /* Service Sub-menu */
        .mobile-service-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: var(--light-gray);
        }

        .mobile-service-submenu.active {
            max-height: 1000px;
        }

        .mobile-service-subitem {
            display: block;
            padding: 12px 20px 12px 52px;
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .mobile-service-subitem:hover {
            background-color: var(--orange-light);
            border-left-color: var(--primary-orange);
            color: var(--primary-orange);
        }

        .mobile-service-subitem i {
            margin-right: 8px;
            width: 16px;
            text-align: center;
            font-size: 12px;
        }

        /* Section Headers */
        .mobile-nav-section {
            padding: 15px 20px 10px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid var(--medium-gray);
            margin: 10px 0;
            background: linear-gradient(135deg, var(--light-gray), var(--white));
        }

        /* Mobile Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Service Category Colors */
        .seo-services .mobile-service-toggle.active {
            background: linear-gradient(135deg, var(--blue-accent), #0B5ED7);
        }

        .social-media .mobile-service-toggle.active {
            background: linear-gradient(135deg, #E91E63, #C2185B);
        }

        .online-branding .mobile-service-toggle.active {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
        }

        .pay-per-click .mobile-service-toggle.active {
            background: linear-gradient(135deg, #9C27B0, #7B1FA2);
        }

        .web-solutions .mobile-service-toggle.active {
            background: linear-gradient(135deg, var(--success), #157347);
        }

        .hosting-solutions .mobile-service-toggle.active {
            background: linear-gradient(135deg, #FF9800, #F57C00);
        }

        /* Responsive Design */
        @media (max-width: 576px) {
            .mobile-nav-menu {
                width: 90%;
                max-width: 300px;
            }

            .logo-text {
                font-size: 18px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .btn-orange {
                font-size: 12px;
                padding: 8px 16px;
            }
        }

        /* Demo Content Styles */
        .demo-content {
            padding: 80px 0;
            text-align: center;
        }

        .demo-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary-orange);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 25px;
            font-weight: 600;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .demo-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        /* Scrollbar Styling for Mobile Menu */
        .mobile-nav-menu::-webkit-scrollbar {
            width: 4px;
        }

        .mobile-nav-menu::-webkit-scrollbar-track {
            background: var(--light-gray);
        }

        .mobile-nav-menu::-webkit-scrollbar-thumb {
            background: var(--primary-orange);
            border-radius: 2px;
        }

        .mobile-nav-menu::-webkit-scrollbar-thumb:hover {
            background: var(--dark-orange);
        }
         /* Footer Styles */
        .footer {
            background: #6d390a;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange), var(--blue-accent), #9C27B0);
        }

        .footer-top {
            padding: 20px 0 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo .logo-text {
            color: white;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: #55b321;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-icon:hover {
            background: #55b321;
            color: white;
            transform: translateY(-3px) scale(1.1);
        }

        .footer-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 30px;
            height: 2px;
            background: #55b321;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: #55b321;
            padding-left: 5px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-contact-item i {
            width: 20px;
            margin-right: 10px;
            color: #55b321;
        }

        .footer-contact-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-item a:hover {
            color: #55b321;
        }

        .footer-bottom {
            padding: 20px 0;
            background: rgba(0, 0, 0, 0.3);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-bottom a {
            color: #55b321;
            text-decoration: none;
        }

        /* Bottom Contact Bar */
        .bottom-contact-bar {
            background: #55b321;
            padding: 12px 0;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #FFFFFF;
            transition: all 0.3s ease;
            padding: 4px;
            border-radius: 8px;
        }

        .contact-item:hover {
            color: #55b321;
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.2);
        }

        .contact-item i {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .contact-item span {
            font-size: 11px;
            font-weight: 600;
        }
.clients-section {
            padding: 20px 10;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .clients-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.4;
        }


        .clients-slider {
            overflow: hidden;
            width: 100%;
            position: relative;
            mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
            -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
        }

        .clients-wrapper {
            display: flex;
            gap: 20px;
            animation: slideRightToLeft 25s linear infinite;
            width: max-content;
        }

        .clients-wrapper:hover {
            animation-play-state: paused;
        }

        .client-item {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            min-width: 160px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .client-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.1), transparent);
            transition: left 0.6s;
        }

        .client-item:hover::before {
            left: 100%;
        }

        .client-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .client-item img {
            max-width: 180px;
            max-height: 120px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(0%) opacity(1);
            transition: all 0.3s ease;
        }

        .client-item:hover img {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }


        /* Continuous Animation */
        @keyframes slideRightToLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .clients-section {
                padding: 20px 0;
            }

           

            

            .clients-wrapper {
                gap: 40px;
                animation: slideRightToLeft 20s linear infinite;
            }

            .client-item {
                min-width: 150px;
                height: 100px;
                padding: 20px;
            }

            .client-item img {
                max-width: 160px;
                max-height: 180px;
            }

            .section-header {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .clients-wrapper {
                gap: 30px;
                animation: slideRightToLeft 15s linear infinite;
            }

            .client-item {
                min-width: 180px;
                height: 120px;
                padding: 15px;
            }

            .client-item img {
                max-width: 180px;
                max-height: 120px;
            }

            .client-cghs, .client-esic, .client-railway {
                font-size: 0.9rem;
            }
        }

        /* Additional styling for branded items */
        .client-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 5px;
        }

        .client-brand .brand-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: white;
        }

        .client-brand .brand-subtitle {
            font-size: 0.7rem;
            opacity: 0.9;
            color: white;
        }

         .testimonials-section {
            background: #55b321;
            padding: 20px 10px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .section-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonials-slider {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .testimonials-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-card {
            min-width: 100%;
            display: flex;
            gap: 30px;
            padding: 15px;
        }

        @media (min-width: 768px) {
            .testimonial-card {
                min-width: 50%;
            }
        }

        @media (min-width: 1024px) {
            .testimonial-card {
                min-width: 33.333%;
            }
        }

        .testimonial-item {
            background: white;
            border-radius: 15px;
            padding: 20px;
            color: #333;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            min-height: 300px;
            transition: transform 0.3s ease;
        }

        .testimonial-item:hover {
            transform: translateY(-5px);
        }

        .patient-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .patient-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4a7c59, #2d5a3d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .patient-details h3 {
            font-size: 1.3rem;
            color: #2d5a3d;
            margin-bottom: 5px;
        }

        .condition {
            color: #666;
            font-size: 0.95rem;
        }

        .testimonial-text {
            flex-grow: 1;
            line-height: 1.6;
            color: #555;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .rating {
            display: flex;
            gap: 3px;
            margin-top: auto;
        }

        .star {
            color: #ffc107;
            font-size: 1.2rem;
        }

        .star.empty {
            color: #ddd;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
        }

        .slider-btn {
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .slider-btn:hover {
            background: rgba(255,255,255,0.3);
            border-color: rgba(255,255,255,0.5);
            transform: scale(1.1);
        }

        .slider-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        .trust-indicators {
            text-align: center;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 5px;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .testimonial-card {
                min-width: 100%;
                flex-direction: column;
                gap: 20px;
            }
            
            .trust-stats {
                gap: 30px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        .blog-section {
            padding: 40px 10px;
            background: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #6d390a;
            margin: 0;
        }

        .view-all-link {
            color: #17a2b8;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .view-all-link:hover {
            color: #138496;
            text-decoration: underline;
        }

        .blog-slider-wrapper {
            position: relative;
            overflow: hidden;
        }

        .blog-slider {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
        }

        .blog-card {
            min-width: calc(25% - 15px);
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .brand-logo {
            position: absolute;
            top: 12px;
            left: 12px;
            background: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #17a2b8;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .brand-logo::before {
            content: '';
            width: 16px;
            height: 16px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
            border-radius: 2px;
            display: inline-block;
        }

        .awareness-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #28a745;
            color: white;
            padding: 6px 10px;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .card-content {
            padding: 20px;
        }

        .card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.4;
            height: 2.8em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .card-subtitle {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
            height: 2.7em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .read-more-btn {
            background: none;
            border: none;
            color: #17a2b8;
            font-weight: 500;
            cursor: pointer;
            padding: 0;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .read-more-btn:hover {
            color: #138496;
            text-decoration: underline;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
        }

        .slider-btn {
            background: white;
            border: 1px solid #dee2e6;
            color: #6c757d;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .slider-btn:hover:not(:disabled) {
            background: #17a2b8;
            border-color: #17a2b8;
            color: white;
        }

        .slider-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .slider-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #dee2e6;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #17a2b8;
            transform: scale(1.2);
        }

        /* Special card styles based on original */
        .hip-card .card-image {
            background: linear-gradient(45deg, #1e3a8a, #3b82f6);
        }

        .hip-card .card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="30" r="8" fill="white" opacity="0.3"/><path d="M30 60 Q50 40 70 60 Q50 80 30 60" fill="white" opacity="0.2"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .back-pain-card .card-image {
            background: #f8f9fa;
        }

        .lymphoma-card .card-image {
            background: linear-gradient(135deg, #28a745, #20c997);
        }

        .skin-card .card-image {
            background: linear-gradient(135deg, #ffc107, #fd7e14);
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .blog-card {
                min-width: calc(33.333% - 14px);
            }
        }

        @media (max-width: 768px) {
            .blog-card {
                min-width: calc(50% - 10px);
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .blog-card {
                min-width: calc(100% - 0px);
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
        }


        /* About Section Styles */
.home-about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.home-about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 30px;
}

/* Content Styles */
.about-content {
    padding-right: 20px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #7CB342, #8BC34A);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-green {
    color: #7CB342;
}

.highlight-brown {
    color: #8B4513;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.about-description-secondary {
    font-size: 1rem;
    line-height: 1.6;
    color: #777;
    margin-bottom: 30px;
    font-style: italic;
}

/* Key Features */
.key-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #7CB342;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #7CB342, #8BC34A);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: #333;
}

/* Buttons */
.about-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: #6d390a;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #DC3545;
    padding: 15px 30px;
    border: 2px solid #DC3545;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #DC3545;
    color: white;
    transform: translateY(-3px);
}

/* Image Section */
.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.company-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.company-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.company-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-image:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #007BFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    animation: float 3s ease-in-out infinite;
}

.experience-card {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.patients-card {
    bottom: 20px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #7CB342, #8BC34A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.card-text {
    font-size: 0.85rem;
    color: #666;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #7CB342, #8BC34A);
    transition: width 0.3s ease;
}

.stat-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #7CB342, #8BC34A);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.2s;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .about-container {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .about-title {
        font-size: 2.4rem;
    }
    
    .floating-card {
        min-width: 160px;
        padding: 15px;
    }
    
    .quick-stats {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .home-about-section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .about-content {
        padding-right: 0;
        order: 2;
        text-align: center;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-description,
    .about-description-secondary {
        text-align: left;
        font-size: 1rem;
    }
    
    .key-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .company-image img {
        height: 300px;
    }
    
    .floating-card {
        position: relative;
        margin: 10px 0;
        animation: none;
    }
    
    .experience-card,
    .patients-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px;
    }
    
    .stat-item {
        padding: 15px;
        gap: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .home-about-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .about-description,
    .about-description-secondary {
        font-size: 0.95rem;
    }
    
    .about-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .company-image img {
        height: 250px;
    }
    
    .floating-card {
        min-width: 140px;
        padding: 12px;
        gap: 10px;
    }
    
    .card-number {
        font-size: 1.3rem;
    }
    
    .card-text {
        font-size: 0.8rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .stat-item {
        padding: 12px;
        gap: 12px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}
 .home-about-section {
            background: #ffffff;
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-content {
            padding-right: 20px;
        }

        .section-badge {
            background: rgba(0, 123, 255, 0.1);
            color: #007bff;
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 123, 255, 0.2);
        }

        .about-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .about-title .highlight-red {
            color: #6d390a;
        }

        .about-title .highlight-blue {
            color: #55b321;
        }

        .about-description {
            font-size: 0.8rem;
            color: #495057;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .highlight-text {
            color: #dc3545;
            font-weight: 600;
        }

        .key-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            color: #495057;
        }

        .feature-item::before {
            content: '✓';
            color: #28a745;
            font-weight: bold;
            font-size: 1.1rem;
            margin-right: 10px;
            width: 18px;
        }

        .about-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #55b321;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 0.95rem;
            box-shadow: #6d390a;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #6d390a;
            padding: 12px 25px;
            border: 2px solid #6d390a;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 0.95rem;
        }

        .btn-secondary:hover {
            background: #55b321;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
        }

        .about-image {
            position: relative;
        }

        .image-wrapper {
            background: #f8f9fa;
            border-radius: 20px;
            padding: 25px;
            box-shadow: #6d390a;
            border: 2px solid #6d390a;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #007bff 0%, #dc3545 100%);
        }

        .image-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-color: #007bff;
        }

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .welcome-section {
        padding: 25px 10px 80px;
    }
    
    .welcome-heading {
        font-size: 1.6rem;
    }
    
    .welcome-description {
        font-size: 0.9rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .menu-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

        .company-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: #6c757d;
            position: relative;
        }

        .image-overlay {
            position: absolute;
            bottom: 15px;
            left: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .overlay-text {
            font-size: 0.9rem;
            color: #495057;
            font-weight: 600;
            text-align: center;
        }

        /* Quick Stats */
        .quick-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 15px;
            border-left: 4px solid #6d390a;
        }

        .stat-item {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #55b321;
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #6d390a;
            font-weight: 600;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .home-about-section {
                padding: 40px 15px;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .about-content {
                padding-right: 0;
                order: 2;
            }

            .about-image {
                order: 1;
            }

            .about-title {
                font-size: 1.8rem;
                text-align: center;
            }

            .about-description {
                font-size: 1rem;
                text-align: center;
            }

            .key-features {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .about-buttons {
                justify-content: center;
            }

            .company-image {
                height: 220px;
                font-size: 3rem;
            }

            .quick-stats {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .stat-item {
                padding: 10px 0;
                border-bottom: 1px solid #dee2e6;
            }

            .stat-item:last-child {
                border-bottom: none;
            }
        }

        @media (max-width: 480px) {
            .about-title {
                font-size: 1.6rem;
            }

            .about-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }

            .company-image {
                height: 200px;
                font-size: 2.5rem;
            }
        }

        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

         .therapies-section {
            padding: 20px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-subtitle {
            font-size: 1rem;
            color: #8B4513;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #DAA520, #8B4513);
            border-radius: 2px;
        }

        .section-desc {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }

        .therapies-slider {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .therapies-wrapper {
            display: flex;
            gap: 30px;
            animation: slideRightToLeft 25s linear infinite;
            width: max-content;
        }

        .therapies-wrapper:hover {
            animation-play-state: paused;
        }

        .therapy-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            width: 350px;
            flex-shrink: 0;
            cursor: pointer;
        }

        .therapy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .therapy-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }

        .therapy-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(139, 69, 19, 0.6), rgba(218, 165, 32, 0.4));
            opacity: 0.8;
        }

        .therapy-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            z-index: 2;
        }

        .therapy-icon {
            font-size: 4rem;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .therapy-card:hover .therapy-icon {
            transform: scale(1.1);
        }

        .therapy-name {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .therapy-tagline {
            font-size: 1rem;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .popularity-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .rating-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 215, 0, 0.9);
            color: #333;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .therapy-content {
            padding: 20px;
        }

        .therapy-description {
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.5;
            margin-bottom: 15px;
            text-align: center;
        }

        .therapy-benefits {
            margin-bottom: 20px;
        }

        .benefit-item {
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 6px;
            padding: 4px 0;
            display: flex;
            align-items: center;
        }

        .benefit-item::before {
            content: '✓';
            color: #8B4513;
            font-weight: bold;
            margin-right: 8px;
        }

        .therapy-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .therapy-btn {
            background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
            color: white;
            border: none;
            padding: 10px 18px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .therapy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
        }

        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

        .whatsapp-btn:hover {
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
        }

        /* Therapy Images */
        .hijama-img {
            background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .ksharsutra-img {
            background-image: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .cupping-img {
            background-image: url('https://images.unsplash.com/photo-1515443961218-a51367888e4b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .shirodhara-img {
            background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        /* Animation */
        @keyframes slideRightToLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .therapies-section {
                padding: 40px 0;
            }

            .container {
                padding: 0 15px;
            }

            .section-title {
                font-size: 2rem;
            }

            .therapies-wrapper {
                gap: 20px;
                animation: slideRightToLeft 20s linear infinite;
            }

            .therapy-card {
                width: 300px;
            }

            .therapy-image {
                height: 200px;
            }

            .therapy-icon {
                font-size: 3rem;
            }

            .therapy-name {
                font-size: 1.3rem;
            }

            .therapy-content {
                padding: 16px;
            }

            .section-header {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.7rem;
            }

            .therapies-wrapper {
                gap: 15px;
                animation: slideRightToLeft 15s linear infinite;
            }

            .therapy-card {
                width: 280px;
            }

            .therapy-image {
                height: 180px;
            }

            .therapy-buttons {
                flex-direction: column;
                gap: 8px;
            }
        }

        /* View All Button */
        .view-all-container {
            text-align: center;
            margin-top: 40px;
        }

        .view-all-btn {
            background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
        }

        .view-all-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
        }

        /* Banner Section */
        .inner-banner-section {
            background: #6d390a;


            color: white;
            padding: 80px 0 60px;




            text-align: center;
        }
        
        .inner-banner-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .inner-banner-section p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .inner-banner-section a {
            color: white;
            text-decoration: none;
        }
        
        .inner-banner-section a:hover {
            color: #6d390a;
        }
        
        /* Contact Section */
        .contact-request {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .box-contct-center {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-center h4 {
            color: #6d390a;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .contact-center h5 {
            color: #55b321;
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* Address Section */
        .address-ul {
            list-style: none;
            padding: 0;
        }
        
        .address-ul li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px;
            background: var(--light-gray);
            border-radius: 10px;
            border-left: #55b321;
        }
        
        .address-ul li i {
            color: #55b321;
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .address-ul li a {
            color: #6d390a;
            text-decoration: none;
            font-weight: 600;
        }
        
        .address-ul li a:hover {
            color: #55b321;
        }
        
        /* Form Styles */
        .contact-field {
            width: 100%;
            padding: 15px 20px;
            margin-bottom: 20px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }
        
        .contact-field:focus {
            outline: none;
            border-color: #55b321;
            box-shadow: 0 0 10px rgba(237, 28, 36, 0.1);
        }
        
        .field-name {
            color: #6d390a;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }
        
        .active-required {
            color: #55b321;
        }
        
        .submit-btn {
            background: #55b321;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .submit-btn:hover {
            background: #6d390a;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(237, 28, 36, 0.3);
        }
        :root {
            --primary-red: #ed1c24;
            --primary-blue: #01284f;
            --dark-red: #c41e3a;
            --dark-blue: #001a37;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --black: #000000;
        }
                /* Banner Section */
        .inner-banner-section {
            background: #6d390a;
            color: white;
            padding: 80px 0 60px;
            text-align: center;
        }
        
        .inner-banner-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .inner-banner-section p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .inner-banner-section a {
            color: white;
            text-decoration: none;
        }
        
        .inner-banner-section a:hover {
            color: white;
        }
        
        /* Our Story Section */
        .out-story {
            padding: 80px 0;
            background: white;
        }
        
        .out-story h5 {
            color: var(--primary-red);
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .out-story h2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .out-story p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            text-align: justify;
        }
        
        .ppc-ul {
            list-style: none;
            padding: 0;
            margin: 1px 0;
        }
        
        .ppc-ul li {
            padding: 10px 0 10px 10px;
            position: relative;
            border-left: 3px solid #55b321;
            margin-bottom: 15px;
            padding-left: 20px;
            background: var(--light-gray);
            border-radius: 5px;
        }
        
        .ppc-ul li::before {
            content: "✓";
            position: absolute;
            left: -12px;
            top: 10px;
            background: #55b321;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
        
        .about-btn {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .about-btn:hover {
            background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(237, 28, 36, 0.3);
            color: white;
        }
        
        .about-btn img {
            margin-left: 10px;
            width: 20px;
        }
        
        /* Vision Mission Section */
        .aboutsecton-last {
            padding: 40px 0;
            background: var(--light-gray);
        }
        
        .aboutsecton-last h2 {
            color: #55b321;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .aboutsecton-last .col-md-4 {
            text-align: center;
            padding: 30px 20px;
            margin-bottom: 30px;
        }
        
        .aboutsecton-last .col-md-4 img {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            filter: sepia(1) hue-rotate(340deg) saturate(2);
        }
        
        .aboutsecton-last .col-md-4 h2 {
            color: #6d390a;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .aboutsecton-last .col-md-4 p {
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Quote Section */
        .about-bottom-section {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .about-bottom-section p {
            font-size: 1.8rem;
            font-style: italic;
            font-weight: 300;
            margin: 0;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* About Section 2 */
        .about-section2 {
            padding: 80px 0;
            background: white;
        }
        
        .about-section2 h2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .about-section2 p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            text-align: justify;
        }
        
        /* Clients Section */
        .homesection1 {
            padding: 60px 0;
            background: var(--light-gray);
        }
        
        .client-div-p h2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .soluction-slider {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .soluction-slider .item {
            padding: 20px;
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .soluction-slider .item:hover {
            border-color: #55b321;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .soluction-slider img {
            max-width: 120px;
            height: auto;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .soluction-slider .item:hover img {
            opacity: 1;
        }
        
        /* Bottom Contact Section */
        .homesection2 {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
            padding: 60px 0;
        }
        
        .counter-overlay {
            color: white;
            text-align: center;
        }
        
        .counter-overlay h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .counter-overlay p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        #bottom-contact {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .services-input {
            width: 100%;
            padding: 15px 20px;
            margin-bottom: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(255,255,255,0.1);
            color: white;
            transition: all 0.3s ease;
        }
        
        .services-input::placeholder {
            color: rgba(255,255,255,0.7);
        }
        
        .services-input:focus {
            outline: none;
            border-color: white;
            background: rgba(255,255,255,0.2);
        }
        
        .submit-services {
            background: white;
            color: var(--primary-blue);
            border: none;
            padding: 15px 40px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
        }
        
        .submit-services:hover {
            background: var(--light-gray);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            padding: 60px 0 40px;
        }
        
        .footer-headding {
            color: var(--primary-red);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .quicklink-ul {
            list-style: none;
            padding: 0;
        }
        
        .quicklink-ul li {
            margin-bottom: 10px;
        }
        
        .quicklink-ul a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .quicklink-ul a:hover {
            color: var(--primary-red);
        }
        
        .footer-ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-ul li {
            margin-bottom: 15px;
            padding-left: 0;
        }
        
        .social-media {
            list-style: none;
            display: flex;
            gap: 15px;
            margin-top: 20px;
            padding: 0;
        }
        
        .social-media a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary-red);
            color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-media a:hover {
            background: white;
            color: var(--primary-red);
            transform: translateY(-3px);
        }
        
        /* Bottom Footer */
        .footer-bottom {
            background: var(--dark-blue);
            padding: 20px 0;
            text-align: center;
            color: white;
        }
        
        /* Fixed Contact Bar */
        .ftr_cta_blk {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            padding: 15px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
        }
        
        .call_wrapnew {
            text-align: center;
        }
        
        .call_wrapnew a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 10px;
            display: block;
            transition: all 0.3s ease;
        }
        
        .call_wrapnew a:hover {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
        }
        
        .call_wrapnew i {
            font-size: 1.2rem;
            margin-right: 8px;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .inner-banner-section h1 {
                font-size: 2rem;
            }
            
            .out-story, .about-section2, .aboutsecton-last {
                padding: 10px 0;
            }
            
            .menulinks {
                flex-direction: column;
                align-items: center;
            }
            
            .menulinks ul {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: var(--light-gray);
            }
            
            .header-ul1, .header-ul2 {
                flex-direction: column;
                text-align: center;
            }
            
            .out-story .col-md-6,
            .about-section2 .col-lg-6,
            .aboutsecton-last .col-md-4 {
                margin-bottom: 30px;
            }
            
            .about-bottom-section p {
                font-size: 1.2rem;
                padding: 0 20px;
            }
        }

          /* Filter Section */
        .filter-section {
            padding: 50px 0;
            background: #f8f9fa;
        }

        .filters {
            text-align: center;
            margin-bottom: 50px;
        }

        .filters ul {
            display: inline-flex;
            list-style: none;
            gap: 20px;
            background: white;
            padding: 10px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .filters li {
            cursor: pointer;
        }

        .filters a {
            display: block;
            padding: 12px 25px;
            color: #333;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filters .active a,
        .filters a:hover {
            background: linear-gradient(45deg, #dc3545, #0d6efd);
            color: white;
            transform: translateY(-2px);
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding: 20px 0;
        }

        .portfolio-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .portfolio-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .portfolio-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(220, 53, 69, 0.8), rgba(13, 110, 253, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .portfolio-item:hover .portfolio-image::before {
            opacity: 1;
        }

        .overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 3;
        }

        .portfolio-item:hover .overlay {
            opacity: 1;
        }

        .portfolio-content {
            padding: 25px;
            text-align: center;
        }

        .portfolio-category {
            display: inline-block;
            background: linear-gradient(45deg, #dc3545, #0d6efd);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .portfolio-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .portfolio-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Clients Section */
        .clients-section {
            padding: 20px 0;
            background: white;
            color: white;
            text-align: center;
        }

        .search-bar {
            background: white;
            border-radius: 50px;
            padding: 15px 25px;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid #e0f2e0;
            transition: all 0.3s ease;
        }

        .search-bar:focus-within {
            border-color: #4a7c59;
            box-shadow: 0 15px 40px rgba(74, 124, 89, 0.2);
        }

        .search-input {
            width: 100%;
            border: none;
            outline: none;
            font-size: 1.1rem;
            color: #2d5016;
            background: transparent;
        }

        .search-input::placeholder {
            color: #8ab68a;
        }

        .categories {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .category-btn {
            padding: 12px 25px;
            background: white;
            border: 2px solid #55b321;
            color: #4a7c59;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .category-btn:hover,
        .category-btn.active {
            background: #6d390a;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
        }

        .faq-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border: 1px solid #e0f2e0;
        }

        .faq-item {
            border-bottom: 1px solid #e0f2e0;
            transition: all 0.3s ease;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            padding: 25px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d5016;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: #4a7c59;
            padding-left: 10px;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: #4a7c59;
            transition: transform 0.3s ease;
            min-width: 30px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            padding: 0 0 0 0;
            color: #5d6b5d;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 0 25px 0;
        }

        .faq-answer p {
            margin-bottom: 15px;
        }

        .faq-answer ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .faq-answer li {
            margin-bottom: 8px;
        }

        .highlight {
            background: linear-gradient(120deg, #e8f5e8 0%, transparent 100%);
            padding: 2px 4px;
            border-radius: 4px;
            font-weight: 600;
            color: #4a7c59;
        }

        .contact-cta {
            background: #55b321;
            color: white;
            text-align: center;
            padding: 40px;
            border-radius: 20px;
            margin-top: 50px;
            box-shadow: 0 15px 40px rgba(74, 124, 89, 0.3);
        }

        .contact-cta h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .contact-cta p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 15px 30px;
            background: white;
            color: #4a7c59;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            background: #f0f8f0;
        }

        .no-results {
            text-align: center;
            padding: 40px;
            color: #8ab68a;
            font-style: italic;
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }
            
            .container {
                padding: 30px 15px;
            }
            
            .faq-container {
                padding: 25px;
            }
            
            .categories {
                gap: 10px;
            }
            
            .category-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.8rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .faq-container {
                padding: 20px;
            }
            
            .faq-question {
                font-size: 1rem;
                padding: 20px 0;
            }
        }


_____________________________
      



        .blog-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .blog-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        /* Search and Filter Section */
        .search-filter-section {
            background: white;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .search-box {
            max-width: 500px;
            margin: 0 auto 30px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid var(--light-green);
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 15px rgba(44, 85, 48, 0.2);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-green);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .filter-tag {
            background: var(--light-green);
            color: var(--primary-green);
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .filter-tag:hover,
        .filter-tag.active {
            background: var(--primary-green);
            color: white;
            border-color: var(--accent-orange);
        }

        /* Blog Grid */
        .blog-content {
            padding: 30px 0;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: var(--accent-orange);
        }

        .blog-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--light-green), var(--cream));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-image i {
            font-size: 4rem;
            color: var(--primary-green);
            opacity: 0.7;
        }

        .blog-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent-orange);
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .blog-body {
            padding: 25px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #666;
        }

        .blog-meta i {
            color: var(--primary-green);
        }

        .blog-card-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .blog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .blog-tag {
            background: var(--light-green);
            color: var(--primary-green);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .read-more-btn {
            background: var(--primary-green);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            background: var(--accent-orange);
            color: white;
            transform: translateX(5px);
        }

        /* Featured Post */
        .featured-post {
            background: linear-gradient(135deg, var(--cream), white);
            border-radius: 25px;
            padding: 40px;
            margin-bottom: 50px;
            border: 3px solid var(--gold);
            position: relative;
            overflow: hidden;
        }

        .featured-badge {
            position: absolute;
            top: -10px;
            right: 30px;
            background: var(--gold);
            color: white;
            padding: 10px 30px;
            border-radius: 0 0 15px 15px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .featured-post .blog-card-title {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .featured-post .blog-excerpt {
            font-size: 1.1rem;
            margin-bottom: 25px;
        }

        /* Pagination */
        .blog-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 40px;
        }

        .page-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--light-green);
            background: white;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .page-btn:hover,
        .page-btn.active {
            background: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
        }

        /* Sidebar */
        .blog-sidebar {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-green);
        }

        .recent-post {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .recent-post:last-child {
            border-bottom: none;
        }

        .recent-post-image {
            width: 80px;
            height: 60px;
            background: var(--light-green);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.5rem;
        }

        .recent-post-content h6 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .recent-post-date {
            font-size: 0.8rem;
            color: #666;
        }

        /* Newsletter Signup */
        .newsletter-signup {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            text-align: center;
            padding: 50px 20px;
            border-radius: 20px;
        }

        .newsletter-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .newsletter-form {
            max-width: 400px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
            margin-top: 25px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
        }

        .newsletter-btn {
            background: var(--accent-orange);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--gold);
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-title {
                font-size: 2.2rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .featured-post {
                padding: 25px;
            }
            
            .featured-post .blog-card-title {
                font-size: 1.5rem;
            }
            
            .filter-tags {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            
            .newsletter-form {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .blog-header {
                padding: 60px 0 40px;
            }
            
            .blog-content {
                padding: 40px 0;
            }
            
            .blog-card {
                margin-bottom: 20px;
            }
            
            .search-filter-section {
                padding: 30px 0;
            }
        }

            :root {
            --primary-green: #2c5530;
            --secondary-green: #4a7c59;
            --accent-orange: #ff6b35;
            --light-green: #e8f5e8;
            --gold: #d4af37;
            --cream: #faf8f3;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

         /* Breadcrumb - Mobile Optimized */
        .breadcrumb-section {
            margin-top: 1px;
            background: #55b321;
            color: var(--white);
            padding: 50px 0 20px;
            text-align: center;
        }

        .breadcrumb-content {
            padding: 0 15px;
        }

        .breadcrumb-title {
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .breadcrumb-subtitle {
            font-size: 13px;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .breadcrumb-nav {
            list-style: none;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            font-size: 18px;
        }

        .breadcrumb-nav a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
        }

        .breadcrumb-nav li:not(:last-child)::after {
            content: '/';
            margin-left: 1px;
            opacity: 0.6;
        }

________________________________________________
       .inner-banner-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .inner-banner-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .inner-banner-section a {
            color: #ffd700;
            text-decoration: none;
        }

        .inner-banner-section a:hover {
            text-decoration: underline;
        }

        .inner-banner-section i {
            margin: 0 10px;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #8b4513;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Doctors Section */
        .doctors-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f6f0 0%, #ede7db 100%);
        }

        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .doctor-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .doctor-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(135deg, #ff9500, #ff8c00);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .doctor-card:hover::before {
            transform: scaleX(1);
        }

        .doctor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .doctor-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 25px auto;
            background: linear-gradient(135deg, #8b4513, #a0522d);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            position: relative;
            box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
        }

        .doctor-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #8b4513;
            margin-bottom: 8px;
        }

        .doctor-title {
            font-size: 1rem;
            color: #ff9500;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .doctor-specialization {
            background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
            color: #0066cc;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 20px;
            display: inline-block;
        }

        .doctor-experience {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 20px;
            color: #666;
            font-size: 0.9rem;
        }

        .experience-badge {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .doctor-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .doctor-qualifications {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .doctor-qualifications li {
            background: #f8f9fa;
            margin-bottom: 8px;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 0.85rem;
            color: #495057;
            border-left: 3px solid #ff9500;
        }

        .doctor-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .btn-appointment {
            background: linear-gradient(135deg, #ff9500, #ff8c00);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-appointment:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 149, 0, 0.4);
            color: white;
            text-decoration: none;
        }

        .btn-contact {
            background: transparent;
            color: #8b4513;
            padding: 12px 25px;
            border: 2px solid #8b4513;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-contact:hover {
            background: #8b4513;
            color: white;
            text-decoration: none;
        }

        /* Featured Doctor Card */
        .featured-doctor {
            background: linear-gradient(135deg, #8b4513, #a0522d);
            color: white;
            position: relative;
            border: 3px solid #ffd700;
        }

        .featured-doctor::before {
            background: linear-gradient(135deg, #ffd700, #ffed4e);
        }

        .featured-doctor .doctor-image {
            background: rgba(255, 255, 255, 0.2);
            border: 4px solid rgba(255, 215, 0, 0.5);
            width: 140px;
            height: 140px;
            font-size: 3.5rem;
        }

        .featured-doctor .doctor-name {
            color: #ffd700;
            font-size: 1.6rem;
        }

        .featured-doctor .doctor-title {
            color: rgba(255, 255, 255, 0.9);
        }

        .featured-doctor .doctor-specialization {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .featured-doctor .doctor-description,
        .featured-doctor .doctor-qualifications li {
            color: rgba(255, 255, 255, 0.95);
        }

        .featured-doctor .doctor-qualifications li {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: #ffd700;
        }

        .chief-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            color: #8b4513;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .chief-badge i {
            font-size: 0.9rem;
        }

        /* Statistics Section */
        .stats-section {
            background: white;
            padding: 60px 40px;
            border-radius: 20px;
            margin: 60px 0;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ff9500;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: #666;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .inner-banner-section h1 {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 1rem;
            }

            .doctors-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .doctor-card {
                padding: 30px 25px;
            }

            .doctor-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-appointment,
            .btn-contact {
                justify-content: center;
            }

            .department-head {
                padding: 40px 30px;
            }

            .head-doctor-name {
                font-size: 1.6rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .doctors-section {
                padding: 60px 20px;
            }

            .doctor-card {
                padding: 25px 20px;
            }

            .department-head {
                padding: 30px 20px;
            }

            .stats-section {
                padding: 40px 20px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        
         /* 4. Quick Contact Buttons */
        .quick-contact {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }

        .contact-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-btn:hover {
            transform: scale(1.1);
            color: white;
            text-decoration: none;
        }

        .btn-call {
            background: linear-gradient(135deg, #28a745, #20c997);
            animation: bounce 2s infinite;
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #25d366, #128c7e);
        }

        .btn-appointment {
            background: linear-gradient(135deg, #ff9500, #ff8c00);
        }
  /* Responsive Design */
        @media (max-width: 768px) {
    

            .hours-widget {
                margin: 20px 0;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        