/* Importing Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.custom-chatbot #chatbot-toggler {
  position: fixed;
  bottom: 30px;
  right: 35px;
  border: none;
  height: 60px;
  width: 60px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #009ef8;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: 9999;
}
body.show-chatbot .custom-chatbot #chatbot-toggler {
  transform: rotate(90deg);
}
.custom-chatbot #chatbot-toggler span {
  color: #fff;
  position: absolute;
  font-size: 30px;
}
.custom-chatbot #chatbot-toggler span:last-child,
body.show-chatbot .custom-chatbot  #chatbot-toggler span:first-child {
  opacity: 0;
}
body.show-chatbot .custom-chatbot  #chatbot-toggler span:last-child {
  opacity: 1;
}
.custom-chatbot .chatbot-popup {
  position: fixed;
  right: 35px;
  bottom: 90px;
  width: 420px;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.2);
  transform-origin: bottom right;
  box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
    0 32px 64px -48px rgba(0, 0, 0, 0.5);
  transition: all 0.1s ease;
  z-index:9999;
}
body.show-chatbot .custom-chatbot  .chatbot-popup {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.custom-chatbot .chat-header {
  display: flex;
  align-items: center;
  padding: 15px 22px;
  background: #009ef8;
  justify-content: space-between;
}
.custom-chatbot .chat-header .header-info {
  display: flex;
  gap: 10px;
  align-items: center;
}
.custom-chatbot .header-info .chatbot-logo {
  width: 35px;
  height: 35px;
  
  fill: #000;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
}
.custom-chatbot .header-info .logo-text {
  color: #fff;
  font-weight: 600;
  font-size: 1.31rem;
  letter-spacing: 0.02rem;
  margin-bottom: 0px;
}
.custom-chatbot .chat-header #close-chatbot {
  border: none;
  color: #fff;
  height: 40px;
  width: 40px;
  font-size: 1.9rem;
  margin-right: -10px;
  padding-top: 2px;
  cursor: pointer;
  border-radius: 50%;
  background: none;
  transition: 0.2s ease;
}
.custom-chatbot .chat-header #close-chatbot:hover {
  background: #fff !important;
  color: #000 !important;
}
.custom-chatbot .chat-body {
  padding: 25px 22px;
  gap: 20px;
  display: flex;
  height: 370px;
  overflow-y: auto;
  margin-bottom: 82px;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: #ccccf5 transparent;
}
.custom-chatbot .chat-body,
.custom-chatbot .chat-form .message-input:hover {
  scrollbar-color: #ccccf5 transparent;
}
.custom-chatbot .chat-body .message {
  display: flex;
  gap: 11px;
  align-items: center;
}
.custom-chatbot .chat-body .message .bot-avatar {
  width: 35px;
  height: 35px;
  /*padding: 6px;*/
  fill: #fff;
  flex-shrink: 0;
  align-self: flex-start;
  border-radius: 50%;
}
.custom-chatbot .chat-body .message .message-text {
  /*padding: 12px 16px;*/
  max-width: 90%;
  font-size: 0.95rem;
}
.custom-chatbot .chat-body .message .message-text .question_box{background: #ededed;border-radius: 13px 13px 13px 3px;padding: 12px 16px;;}
.custom-chatbot .chat-body .bot-message.thinking .message-text {
  padding: 2px 16px;
}
.custom-chatbot .chat-body .bot-message .message-text {
  background: #F2F2FF;
  background:#ededed;
  border-radius: 13px 13px 13px 3px;
  background:none !important;
}
.custom-chatbot .chat-body .user-message {
  flex-direction: column;
  align-items: flex-end;
}
.custom-chatbot .chat-body .user-message .message-text {
  color: #000;
  background: #0200fb21;
  border-radius: 13px 13px 3px 13px;
  padding: 12px 16px;
  min-width: 150px;
}
.custom-chatbot .chat-body .user-message .attachment {
  width: 50%;
  margin-top: -7px;
  border-radius: 13px 3px 13px 13px;
}
.custom-chatbot .chat-body .bot-message .thinking-indicator {
  display: flex;
  gap: 4px;
  padding-block: 15px;
}
.custom-chatbot .chat-body .bot-message .thinking-indicator .dot {
  height: 7px;
  width: 7px;
  opacity: 0.7;
  border-radius: 50%;
  background: #6F6BC2;
  animation: dotPulse 1.8s ease-in-out infinite;
}
.custom-chatbot .chat-body .bot-message .thinking-indicator .dot:nth-child(1) {
  animation-delay: 0.2s;
}
.custom-chatbot .chat-body .bot-message .thinking-indicator .dot:nth-child(2) {
  animation-delay: 0.3s;
}
.custom-chatbot .chat-body .bot-message .thinking-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dotPulse {
  0%,
  44% {
    transform: translateY(0);
  }
  28% {
    opacity: 0.4;
    transform: translateY(-4px);
  }
  44% {
    opacity: 0.2;
  }
}
.custom-chatbot .chat-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 15px 22px 20px;
}
.custom-chatbot .chat-footer .chat-form {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  border-radius: 32px;
  outline: 1px solid #CCCCE5;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
  transition: 0s ease, border-radius 0s;
}
.custom-chatbot .chat-form:focus-within {
  outline: 2px solid #ededed;
}
.custom-chatbot .chat-form .message-input {
  width: 100%;
  height: 47px;
  outline: none;
  resize: none;
  border: none;
  max-height: 180px;
  scrollbar-width: thin;
  border-radius: inherit;
  font-size: 0.95rem;
  padding: 14px 0 12px 18px;
  scrollbar-color: transparent transparent;
}
.custom-chatbot .chat-form .chat-controls {
  gap: 3px;
  height: 47px;
  display: flex;
  padding-right: 6px;
  align-items: center;
  align-self: flex-end;
}
.custom-chatbot .chat-form .chat-controls button {
  height: 35px;
  width: 35px;
  border: none;
  cursor: pointer;
  color: #706DB0;
  border-radius: 50%;
  font-size: 1.15rem;
  background: none;
  transition: 0.2s ease;
}
.custom-chatbot .chat-form .chat-controls button:hover,
body.show-emoji-picker .custom-chatbot  .chat-controls #emoji-picker {
  color: #3d39ac;
  background: #f1f1ff;
}
.custom-chatbot .chat-form .chat-controls #send-message {
  color: #000;
  display: none;
  background: #ededed;
}
.custom-chatbot .chat-form .chat-controls #send-message:hover {
  background: #3d39ac;
}
.custom-chatbot .chat-form .message-input:valid~.chat-controls #send-message {
  display: block;
}
.custom-chatbot .chat-form .file-upload-wrapper {
  position: relative;
  height: 35px;
  width: 35px;
}
.custom-chatbot .chat-form .file-upload-wrapper :where(button, img) {
  position: absolute;
}
.custom-chatbot .chat-form .file-upload-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.custom-chatbot .chat-form .file-upload-wrapper #file-cancel {
  color: #ff0000;
  background: #fff;
}
.custom-chatbot .chat-form .file-upload-wrapper :where(img, #file-cancel),
.custom-chatbot .chat-form .file-upload-wrapper.file-uploaded #file-upload {
  display: none;
}
.custom-chatbot .chat-form .file-upload-wrapper.file-uploaded img,
.custom-chatbot .chat-form .file-upload-wrapper.file-uploaded:hover #file-cancel {
  display: block;
}
em-emoji-picker {
  position: absolute;
  left: 50%;
  top: -337px;
  width: 100%;
  max-width: 350px;
  visibility: hidden;
  max-height: 330px;
  transform: translateX(-50%);
}
body.show-emoji-picker em-emoji-picker {
  visibility: visible;
}

.custom-chatbot .chat-form .chat-controls #file-input{display:none}

.custom-chatbot .chat-body a{/*color:#ff0500;font-weight: 500;*/}
.custom-chatbot .date-heading{text-align: center;font-weight: 300;font-size: 13px;color: #333333d6;}
.custom-chatbot .message  .message-time{font-size: 11px;color: #33333391;}
.custom-chatbot .message  .message-time{margin-top: -7px;}
.custom-chatbot .bot-message  .message-time{margin-top: 5px;}
.custom-chatbot .message .bot-message-text .message-time{margin-top: 5px;}
.custom-chatbot .message .options{display: flow-root;margin-top: 10px;}
.custom-chatbot .message .options .single-option.radio-btn,.custom-chatbot .message .options .single-option.checkbox-btn{border-radius: 5px;border: 1px solid #0200fb;background: #0200fb;margin-bottom: 5px;}
.custom-chatbot .message .options .single-option a{color:#fff; text-decoration:none;padding: 5px 10px;width: 100%;display: flex;}
.custom-chatbot .message .options.type-checkbox{display: flow-root;}
.custom-chatbot .message .options.option-step-1 .single-option{margin-bottom: 5px;width: 48%;float: left;margin-right: 2%;}
.custom-chatbot .options .yes_no_btn{width: 48%;float: left;margin-right: 2%;text-align: center;}
.custom-chatbot .options .yes_no_btn a{justify-content: center;}


.pre-loader-box{height: 90vh; /* Full viewport height */display: flex;align-items: center;justify-content: center;background: #ededed0d;}
.pre-loader-box .animation-img{justify-content: center;display: flex;}
.pre-loader-box .animation-img img{width:90%;}
.pre-loader-box .heading{text-transform: uppercase;text-align: center;}
.pre-loader-box .heading .subheading-1{font-weight: normal;font-size: 28px;}
.pre-loader-box .heading .subheading-2{font-weight:bold}
.pre-loader-box .heading .subheading-2 span{color:#800000 !important}
.pre-loader-box .heading .subheading-4{color:#654321;font-weight:600;font-size: 28px;}
.pre-loader-box .heading h2{font-size: 35px;}
.pre-loader-box .heading{/*margin-top: 30px;*/}
.pre-loader-box .logo-icon-img{margin-top: -80px;}
.pre-loader-box .logo-icon-img img{width: 80px;margin-left: 50px;}

.pre-loader-box .typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
  border-right: 2px solid black;
  animation:
    typing 3s steps(10, end) forwards,
    blink-caret 0.75s step-end infinite;
  animation-delay: 0s, 0s;
}

/* Typing animation */
@keyframes typing {
  from { width: 0 }
  to { width: 10ch }
}

/* Cursor blink animation */
@keyframes blink-caret {
  0%, 100% { border-color: transparent; }
  50% { border-color: black; }
}

/* Remove border after typing is complete */
.pre-loader-box .typing-text.done {
  border-right: none !important;
  animation: none !important;
}

.pre-loader-box .footer{position: fixed;bottom: 0;left: 0;width: 100%;text-align: center;padding: 10px 0;z-index: 999;display: flex;justify-content: center;}
.pre-loader-box .footer .copyright{margin-bottom: 0px;font-size: 12px;}

.message-text .question_box .question{margin-bottom:0px}
.message-text .question_box .question.extra_text{font-weight: 600;}
.custom-chatbot .message .options .single-option.checkbox-btn label{padding: 5px 10px;color: #fff;}
.custom-chatbot .message .options form .submit-btn{margin: 10px 0px;}
.custom-chatbot .message .options form .submit-btn a{background: #009ef8;padding: 5px 10px;border: none;color: #fff;border-radius: 10px;width: 100px;margin: 10px 0px;text-transform: uppercase;text-decoration: none;display: inline-block;text-align: center;}
/* Hide the default checkbox */
.custom-checkbox input[type="checkbox"] {
    display: none;
}

/* Style the custom checkmark */
.custom-checkbox .checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-radius: 4px;
    margin-right: 10px;
    vertical-align: middle;
    background-color: transparent;
    box-sizing: border-box;
}

/* Style for checked state */
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: white;
    position: relative;
}

/* Optional checkmark icon (tick) */
.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-chatbot .message strong{font-weight:600 !important}

/*.col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.animation-img {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animation-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.heading {
  height: 40vh; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}*/

/*.pre-loader-box {
    position: relative;
    height: 100vh; 
    overflow: hidden;
  }

  .pre-loader-box video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    
  }*/
 
.pre-loader-box {
  position: relative;
  height: 100vh;
  /*overflow: hidden;*/
}

.pre-loader-box video {
  position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    max-width: 100% !important;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.mobile-video{display:none !important}
.custom-chatbot .chat-body{background-position: center center !important;background-size: contain !important;
  background-repeat: no-repeat !important;}


/**** new css ***/
 .video-wrapper {
	position: relative;
	width: 100%;
	max-width: 100%;
}

.video-wrapper video {
	width: 100%;
	height: auto;
	display: block;
}

/*.video-overlay-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 12px 20px;
	border: none;
	font-size: 16px;
	cursor: pointer;
	border-radius: 8px;
	z-index: 10;
}*/

.video-overlay-button {
  position: absolute;
  bottom: 20px; /* Distance from bottom */
  left: 20px;   /* Distance from left */
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 10;
  transform: none; /* Remove center alignment */
}


.mobile-video, .desktop-video {
	display: none;
}


.custom-chatbot .chat-header,.custom-chatbot #chatbot-toggler,.custom-chatbot .message .options form .submit-btn a{background: #5c2e91;}
.custom-chatbot .chat-body .message.bot-message .message-text .question_box{background: #5c2e91;color: #fff;}
.custom-chatbot .message .options .single-option.radio-btn, .custom-chatbot .message .options .single-option.checkbox-btn{border: 1px solid #010064;background: #34334d;}
.custom-chatbot .chat-body .user-message .message-text{background: #f8841a;color: #fff;}


.custom-chatbot .chat-body .message .bot-avatar{width: 40px !important;height: 60px !important;border-radius: 0px !important;}
.custom-chatbot .header-info .chatbot-logo{width: 100%;border-radius: 0;height: 50px;background: transparent;max-width: 80px;}
.custom-chatbot .chat-header{padding: 5px 22px;/*background: #edededbf;*/background:#5c2e913b}
.custom-chatbot .chat-header #close-chatbot{color: #000;}
.custom-chatbot .header-info .logo-text{font-size: 17px !important;color: #000 !important;text-align: center !important;}

@media (max-width: 767px) {
	.custom-chatbot .header-info .chatbot-logo{max-width: 75px;height:auto !important}
	.custom-chatbot .header-info .logo-text{font-size: 15px !important;}
	
}
/* Responsive media query for mobile screens */
@media (max-width: 520px) {
  .custom-chatbot #chatbot-toggler {
    right: 20px;
    bottom: 20px;
  }
 .custom-chatbot  .chatbot-popup {
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0;
    width: 100%;
  }
 .custom-chatbot  .chatbot-popup .chat-header {
    padding: 12px 8px;
  }
  .custom-chatbot .chat-body {
    height: calc(90% - 55px);
    padding: 25px 15px;
  }
 .custom-chatbot  .chat-footer {
    padding: 10px 15px 15px;
  }
  .custom-chatbot .chat-form .file-upload-wrapper.file-uploaded #file-cancel {
    opacity: 0;
  }
  
.pre-loader-box {
  overflow: hidden;
}
.pre-loader-box video {
	position: absolute;
	width: 100%;
    height: 100%;
	
	/*top: 50%;
	left: 51%;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
	transform: translate(-50%, -50%);
	object-fit: fill;*/

}
.desktop-video{display:none !important}
.mobile-video{display:block !important}

.video-overlay-button {
  bottom: 70px; /* Distance from bottom */
 
}

}