			/* Premium Advantages Section */
			.tech-advantages {
				background-color: #f4f7fa;
				padding: 50px 20px;
				font-family: 'Poppins', sans-serif;
			}

			.tech-container {
				max-width: 1250px;
				margin: 0 auto;
			}

			.tech-header {
				text-align: center;
				margin-bottom: 40px;
			}

			.tech-header h2 {
				font-size: 36px;
				color: #777;
				margin-bottom: 10px;
			}

			.tech-header h2 span {
				color: #1a456e;
				font-weight: 800;
			}

			.tech-header p {
				font-size: 18px;
				color: #555;
			}

			/* Modern Card UI */
			.tech-grid {
				display: flex;
				gap: 20px;
				flex-wrap: wrap;
				justify-content: center;
			}

			.tech-card {
				background: #ffffff;
				border: 1px solid #e1e8ed;
				border-radius: 20px;
				padding: 35px 25px;
				flex: 1;
				min-width: 280px;
				max-width: 300px;
				text-align: center;
				box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
				transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
			}

			/* Hover Effect from Image Reference */
			.tech-card:hover {
				transform: translateY(-12px);
				box-shadow: 0 20px 50px rgba(26, 69, 110, 0.15);
				border-color: #1a456e;
			}

			.tech-icon-wrapper {
				width: 80px;
				height: 80px;
				background: #fff;
				border-radius: 50%;
				margin: 0 auto 25px;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 35px;
				box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
				border: 1px solid #f0f0f0;
			}

			.tech-card h3 {
				font-size: 22px;
				color: #1a456e;
				margin-bottom: 15px;
				font-weight: 700;
				line-height: 1.3;
			}

			.tech-card p {
				font-size: 15px;
				color: #666;
				line-height: 1.6;
				margin-bottom: 20px;
			}

			/* Bullet List inside Card */
			.tech-list {
				list-style: none;
				padding: 0;
				text-align: left;
				margin-top: 15px;
				border-top: 1px solid #f0f0f0;
				padding-top: 15px;
			}

			.tech-list li {
				font-size: 14px;
				color: #444;
				margin-bottom: 8px;
				padding-left: 20px;
				position: relative;
			}

			.tech-list li::before {
				content: '●';
				position: absolute;
				left: 0;
				color: #1a456e;
				font-size: 10px;
				top: 2px;
			}

			/* Responsive */
			@media (max-width: 768px) {
				.tech-card {
					max-width: 100%;
				}
			}
	