* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 15px;  /* Reduced from 20px */

}



.container {

    width: 100%;

    max-width: 550px;  /* Reduced from 600px */

    margin: 0 auto;

}



.main-card {

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(20px);

    border-radius: 20px;  /* Reduced from 25px */

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

    padding: 25px 30px;  /* Reduced from 40px 35px */

    border: 1px solid rgba(255, 255, 255, 0.2);

    animation: fadeIn 0.8s ease-out;

}



@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.header-section {

    text-align: center;

    margin-bottom: 25px;  /* Reduced from 40px */

}



.logo {

    width: 90px;

    height: 90px;

    margin-bottom: 15px;  /* Reduced from 20px */

    border-radius: 50%;

    object-fit: cover;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);

}



.header-section h1 {

    color: #333;

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 5px;  /* Reduced from 8px */

    background: linear-gradient(135deg, #667eea, #764ba2);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.header-section h2 {

    color: #666;

    font-size: 18px;

    font-weight: 500;

    margin-bottom: 15px;  /* Reduced from 20px */

}



.description {

    color: #555;

    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 8px;  /* Reduced from 10px */

}



.options-section {

    margin-bottom: 25px;  /* Reduced from 35px */

}



.options-section h3 {

    color: #333;

    font-size: 20px;

    font-weight: 600;

    text-align: center;

    margin-bottom: 20px;  /* Reduced from 30px */

}



.option-buttons {

    display: flex;

    flex-direction: row;    /* Side by side by default */

    gap: 20px;

    justify-content: center;

}



.option-btn {

    display: flex;

    flex-direction: column;  /* Stack icon and content vertically */

    align-items: center;

    text-align: center;

    padding: 30px 20px;

    border: none;

    border-radius: 18px;

    background: white;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    cursor: pointer;

    transition: all 0.3s ease;

    position: relative;

    overflow: hidden;

    flex: 1;                 /* Equal width for both buttons */

    max-width: 250px;        /* Prevent buttons from getting too wide */

}



.option-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

}



.option-btn:active {

    transform: translateY(-1px);

}



.option-btn.loading {

    opacity: 0.7;

    pointer-events: none;

}



.call-btn {

    border: 2px solid #4CAF50;

}



.call-btn:hover {

    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);

    color: white;

}



.chat-btn {

    border: 2px solid #2196F3;

}



.chat-btn:hover {

    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);

    color: white;

}



.option-icon {

    width: 70px;

    height: 70px;

    margin-bottom: 15px;     /* Space below icon instead of margin-right */

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    flex-shrink: 0;

}



.call-btn .option-icon {

    background: rgba(76, 175, 80, 0.1);

    color: #4CAF50;

}



.call-btn:hover .option-icon {

    background: rgba(255, 255, 255, 0.2);

    color: white;

}



.chat-btn .option-icon {

    background: rgba(33, 150, 243, 0.1);

    color: #2196F3;

}



.chat-btn:hover .option-icon {

    background: rgba(255, 255, 255, 0.2);

    color: white;

}



.option-icon svg {

    width: 28px;

    height: 28px;

}



.option-content {

    flex: 1;

}



.option-content h4 {

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 8px;

    color: #333;

}



.option-btn:hover .option-content h4 {

    color: white;

}



.option-content p {

    font-size: 14px;

    color: #666;

    line-height: 1.5;

}



.option-btn:hover .option-content p {

    color: rgba(255, 255, 255, 0.9);

}



.info-section {

    text-align: center;

    padding-top: 15px;  /* Reduced from 20px */

    border-top: 1px solid rgba(0, 0, 0, 0.1);

}



.info-text {

    font-size: 12px;  /* Reduced from 13px */

    color: #777;

    line-height: 1.4;  /* Reduced from 1.5 */

}



.info-text strong {

    color: #555;

}



/* Responsive Design */

@media (max-width: 768px) {

    .container {

        padding: 15px;

    }

    

    .main-card {

        padding: 30px 25px;

    }

    

    .header-section h1 {

        font-size: 28px;

    }

    

    .header-section h2 {

        font-size: 16px;

    }

    

    .logo {

        width: 70px;

        height: 70px;

    }

    

    .option-btn {

        padding: 20px 25px;

    }

    

    .option-icon {

        width: 50px;

        height: 50px;

        margin-right: 20px;

    }

    

    .option-icon svg {

        width: 24px;

        height: 24px;

    }

    

    .option-content h4 {

        font-size: 18px;

    }

    

    .option-content p {

        font-size: 13px;

    }

}



@media (max-width: 480px) {

    .main-card {

        padding: 25px 20px;

    }

    

    .option-buttons {

        gap: 15px;

    }

    

    .option-btn {

        padding: 18px 20px;

    }

}

/*
		Styles will apply when device(view port) width is >768px
	*/
	@media (min-device-width : 768px) {
		.desktop_bubble_chat {
			height: 410px;
			max-height: 410px;
			width: 312px;
			position: fixed;
			bottom: 1em;
			right: 1em;
			border: none;
			outline: none;
			box-sizing: border-box;
			z-index: 999;
			overflow: hidden;
			padding: 0;
		}
	}

	/*
		Styles will apply when device(view port) width is <=768px
	*/
	@media (max-device-width: 768px) {
		.desktop_bubble_chat {
			height: 100%;
			max-height: 100%;
			width: 100%;
			position: fixed;
			bottom: 0;
			right: 0;
			border: none;
			outline: none;
			box-sizing: border-box;
			z-index: 999;
			overflow: hidden;
			padding: 0;
		}
	}

	/*
		Styles will apply when available width on window resize is >768px
	*/
	@media (min-width : 768px) {
		.desktop_bubble_chat {
			height: 410px;
			max-height: 410px;
			width: 312px;
			position: fixed;
			bottom: 1em;
			right: 1em;
			border: none;
			outline: none;
			box-sizing: border-box;
			z-index: 999;
			overflow: hidden;
			padding: 0;
		}
	}

	/*
		Styles will apply when available width on window resize is <=768px
	*/
	@media (max-width: 768px) {
		.desktop_bubble_chat {
			height: 100%;
			max-height: 100%;
			width: 100%;
			position: fixed;
			bottom: 0;
			right: 0;
			border: none;
			outline: none;
			box-sizing: border-box;
			z-index: 999;
			overflow: hidden;
			padding: 0;
		}
	}

	/*
		Styles will apply when isMobile function returns true
	*/
	.mobile_bubble_chat {
		height: 100%;
		max-height: 100%;
		width: 100%;
		position: fixed;
		bottom: 0;
		right: 0;
		border: none;
		outline: none;
		box-sizing: border-box;
		z-index: 999;
		overflow: hidden;
		padding: 0;
	}

	/*
		Style will apply when chat is minimized
	*/
	.minimized_chat {
		height: 56px;
	}


    

 

               

 



    