body {
            background: #000000;
            color: white;
            font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            min-height: 100vh;
            padding: 0;
            width: 100vw;
            overflow-x: hidden;
        }



/* Maximise Section */
        .maximise-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .background-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 1;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
/*            background: linear-gradient(135deg, rgba(9, 8, 39, 0.8) 0%, rgba(18, 16, 78, 0.7) 50%, rgba(27, 24, 117, 0.6) 100%);*/
            z-index: 2;
        }

        .maximise-container {
            position: absolute;
            bottom: 40px;
            left: 40px;
            max-width: 1000px;
            min-width: 600px;
            z-index: 10;
        }

        .content-box {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(78,60,217,0.30);
            border-radius: 20px;
            padding: 30px 40px;
            color: #fff;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.5),
                inset 0 0 30px rgba(147, 51, 234, 0.1);
            animation: slideInRight 1s ease-out;
            position: relative;
            overflow: hidden;
        }

        .content-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, transparent 50%, rgba(147, 51, 234, 0.05) 100%);
            pointer-events: none;
        }

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

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .logo-dots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: #4CAF50;
            border-radius: 50%;
            animation: dotPulse 2s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
        }

        .dot:nth-child(1) { animation-delay: 0s; }
        .dot:nth-child(2) { animation-delay: 0.2s; }
        .dot:nth-child(3) { animation-delay: 0.4s; }
        .dot:nth-child(4) { animation-delay: 0.6s; }
        .dot:nth-child(5) { animation-delay: 0.8s; }
        .dot:nth-child(6) { animation-delay: 1s; }
        .dot:nth-child(7) { animation-delay: 1.2s; }
        .dot:nth-child(8) { animation-delay: 1.4s; }
        .dot:nth-child(9) { animation-delay: 1.6s; }

        @keyframes dotPulse {
            0%, 100% { opacity: 0.4; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.3); }
        }

        .brand-name {
            font-size: 2rem;
            font-weight: 700;
            color: #4CAF50;
            letter-spacing: 1px;
            text-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
        }

        .maximise-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            color: #fff;
			background: linear-gradient(135deg, #ffffff 0%, #2E3192 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -2px;
            margin-bottom: 0px;
            text-shadow: 0 0 30px rgba(41, 31, 117, 0.6);
            position: relative;
            z-index: 2;
        }

		.maximise-title-sub {
			font-size: clamp(2.5rem, 2.5vw, 2rem);
			margin-bottom: 20px;
			background: linear-gradient(135deg, #ffffff 0%, #2E3192 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -2px;
		}

        .content-text {
            position: relative;
            z-index: 2;
        }

        .main-description {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .secondary-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
            font-weight: 300;
        }

        /* Enhanced Responsive Design for Maximise */
        @media (max-width: 1400px) {
            .main-description {
                font-size: 1.45rem;
            }
        }
        
        @media (max-width: 1200px) {
            .main-description {
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 1024px) {
            .maximise-container {
                bottom: 30px;
                left: 30px;
                right: 30px;
                max-width: none;
                min-width: auto;
            }

            .content-box {
                padding: 30px 40px;
            }
            
            .main-description {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 900px) {
            .main-description {
                font-size: 1.55rem;
            }
        }

        @media (max-width: 768px) {
			.maximise-section {
				justify-content: center;
				flex-direction: column;
				top: 7vh;
				position: relative;
                min-height: auto;
                padding-bottom: 5vh;
			}
			
			.background-video {
				position: relative;
                left: 50%;
                min-width: 100%;
                width: auto;
                height: 40vh;
                transform: translate(-50%, 0);
                z-index: 1;
                object-fit: fill;
			}
			
			.maximise-container {
				position: relative;
				top: 0;
                left: auto;
                right: auto;
                min-width: auto;
				border-radius: 0;
                margin-bottom: 0;
            }

            .content-box {
                padding: 25px;
				border-radius: 0;
				border: 0;
				min-height: fit-content;
            }

            .brand-name {
                font-size: 1.6rem;
            }

            .maximise-title {
                font-size: 2rem;
                letter-spacing: 1px;
                margin-bottom: 10px;
            }
            
            .maximise-title-sub {
                font-size: 1.5rem;
                margin-bottom: 15px;
                letter-spacing: 0px;
            }

            .main-description {
                font-size: 1.3rem;
                line-height: 1.6;
                margin-bottom: 10px;
            }
            
            .secondary-description {
                font-size: 1.15rem;
                line-height: 1.5;
            }
        }
        
        @media (max-width: 640px) {
            .maximise-title {
                font-size: 1.8rem;
            }
            
            .maximise-title-sub {
                font-size: 1.4rem;
            }
            
            .main-description {
                font-size: 1.25rem;
            }
            
            .secondary-description {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .content-box {
                padding: 20px;
            }

            .maximise-title {
                font-size: 1.7rem;
                letter-spacing: 0px;
            }
            
            .maximise-title-sub {
                font-size: 1.3rem;
                margin-bottom: 10px;
            }

            .brand-name {
                font-size: 1.4rem;
            }

            .logo-dots {
                gap: 3px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }
            
            .main-description {
                font-size: 1.2rem;
            }
            
            .secondary-description {
                font-size: 1.05rem;
            }
        }

/*==============SENSOR, VSD, CHILLER=============*/

		.sensor-section-ctn {
            max-width: 1400px;
            margin: 7vh auto 5vh;
        }

        .chiller-section-ctn {
            max-width: 1400px;
            margin: 7vh auto 5vh;
        }

        .vsd-section-ctn {
			width: 100vw;
			padding: 7vh 9vw;
            margin: 7vh auto 5vh;
			background: rgba(84, 70, 190, 0.15);
        }

        .sensor-section {
            background: rgba(84, 70, 190, 0.15);
            border: 1px solid rgba(84, 70, 190, 0.3);
            border-radius: 20px;
            margin-bottom: 3rem;
            max-height: 500px;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 8px 32px rgba(84, 70, 190, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            display: flex;
        }

        .online-monitoring-section-ctn {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 2rem;
            background: #000000;
        }

        .monitoring-layout {
            display: grid;
            grid-template-columns: 35% 65%;
            grid-template-rows: auto auto;
            gap: 2rem;
            align-items: start;
            min-height: 600px;
            position: relative;
        }

        .monitoring-left {
            grid-column: 1;
            grid-row: 1 / 3;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 2rem;
			min-height: 70vh;
        }

        .monitoring-main-title {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1;
            color: white;
            text-align: right;
            letter-spacing: -2px;
        }

        .monitoring-right {
            grid-column: 2;
            grid-row: 2;
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
            padding-top: 2rem;
        }

        .phones-container {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            justify-content: flex-start;
        }

        .phone-mockup {
            width: auto;
            padding: 1rem;
        }

        .phone-mockup:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .phone-frame {
            border-radius: 20px;
            padding: 0.5rem;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-image {
            width: 100%;
            height: auto;
            border-radius: 15px;
            max-width: 22vw;
            object-fit: cover;
            display: block;
        }

        .phone-caption {
            text-align: center;
            padding: 2rem 0.5rem 0;
            font-size: 1.5rem;
            line-height: 1.4;
            color: white;
            opacity: 0.8;
        }

        .download-section {
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
        }

        .download-content {
            text-align: left;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .available-on {
            font-size: 1rem;
            color: white;
            margin: 0;
            opacity: 0.8;
            white-space: nowrap;
        }

        .store-buttons {
            display: flex;
            flex-direction: row;
            gap: 0.8rem;
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 1.2rem;
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.2), rgba(84, 70, 190, 0.1));
            border: 2px solid rgba(84, 70, 190, 0.3);
            border-radius: 10px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            min-width: 160px;
        }

        .store-btn:hover {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.3), rgba(84, 70, 190, 0.2));
            border-color: rgba(84, 70, 190, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(84, 70, 190, 0.3);
        }

        .store-btn svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        /* Enhanced Responsive Design for Online Monitoring */
        @media (max-width: 1200px) {
            .monitoring-layout {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto;
                gap: 3rem;
                text-align: center;
                position: static;
            }

            .monitoring-left {
                grid-column: 1;
                grid-row: 1;
                justify-content: center;
                padding-right: 0;
            }

            .monitoring-main-title {
                font-size: 3rem;
                text-align: center;
            }

            .monitoring-right {
                grid-column: 1;
                grid-row: 2;
                justify-content: center;
                padding-top: 0;
            }

            .phones-container {
                justify-content: center;
                gap: 1.5rem;
            }

            .phone-mockup {
                width: 250px;
            }

            .download-section {
                position: static;
                grid-column: 1;
                grid-row: 3;
                justify-content: center;
                top: auto;
                right: auto;
            }

            .download-content {
                text-align: center;
            }
            
            .phone-caption {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 768px) {
            .online-monitoring-section-ctn {
                padding: 2rem 1rem;
            }

            .monitoring-layout {
                gap: 2rem;
            }

            .monitoring-main-title {
                font-size: 2.2rem;
            }

            .phones-container {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            .phone-mockup {
                width: 280px;
            }

            .store-buttons {
                align-items: center;
            }
            
            .phone-caption {
                font-size: 1.4rem;
                padding: 1rem 0.5rem 0;
            }
            
            /* Hide icons on mobile for all sections */
            .sensor-image,
            .sensor-image1,
            .sensor-image2 {
                display: none !important;
            }
            
            /* Hide power meter image on mobile */
            .power-meter .meter-image {
                display: none !important;
            }
            
            /* Adjust sensor sections for mobile - FIXED OVERLAP */
            .sensor-section-ctn,
            .chiller-section-ctn {
                margin: 8vh auto 3vh;
                padding: 0 10px;
            }
            
            .vsd-section-ctn {
                margin: 8vh auto 3vh;
                padding: 3vh 3vw;
            }
            
            /* Adjust power meter section */
            .power-meter {
                margin: 8vh auto 3vh;
            }
            
            .sensor-section {
                border-radius: 15px;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 480px) {
            .monitoring-main-title {
                font-size: 1.8rem;
            }

            .phone-mockup {
                width: 260px;
            }

            .phone-caption {
                font-size: 1.2rem;
                padding: 0.8rem 0.3rem 0;
            }

            .store-btn {
                padding: 0.7rem 1rem;
                font-size: 0.85rem;
                min-width: 140px;
            }
            
            .sensor-section-ctn,
            .chiller-section-ctn {
                margin: 6vh auto 2vh;
                padding: 0 5px;
            }
            
            .vsd-section-ctn {
                margin: 6vh auto 2vh;
                padding: 2vh 2vw;
            }
            
            .power-meter {
                margin: 6vh auto 2vh;
            }
        }

        .sensors-header {
            width: 20%;
            padding: 1.5rem 0.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .sensors-content {
            width: 85%;
            padding: 1.5rem;
            overflow-y: auto;
        }

        .sensors-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0.8rem;
        }

        .sensor-image {
            width: 8vw;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .sensor-image1 {
            width: 5vw;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

  		.sensor-image2 {
            width: 6vw;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
			margin-top: -8vh;
			margin-left: 3vw;
            font-size: 2rem;
        }

        .sensors-title {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            text-align: center;
        }

        .chiller-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .chiller-card {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.12), rgba(84, 70, 190, 0.08));
            border: 1px solid rgba(84, 70, 190, 0.25);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .chiller-card:hover {
            transform: translateY(-2px);
            border-color: rgba(84, 70, 190, 0.4);
            box-shadow: 
                0 10px 30px rgba(84, 70, 190, 0.2),
                0 0 0 1px rgba(84, 70, 190, 0.1);
        }

        .chiller-name {
            font-size: 1.5rem;
            font-weight: 700;
            min-width: 80px;
            opacity: 0.9;
        }

        .chiller-readings {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex: 1;
        }

        .chiller-readings-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .chiller-reading {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .chiller-reading .reading-value {
            font-size: 1.25rem;
            font-weight: 600;
            background: linear-gradient(135deg, rgb(84, 70, 190), rgb(84, 70, 190), rgb(84, 70, 190));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 8px rgba(84, 70, 190, 0.3));
        }

        .chiller-reading .reading-label {
            font-size: 0.7rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
        }

        /* Updated pump-section design */
        .pump-section {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.08), rgba(84, 70, 190, 0.04));
            border: 1px solid rgba(84, 70, 190, 0.2);
            border-radius: 16px;
            padding: 1rem;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: stretch;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .pump-section:hover {
            border-color: rgba(84, 70, 190, 0.3);
            box-shadow: 0 8px 24px rgba(84, 70, 190, 0.1);
        }

        .pump-header {
            width: 25%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            min-width: 160px;
            flex-shrink: 0;
            padding: 1rem;
        }

        .pump-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            text-align: center;
            line-height: 1.2;
            background: linear-gradient(135deg, rgb(84, 70, 190), rgb(120, 100, 220));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .add-pump-btn {
            width: 45px;
            height: 45px;
            background: rgba(84, 70, 190, 0.1);
            border: 2px dashed rgba(84, 70, 190, 0.4);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.8rem;
            color: rgba(84, 70, 190, 0.8);
            font-weight: 300;
        }

        .add-pump-btn:hover {
            background: rgba(84, 70, 190, 0.2);
            border-color: rgba(84, 70, 190, 0.6);
            transform: scale(1.05);
            color: rgba(84, 70, 190, 1);
        }

        .pump-cards {
            width: 80%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            align-items: start;
        }

        .pump-card {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.12), rgba(84, 70, 190, 0.08));
            border: 1px solid rgba(84, 70, 190, 0.25);
            border-radius: 16px;
            padding: 1.2rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            height: 100%;
        }

        .pump-card:hover {
            transform: translateY(-3px);
            border-color: rgba(84, 70, 190, 0.4);
            box-shadow: 0 12px 32px rgba(84, 70, 190, 0.2);
        }

        .pump-card-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            text-align: center;
            color: white;
            opacity: 0.9;
        }

        .pump-reading {
            display: flex;
            flex-direction: column;
            gap: 0rem;
            margin-bottom: 0.5rem;
        }

        .pump-value {
            font-size: 1.3rem;
            font-weight: 600;
            background: linear-gradient(135deg, rgb(84, 70, 190), rgb(120, 100, 220));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 8px rgba(84, 70, 190, 0.3));
        }

        .pump-label {
            font-size: 0.75rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .pump-label::before {
            content: '';
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, rgb(84, 70, 190), rgb(120, 100, 220));
            border-radius: 50%;
            flex-shrink: 0;
        }

        .chiller-add-card {
            background: rgba(84, 70, 190, 0.05);
            border: 2px dashed rgba(84, 70, 190, 0.3);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 120px;
        }

        .chiller-add-card:hover {
            background: rgba(84, 70, 190, 0.1);
            border-color: rgba(84, 70, 190, 0.5);
            transform: translateY(-2px);
        }

        .sensor-card {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.12), rgba(84, 70, 190, 0.08));
            border: 1px solid rgba(84, 70, 190, 0.25);
            border-radius: 16px;
            padding: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            min-height: 200px;
            display: flex;
            flex-direction: column;
        }

        .sensor-card:hover {
            transform: translateY(-2px);
            border-color: rgba(84, 70, 190, 0.4);
            box-shadow: 
                0 10px 30px rgba(84, 70, 190, 0.2),
                0 0 0 1px rgba(84, 70, 190, 0.1);
        }

        .sensor-name {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .sensor-reading {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            margin-bottom: 0.8rem;
        }

        .reading-value {
            font-size: 1.4rem;
            font-weight: 600;
            background: linear-gradient(135deg, rgb(84, 70, 190), rgb(84, 70, 190), rgb(84, 70, 190));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 8px rgba(84, 70, 190, 0.3));
        }

        .reading-label {
            font-size: 0.75rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .reading-label::before {
            content: '';
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, rgb(84, 70, 190), rgb(84, 70, 190));
            border-radius: 50%;
            flex-shrink: 0;
        }

        .ch-main-header {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.18), rgba(84, 70, 190, 0.12));
            border-color: rgba(84, 70, 190, 0.35);
        }

        .add-card {
            background: rgba(84, 70, 190, 0.05);
            border: 2px dashed rgba(84, 70, 190, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .add-card:hover {
            background: rgba(84, 70, 190, 0.1);
            border-color: rgba(84, 70, 190, 0.5);
            transform: translateY(-2px);
        }

        .add-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(84, 70, 190, 0.7);
        }

        .add-icon {
            font-size: 3rem;
            font-weight: 300;
            color: rgba(84, 70, 190, 0.6);
        }

        .add-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: rgba(84, 70, 190, 0.8);
            letter-spacing: 2px;
        }

        .sensors-content::-webkit-scrollbar {
            width: 8px;
        }

        .sensors-content::-webkit-scrollbar-track {
            background: rgba(30, 20, 50, 0.5);
            border-radius: 4px;
        }

        .sensors-content::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, rgb(84, 70, 190), rgb(84, 70, 190));
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(84, 70, 190, 0.3);
        }

        .sensors-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, rgb(84, 70, 190), rgba(84, 70, 190, 0.8));
        }

        .description {
			width: 100%;
            margin: 0 auto 3rem;
            text-align: center;
            line-height: 1.6;
            font-size: 1.5rem;
            opacity: 0.9;
        }

        .product-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .product-button {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.1), rgba(84, 70, 190, 0.05));
            border: 2px solid rgba(84, 70, 190, 0.3);
            color: white;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(10px);
        }

        .product-button:hover {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.2), rgba(84, 70, 190, 0.1));
            border-color: rgba(84, 70, 190, 0.5);
            transform: translateY(-2px);
            box-shadow: 
                0 10px 30px rgba(84, 70, 190, 0.3),
                0 0 0 1px rgba(84, 70, 190, 0.2);
        }

        .download-button {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.15), rgba(84, 70, 190, 0.1));
            border: 1px solid rgba(84, 70, 190, 0.25);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 16px rgba(84, 70, 190, 0.1);
        }

        .download-button:hover {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.25), rgba(84, 70, 190, 0.15));
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(84, 70, 190, 0.2);
        }

        /* Enhanced responsive styles for the rest of the content */
        @media (max-width: 1400px) {
            .description {
                font-size: 1.45rem;
            }
        }
        
        @media (max-width: 1200px) {
            .description {
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 1024px) {
            .sensor-section {
                flex-direction: column;
                max-height: none;
            }
            
            .sensors-header {
                width: 100%;
                flex-direction: row;
                justify-content: center;
                padding: 1.5rem;
                gap: 2rem;
            }
            
            .sensors-content {
                width: 100%;
            }
            
            .sensors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pump-section {
                flex-direction: column;
                align-items: stretch;
                gap: 1.5rem;
            }
            
            .pump-header {
                width: 100%;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                min-width: auto;
                max-width: none;
                padding: 1rem 1.5rem;
            }
            
            .pump-cards {
                width: 100%;
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .description {
                font-size: 1.55rem;
            }
        }
        
        @media (max-width: 900px) {
            .description {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 768px) {
            .sensor-section {
                border-radius: 12px;
                margin-bottom: 1.5rem;
            }
            
            .sensors-header {
                padding: 1.2rem;
                gap: 1rem;
            }
            
            .sensors-title {
                font-size: 1.8rem;
            }
            
            .sensors-content {
                padding: 1.2rem;
            }
            
            .sensors-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
            
            .sensor-card {
                padding: 1rem;
                min-height: auto;
                border-radius: 12px;
            }
            
            .sensor-name {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }
            
            .reading-value {
                font-size: 1.4rem;
            }
            
            .reading-label {
                font-size: 0.85rem;
            }
            
            .pump-section {
                border-radius: 12px;
                padding: 1rem;
                margin-bottom: 1rem;
            }
            
            .pump-header {
                padding: 1rem;
                gap: 1rem;
            }
            
            .pump-title {
                font-size: 1.4rem;
            }
            
            .pump-cards {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
            
            .pump-card {
                padding: 1.2rem;
                border-radius: 12px;
            }
            
            .pump-card-title {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }
            
            .pump-value {
                font-size: 1.3rem;
            }
            
            .pump-label {
                font-size: 0.85rem;
            }
            
            .chiller-card {
                flex-direction: column;
                padding: 1.2rem;
                gap: 1.2rem;
                border-radius: 12px;
            }
            
            .chiller-name {
                font-size: 1.4rem;
                min-width: auto;
                text-align: center;
            }
            
            .chiller-readings-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .chiller-reading .reading-value {
                font-size: 1.2rem;
            }
            
            .chiller-reading .reading-label {
                font-size: 0.8rem;
            }
            
            .description {
                font-size: 1.3rem;
                line-height: 1.6;
                margin: 2rem auto 2rem;
                padding: 0 15px;
            }
            
            .add-icon {
                font-size: 2.5rem;
            }
            
            .add-text {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 640px) {
            .sensors-title {
                font-size: 1.6rem;
            }
            
            .sensor-card {
                padding: 0.9rem;
            }
            
            .sensor-name {
                font-size: 1.05rem;
            }
            
            .reading-value {
                font-size: 1.3rem;
            }
            
            .reading-label {
                font-size: 0.8rem;
            }
            
            .description {
                font-size: 1.25rem;
                margin: 1.8rem auto 1.8rem;
            }
            
            .chiller-readings-row {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .sensors-title {
                font-size: 1.5rem;
            }
            
            .sensor-card {
                padding: 0.85rem;
            }
            
            .sensor-name {
                font-size: 1rem;
            }
            
            .reading-value {
                font-size: 1.25rem;
            }
            
            .reading-label {
                font-size: 0.75rem;
            }
            
            .pump-title {
                font-size: 1.3rem;
            }
            
            .pump-card {
                padding: 1rem;
            }
            
            .pump-card-title {
                font-size: 1.2rem;
            }
            
            .pump-value {
                font-size: 1.2rem;
            }
            
            .pump-label {
                font-size: 0.8rem;
            }
            
            .chiller-name {
                font-size: 1.3rem;
            }
            
            .chiller-reading .reading-value {
                font-size: 1.15rem;
            }
            
            .chiller-reading .reading-label {
                font-size: 0.75rem;
            }
            
            .description {
                font-size: 1.2rem;
                margin: 1.5rem auto 1.5rem;
                padding: 0 10px;
            }
        }
        
        @media (max-width: 360px) {
            .sensors-title {
                font-size: 1.4rem;
            }
            
            .description {
                font-size: 1.15rem;
            }
        }

/*=============POWER METER=============*/

		.power-meter {
            width: 100vw;
            margin: 0 auto;
            padding: 7vh 10vw 4vh;
            display: flex;
            flex-direction: column;
            gap: 0px;
			background: rgba(84, 70, 190, 0.15);
        }

        .top-section {
            display: flex;
            gap: 40px;
        }

        .dashboard {
            width: 15%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .main-content {
            width: 85%;
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .title {
            font-size: 2rem;
            font-weight: 700;
			text-align: left;
            line-height: 1.2;
        }

        .left-section {
            flex: 1;
			background: linear-gradient(145deg, rgba(84, 70, 190, 0.12), rgba(84, 70, 190, 0.08));
    		border-radius: 12px;
    		border: 1px solid rgba(84, 70, 190, 0.25);
			padding: 20px;
        }

        .today-left {
            display: flex;
            align-items: center;
            width: 100%;
            margin-bottom: 20px;
			background: linear-gradient(145deg, rgba(84, 70, 190, 0.12), rgba(84, 70, 190, 0.08));
    		border: 1px solid rgba(84, 70, 190, 0.25);
    		border-radius: 12px;
			padding: 20px;
        }

        .today-text {
            width: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .today-label {
            font-size: 4vh;
            font-weight: 700;
            margin-bottom: 0;
            color: white;
        }

        .time {
            font-size: 24px;
            color: #aaa;
            font-style: italic;
        }

        .circular-progress {
            width: 50%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .progress-ring {
            transform: rotate(-90deg);
        }

        .progress-ring-bg {
            fill: none;
            stroke: #2a2a3e;
            stroke-width: 8;
        }

        .progress-ring-fill {
            fill: none;
            stroke: url(#progressGradient);
            stroke-width: 8;
            stroke-dasharray: 565.48;
            stroke-dashoffset: 113.1;
            animation: continuousRotate 3s linear infinite;
            transform-origin: center;
        }

        @keyframes continuousRotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            pointer-events: none;
            z-index: 10;
        }

        .progress-value {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 5px;
            color: white;
        }

        .progress-label {
            font-size: 16px;
            color: #aaa;
        }

        .yesterday {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            color: #aaa;
            font-size: 24px;
            margin-top: 0px;
			background: linear-gradient(145deg, rgba(84, 70, 190, 0.12), rgba(84, 70, 190, 0.08));
    		border: 1px solid rgba(84, 70, 190, 0.25);
    		border-radius: 12px;
			padding: 20px;
        }

        .yesterday-value {
            font-size: 2.5vh;
            font-weight: 600;
            color: white;
        }

        .right-section {
            flex: 1;
        }

        .target-section {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.12), rgba(84, 70, 190, 0.08));
            border-radius: 12px;
			border: 1px solid rgba(84, 70, 190, 0.25);
            padding: 20px;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .target-header {
            font-size: 18px;
            font-weight: 600;
            color: white;
        }

        .target-value {
            font-size: 28px;
            font-weight: 700;
            color: white;
        }

        .target-unit {
            font-size: 18px;
            color: #aaa;
            margin-left: 10px;
        }

        .history-section {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.12), rgba(84, 70, 190, 0.08));
			border: 1px solid rgba(84, 70, 190, 0.25);
            border-radius: 12px;
            padding: 20px;
        }

        .history-header {
            display: flex;
            justify-content: space-between;
            color: #aaa;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .history-list {
            max-height: 200px;
            overflow-y: auto;
            padding-right: 5px;
        }

        .history-list::-webkit-scrollbar {
            width: 6px;
        }

        .history-list::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

        .history-list::-webkit-scrollbar-thumb {
            background: rgba(61, 42, 143, 0.6);
            border-radius: 3px;
        }

        .history-list::-webkit-scrollbar-thumb:hover {
            background: rgba(61, 42, 143, 0.8);
        }

        .history-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }

        .history-date {
            color: #aaa;
        }

        .history-value {
            font-weight: 600;
        }

        .status-icon {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            margin-left: 10px;
        }

        .status-green {
            background: #00ff88;
        }

        .status-red {
            background: #ff4444;
        }

        .channels-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            width: 100%;
            max-height: 220px;
            overflow-y: auto;
            padding: 0px 0;
        }

        .channels-grid::-webkit-scrollbar {
            width: 8px;
        }

        .channels-grid::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }

        .channels-grid::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 4px;
        }

        .channels-grid::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .channel-card {
            background: linear-gradient(145deg, rgba(84, 70, 190, 0.12), rgba(84, 70, 190, 0.08));
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            position: relative;
        }

        .channel-name {
            font-size: 14px;
            font-weight: 600;
            color: #aaa;
            margin-bottom: 8px;
        }

        .channel-value {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .channel-unit {
            font-size: 14px;
            color: #aaa;
            margin-bottom: 15px;
        }

        .channel-target {
            font-size: 12px;
            color: #666;
        }

        .channel-subtitle {
            font-size: 12px;
            color: #666;
            margin-top: 5px;
        }

        .description p {
            color: #aaa;
            font-size: 1.5rem;
            line-height: 1.5;
            margin: 40px 0 30px;
            text-align: center;
        }

        .product-specs-label {
            color: #666;
            font-size: 16px;
            margin: 30px 0 20px;
            text-align: center;
        }

        .product-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .product-btn {
            background: linear-gradient(145deg, rgba(61, 42, 143, 0.12), rgba(61, 42, 143, 0.08));
            border: 2px solid rgba(61, 42, 143, 0.3);
            color: white;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(10px);
        }

        .product-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #777;
        }

        @media (max-width: 1400px) {
            .title {
                font-size: 1.9rem;
            }
            
            .description p {
                font-size: 1.45rem;
            }
        }
        
        @media (max-width: 1200px) {
            .title {
                font-size: 1.8rem;
            }
            
            .description p {
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 1024px) {
            .power-meter {
                padding: 7vh 5vw 4vh;
            }
            
            .top-section {
                flex-direction: column;
                gap: 20px;
            }
            
            .dashboard {
                width: 100%;
                text-align: center;
                margin-bottom: 20px;
            }
            
            .main-content {
                width: 100%;
                flex-direction: column;
                gap: 20px;
            }
            
            .today-left {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .today-text {
                width: 100%;
            }
            
            .circular-progress {
                width: 100%;
                justify-content: center;
            }
            
            .yesterday {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .channels-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
            
            .description p {
                font-size: 1.55rem;
            }
        }
        
        @media (max-width: 900px) {
            .description p {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 768px) {
            .power-meter {
                padding: 3vh 3vw 2vh;
            }
            
            .title {
                font-size: 1.6rem;
                text-align: center;
            }
            
            .left-section {
                padding: 15px;
            }
            
            .today-left {
                padding: 15px;
                margin-bottom: 15px;
                flex-direction: column;
                gap: 15px;
            }
            
            .today-text {
                width: 100%;
            }
            
            .today-label {
                font-size: 3.5vh;
            }
            
            .time {
                font-size: 20px;
            }
            
            .circular-progress {
                width: 100% !important;
                max-width: 200px !important;
                height: 200px !important;
                margin: 0 auto !important;
                position: relative !important;
            }
            
            .yesterday {
                padding: 15px;
                font-size: 18px;
                gap: 8px;
            }
            
            .yesterday-value {
                font-size: 2.5vh;
            }
            
            .target-section {
                padding: 15px;
                margin-bottom: 20px;
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .target-header {
                font-size: 16px;
            }
            
            .target-value {
                font-size: 26px;
            }
            
            .target-unit {
                font-size: 16px;
                margin-left: 5px;
            }
            
            .history-section {
                padding: 15px;
            }
            
            .history-header {
                font-size: 13px;
                margin-bottom: 10px;
                flex-wrap: wrap;
                gap: 5px;
            }
            
            .history-list {
                max-height: 150px;
            }
            
            .history-item {
                padding: 6px 0;
                font-size: 14px;
            }
            
            .history-date {
                font-size: 13px;
            }
            
            .history-value {
                font-size: 14px;
            }
            
            .status-icon {
                width: 14px;
                height: 14px;
                margin-left: 5px;
            }
            
            .channels-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                max-height: none;
            }
            
            .channel-card {
                padding: 15px;
                border-radius: 10px;
            }
            
            .channel-name {
                font-size: 14px;
                margin-bottom: 8px;
            }
            
            .channel-value {
                font-size: 22px;
                margin-bottom: 5px;
            }
            
            .channel-unit {
                font-size: 13px;
                margin-bottom: 12px;
            }
            
            .channel-target {
                font-size: 11px;
            }
            
            .channel-subtitle {
                font-size: 11px;
                margin-top: 4px;
            }
            
            .description p {
                font-size: 1.3rem;
                line-height: 1.6;
                margin: 25px 0 25px;
                padding: 0 15px;
            }
        }
        
        @media (max-width: 640px) {
            .title {
                font-size: 1.5rem;
            }
            
            .channels-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .description p {
                font-size: 1.25rem;
                margin: 20px 0 20px;
            }
        }
        
        @media (max-width: 480px) {
            .power-meter {
                padding: 2vh 2vw 1vh;
            }
            
            .title {
                font-size: 1.4rem;
            }
            
            .left-section {
                padding: 12px;
            }
            
            .today-left {
                padding: 12px;
                margin-bottom: 12px;
            }
            
            .today-label {
                font-size: 3vh;
            }
            
            .time {
                font-size: 18px;
            }
            
            .yesterday {
                padding: 12px;
                font-size: 16px;
            }
            
            .yesterday-value {
                font-size: 2.2vh;
            }
            
            .target-section {
                padding: 12px;
                margin-bottom: 15px;
            }
            
            .target-header {
                font-size: 15px;
            }
            
            .target-value {
                font-size: 24px;
            }
            
            .target-unit {
                font-size: 15px;
            }
            
            .history-section {
                padding: 12px;
            }
            
            .channel-card {
                padding: 12px;
            }
            
            .channel-name {
                font-size: 13px;
            }
            
            .channel-value {
                font-size: 20px;
            }
            
            .channel-unit {
                font-size: 12px;
            }
            
            .channel-target {
                font-size: 10px;
            }
            
            .channel-subtitle {
                font-size: 10px;
            }
            
            .description p {
                font-size: 1.2rem;
                margin: 15px 0 15px;
                padding: 0 10px;
            }
        }
        
        @media (max-width: 360px) {
            .title {
                font-size: 1.3rem;
            }
            
            .description p {
                font-size: 1.15rem;
            }
        }