/* Floating WhatsApp Icon */
		#whatsapp-btn {
			position: fixed;
			bottom: 10px;
			right:  18px;
			width: 60px;
			height: 60px;
			/* background: #25d366; */
			border-radius: 50%;
			display: flex;
			justify-content: center;
			align-items: center;
			cursor: pointer;
			z-index: 1000;
		}

		#whatsapp-btn img {
			width: 60px;
		}

		/* Chat Box */
		#chat-box {
			position: fixed;
			bottom: 220px;
			right: 30px;
			width: 280px;
			background: #fff;
			border-radius: 15px;
			box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
			overflow: hidden;
			display: none;
			z-index: 1000;
		}

		#chat-header {
			background: #25d366;
			color: #fff;
			padding: 12px;
			font-weight: bold;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		#chat-header .close-btn {
			cursor: pointer;
			font-size: 25px;
		}

		#chat-content {
			padding: 15px;
			background: #f8fdf8;
			min-height: 80px;
		}

		.chat-bubble {
			background: #fff;
			padding: 10px 14px;
			border-radius: 12px;
			display: inline-block;
			box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		}

		#open-chat-btn {
			background: #25d366;
			margin: 15px;
			padding: 10px;
			width: calc(100% - 30px);
			display: flex;
			justify-content: center;
			align-items: center;
			border-radius: 20px;
			color: #fff;
			font-weight: bold;
			cursor: pointer;
			list-style: none;
		}

		/* =============enquiry form style============== */
		/* ENQUIRY BUTTON */
		.enquiry-btn {
			position: fixed;
			right: 0;
			top: 37%;
			background: #0a4da2;
			color: #fff;
			padding: 15px 10px;
			writing-mode: vertical-rl;
			/* text-orientation: mixed; */
			font-weight: bold;
			cursor: pointer;
			border-radius: 0px 8px 8px 0px;
			z-index: 1000;
			transform: translateY(-50%) rotate(180deg);
		}

		/* POPUP OVERLAY */
		.overlay {
			display: none;
			position: fixed;
			inset: 0;
			background: rgba(0, 0, 0, 0.5);
			justify-content: center;
			align-items: center;
			z-index: 999;
		}

		/* FORM BOX */
		.form-box {
			background: #fff;
			width: 90%;
			max-width: 420px;
			padding: 20px;
			border-radius: 10px;
			position: relative;
			animation: scaleUp 0.3s ease;
		}

		.form-box img {
			text-align: center;
			margin-bottom: 20px;
			color: #0a4da2;
		}

		/* INPUTS */
		.form-group {
			margin-bottom: 15px;
		}

		.form-group label {
			display: block;
			font-size: 14px;
			margin-bottom: 5px;
		}

		.form-group input {
			width: 100%;
			padding: 10px;
			border-radius: 6px;
			border: 1px solid #ccc;
			outline: none;
		}

		/* SUBMIT */
		.submit-btn {
			width: 100%;
			padding: 12px;
			background: #0a4da2;
			color: #fff;
			border: none;
			border-radius: 6px;
			font-size: 16px;
			cursor: pointer;
		}

		/* CLOSE BUTTON */
		.close-btn {
			position: absolute;
			top: 10px;
			right: 15px;
			font-size: 20px;
			cursor: pointer;
		}

		/* =============enquiry form style end============== */


		/* ================= social media ================= */
		
        .social-box {
            position: fixed;
            right: 15px;
            top: 65%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 9999;
        }

        .social-btn {
            width: 55px;
            height: 55px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
        }

        .social-btn i {
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #fff;
            flex-shrink: 0;
        }

        .social-btn span {
            color: #fff;
            font-size: 16px;
            white-space: nowrap;
            margin-left: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-btn:hover {
            width: 190px;
        }

        .social-btn:hover span {
            opacity: 1;
        }

        .facebook {
            background: #1877F2;
        }

        .instagram {
            background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
        }

		.linkedin {
            background: #1877F2;
        }

		/* ================= social media ================= */