    /* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #dbeafe;
            --secondary: #7c3aed;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #1e293b;
            --text: #475569;
            --text-light: #64748b;
            --success: #10b981;
            --warning: #f59e0b;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --border-radius: 12px;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            
            /* Light mode colors (default) */
            --bg-color: #ffffff;
            --bg-secondary: #f8fafc;
            --text-color: #475569;
            --text-heading: #1e293b;
            --card-bg: #ffffff;
            --border-color: #f1f5f9;
            --headeBtn-border-color: #334155;
            --header-bg: rgba(255, 255, 255, 0.95);
        }

        /* Dark mode colors */
        [data-theme="dark"] {
            --headeBtn-border-color: #f1f5f9;
            --bg-color: #0f172a;
            --bg-secondary: #1e293b;
            --text-color: #cbd5e1;
            --text-heading: #f1f5f9;
            --card-bg: #1e293b;
            --border-color: #334155;
            --header-bg: rgba(15, 23, 42, 0.95);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--bg-color);
            font-family: 'Open Sans', sans-serif;
            transition: background-color 0.3s ease, color 0.3s ease;
            /* margin-top: 2rem; */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: var(--text-heading);
            line-height: 1.3;
        }

        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.25rem;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.125rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Header Styles */
        header {
            background-color: var(--header-bg);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
            height: auto;
        }

        header.scrolled {
            padding: 8px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            transition: var(--transition);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            z-index: 1001;
        }

        .logo i {
            color: var(--primary);
            font-size: 32px;
        }

        .logo h1 {
            font-size: 26px;
            color: var(--primary);
            font-weight: 800;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-heading);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            font-size: 16px;
            padding: 8px 0;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .header-buttons {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .cta-button {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 15px;
            box-shadow: var(--shadow);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        .btn-login {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 15px;
        }

        .btn-login:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Theme Toggle Switch */
        .theme-toggle {
            display: flex;
            align-items: center;
            margin-left: 10px;
        }

        .theme-toggle input {
            display: none;
        }

        .theme-toggle label {
            width: 50px;
            height: 26px;
            background-color: var(--text-light);
            display: flex;
            border-radius: 50px;
            align-items: center;
            justify-content: space-between;
            padding: 5px;
            position: relative;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .theme-toggle label:hover {
            background-color: var(--primary);
        }

        .theme-toggle .ball {
            width: 20px;
            height: 20px;
            background-color: white;
            position: absolute;
            top: 3px;
            left: 3px;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .theme-toggle input:checked + label .ball {
            transform: translateX(24px);
        }

        .theme-toggle .fa-sun {
            color: #f59e0b;
            font-size: 12px;
        }

        .theme-toggle .fa-moon {
            color: #f1f5f9;
            font-size: 12px;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary);
            z-index: 1001;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--bg-color);
            z-index: 1200;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            padding: 100px 24px 40px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            margin-bottom: 40px;
        }

        .mobile-nav-links li {
            margin-bottom: 20px;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--text-heading);
            font-size: 18px;
            font-weight: 600;
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .mobile-nav-links a:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        .mobile-nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-nav-buttons .btn-login,
        .mobile-nav-buttons .cta-button {
            width: 100%;
            text-align: center;
        }

        .close-menu {
            position: absolute;
            top: 24px;
            right: 24px;
            font-size: 24px;
            color: var(--text-heading);
            cursor: pointer;
            background: none;
            border: none;
        }
            /* breADCRUMB */
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            font-size: 1rem;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb span {
            margin: 0 10px;
        }


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 180px 0 100px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero p {
            font-size: 1.125rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background-color: white;
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-align: center;
            border: none;
            cursor: pointer;
            font-size: 16px;
            box-shadow: var(--shadow);
        }

        .btn-primary:hover {
            background-color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 16px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-align: center;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-secondary:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        /* Stats Section */
        .stats-section {
            background-color: var(--bg-secondary);
            padding: 60px 0;
            position: relative;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
            display: block;
        }

        .stat-text {
            font-size: 1.125rem;
            color: var(--text-heading);
            font-weight: 600;
        }

        /* About Section */
        .about-section {
            background-color: var(--bg-color);
            position: relative;
            overflow: hidden;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .about-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 24px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-text p {
            font-size: 1.125rem;
            margin-bottom: 24px;
            color: var(--text-color);
        }

        .about-features {
            list-style: none;
            margin: 32px 0;
        }

        .about-features li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
            font-size: 1.125rem;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .about-features li:last-child {
            border-bottom: none;
        }

        .about-features li i {
            color: var(--success);
            margin-right: 12px;
            font-size: 1.25rem;
            margin-top: 4px;
            flex-shrink: 0;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background-color: var(--bg-secondary);
            position: relative;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .feature {
            background: var(--bg-color);
            padding: 30px 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--primary);
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature i {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
            display: block;
        }

        .feature h3 {
            font-size: 1.375rem;
            margin-bottom: 16px;
        }

        .feature p {
            color: var(--text-light);
        }

        /* Services Section */
        .services-section {
            background-color: var(--bg-color);
            position: relative;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid var(--border-color);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .service-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .service-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.375rem;
            margin-bottom: 12px;
        }

        .service-content p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        .service-link i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .service-link:hover {
            color: var(--primary-dark);
        }

        .service-link:hover i {
            transform: translateX(8px);
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--gradient);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section .section-title h2 {
            color: white;
        }

        .testimonials-section .section-title h2::after {
            background: white;
        }

        .testimonials-section .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }

        .testimonial-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px 25px;
            border-radius: var(--border-radius);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 60px;
            color: rgba(255, 255, 255, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            font-size: 1.125rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 16px;
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-info h4 {
            margin-bottom: 4px;
            font-size: 1.125rem;
            color: white;
        }

        .testimonial-info p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* Medical Equipment Section */
        .equipment-section {
            background-color: var(--bg-color);
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .equipment-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid var(--border-color);
        }

        .equipment-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .equipment-image {
            height: 160px;
            overflow: hidden;
            position: relative;
        }

        .equipment-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
        }

        .equipment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .equipment-card:hover .equipment-image img {
            transform: scale(1.1);
        }

        .equipment-content {
            padding: 20px;
        }

        .equipment-content h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
        }

        .equipment-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        /* How It Works Section */
        .how-it-works {
            background-color: var(--bg-secondary);
            position: relative;
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 50px;
            margin-top: 50px;
        }

        .step {
            display: flex;
            align-items: flex-start;
            gap: 25px;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: var(--shadow);
            position: relative;
            flex-shrink: 0;
        }

        .step-icon::after {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border-radius: 50%;
            border: 2px dashed var(--primary);
            opacity: 0.3;
        }

        .step-content h3 {
            font-size: 1.375rem;
            margin-bottom: 12px;
        }

        .step-content p {
            color: var(--text-light);
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient);
            color: white;
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section h2 {
            color: white;
            font-size: 2.25rem;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.125rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 24px;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            color: white;
            font-size: 1.375rem;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #b0b7c3;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: #b0b7c3;
        }

        .footer-contact li i {
            margin-right: 12px;
            color: var(--primary);
            margin-top: 4px;
            flex-shrink: 0;
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b0b7c3;
            font-size: 0.9rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            box-shadow: var(--shadow-lg);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        /* Responsive Styles */
        @media (min-width: 768px) {
            .section-padding {
                padding: 100px 0;
            }
            
            .section-title h2 {
                font-size: 2.75rem;
            }
            
            .hero {
                padding: 200px 0 120px;
            }
            
            .hero h2 {
                font-size: 3.5rem;
            }
            
            .about-content {
                flex-direction: row;
                align-items: center;
                gap: 60px;
            }
            
            .steps {
                flex-direction: row;
                justify-content: space-between;
                margin-top: 60px;
            }
            
            .step {
                flex-direction: column;
                text-align: center;
                flex: 1;
                padding: 0 20px;
            }
            
            .step-icon {
                margin: 0 auto 24px;
            }
            
            .stat-number {
                font-size: 3.5rem;
            }
        }

        @media (min-width: 992px) {
            .nav-links, .auth-buttons {
                display: flex;
            }
            
            .mobile-menu {
                display: none;
            }
        }

        @media (max-width: 991px) {
            .nav-links, .auth-buttons {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
        }

        @media (max-width: 767px) {
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero-buttons, .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 280px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
            
            /* Fix for mobile navigation */
            .mobile-nav {
                width: 80%;
                max-width: 320px;
            }
            
            /* Fix for step layout on mobile */
            .step {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .step-icon {
                margin: 0 auto;
            }
            
            /* Fix for stats layout on mobile */
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .service-grid, .features, .testimonial-wrapper, .equipment-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .logo img 
            {
                width: 3rem;
                height: 3rem;
            }
            
            .header-buttons {
                gap: 10px;
            }
            
            .cta-button, .btn-login {
                padding: 10px 16px;
                font-size: 14px;
            }
        }
        .headerIcons
        {
            width: 3rem;
            height: 3rem;
            border:1px solid var(--headeBtn-border-color);
            border-radius:10px;
            text-align:center;
            align-content:center;
            font-size:1.3rem;
            background:var(--bg-secondary);
            transition: 0.4s;
            cursor: pointer;
        }
        .headerIcons:hover
        {
            transform: scale(1.06) translateY(-3px);
            color: blue;
            font-size: 1.4rem;
        }
        
        
        
        
        
        
        
    /* Floating WhatsApp Button Styles - Moved to left side */
    .floating-whatsapp {
        position: fixed;
        bottom: 30px;
        left: 30px; /* Changed from right to left */
        z-index: 1000;
    }
    
    .whatsapp-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        color: white;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }
    
    .whatsapp-btn:hover {
        background-color: #128C7E;
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }
    
    .whatsapp-btn i {
        font-size: 28px;
    }
    
    /* Back to Top Button Styles - Ensure proper positioning */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }
    
    .back-to-top:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
    }
    
    /* Pulse animation for the WhatsApp button */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .floating-whatsapp {
            bottom: 20px;
            left: 20px; /* Changed from right to left */
        }
        
        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
        }
        
        .whatsapp-btn {
            width: 55px;
            height: 55px;
        }
        
        .whatsapp-btn i {
            font-size: 24px;
        }
        
        .back-to-top i {
            font-size: 18px;
        }
    }