/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor.
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Sign up Form Tootip start */
.sign-up-form-tootip {
	background-color: #262626;
	color: #FFF;
	font-family: 'Inter', sans-serif;
	padding: 0 10px;
	border-radius: 6px;
	width: auto;
}
.sign-up-form-tootip p {
	font-size: 13px;
	font-weight: 400;
}
/* Sign up Form Tootip end */

/* Bot popup modal css start */
/* Floating Button */
.floating-bot-modal-ezi .bot-toggle-button {
	width: 60px;
	height: 60px;
	background-color: #FFF;
	color: white;
	font-size: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	z-index: 10000;
}

.floating-bot-modal-ezi .bot-toggle-button img {
	height: 30px;
	width: 30px;
}

/* Modal */
.floating-bot-modal-ezi {
	position: fixed;
	top: 50%;
	right: clamp(0.8125rem, 0.0946rem + 3.5897vw, 1.25rem);;
	z-index: 999;
	transform: translateY(-50%);
}

.floating-bot-modal-ezi .career-bot {
	width: clamp(18.75rem, 0.2885rem + 92.3077vw, 30rem);
	height: 540px;
	overflow: scroll;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	z-index: 9999;
	border: 1.5px solid #e3e7ef;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: translateX(40px);
	pointer-events: none;
	transition: opacity 0.4s ease, transform 0.4s ease;
}
.floating-bot-modal-ezi .career-bot.visible {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}
.floating-bot-modal-ezi .career-bot.hidden {
	display: none;
}

/* Header */
.floating-bot-modal-ezi .career-bot-header {
	background: #f4f6fb;
	color: #1a237e;
	font-size: 18px;
	font-weight: 700;
	padding: 18px 54px 12px 24px;
	position: relative;
	border-bottom: 1px solid #e3e7ef;
	font-family: 'Inter', sans-serif;
}

.floating-bot-modal-ezi .career-bot-header .subtitle {
	display: block;
	color: #7b809a;
	font-size: 13px;
	font-weight: 400;
	margin-top: 6px;
	margin-bottom: 4px;

}

.floating-bot-modal-ezi .close-bot {
	position: absolute;
	right: 18px;
	top: 18px;
	font-size: 20px;
	font-weight: bold;
	color: #7b809a;
	cursor: pointer;
	transition: color 0.2s;

}

.floating-bot-modal-ezi .close-bot:hover {
	color: #1a237e;
}

/* Body */
.floating-bot-modal-ezi .career-bot-body {
	padding: 18px 18px 18px 18px;
	background: #f8fafd;
	overflow-y: auto;
	flex: 1 1 auto;
}

/* Accordion Title */
.floating-bot-modal-ezi .accordion {
	display: flex;
	flex-direction: column;
	gap: 14px;

}

.floating-bot-modal-ezi .accordion-item {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
	border: 1.5px solid #e3e7ef;
	overflow: hidden;
	transition: box-shadow 0.2s;

}

.floating-bot-modal-ezi .accordion-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 400;
	font-size: 15px;
	padding: 12px 14px;
	cursor: pointer;
	border: none;
	font-family: 'Inter', sans-serif;
	background: none;
	color: #282828;

}

.floating-bot-modal-ezi .accordion-title .icon {
	font-size: 15px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}

.floating-bot-modal-ezi .accordion-title .accordion-arrow {
	margin-left: auto;
	font-size: 16px;
	color: #b0b5c3;
	transition: transform 0.3s;
}

.floating-bot-modal-ezi .accordion-title.open .accordion-arrow {
	transform: rotate(180deg);
}

.floating-bot-modal-ezi .accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.6s ease, padding 0.6s ease-in-out;
	background: #f4f6fb;
	padding: 0 14px;
	border-top: 1.5px solid #e3e7ef;

}

.floating-bot-modal-ezi .accordion-item.active .accordion-content {
	max-height: 500px;
	/* Adjust as needed for your content */
	padding: 14px;
}

.floating-bot-modal-ezi .accordion-content .button-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}
@media (min-width: 768px) {
	.floating-bot-modal-ezi .accordion-content .button-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.floating-bot-modal-ezi .accordion-content .button-link {
	background: #fff;
	border: 1.5px solid #e3e7ef;
	border-radius: 8px;
	padding: 14px 16px;
	font-size: 14px;
	color: #1a237e;
	font-weight: 400;
	box-shadow: 0 1px 2px rgba(44, 62, 80, 0.03);
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border 0.2s;
	font-family: "Inter", sans-serif;
	line-height: 1.5;
	text-decoration: none;
}

.floating-bot-modal-ezi .accordion-content .button-link:hover {
	background: #4f46e5;
	color: #fff;
	border: 1px solid #4f46e5;
	border-radius: 8px;
}

/* Icon backgrounds for each section */
.floating-bot-modal-ezi .icon-interview {
	background: #e3f0ff;
	color: #1976d2;
}

.floating-bot-modal-ezi .icon-resume {
	background: #e6f4ea;
	color: #43a047;
}

.floating-bot-modal-ezi .icon-career {
	background: #f3e8ff;
	color: #8e24aa;
}

.floating-bot-modal-ezi .icon-salary {
	background: #fff4e5;
	color: #ff9800;
}

.floating-bot-modal-ezi .icon-network {
	background: #e3f7fd;
	color: #039be5;
}

.floating-bot-modal-ezi .icon-balance {
	background: #eaf6e9;
	color: #43a047;
}

/* Modal open/close animation */
.floating-bot-modal-ezi .career-bot {
	opacity: 0;
	transform: translateX(40px);
	pointer-events: none;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-bot-modal-ezi .career-bot.visible {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.floating-bot-modal-ezi .career-bot.hidden {
	display: none;
}

/* Chatbot label below icon */
.floating-bot-modal-ezi .bot-label {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #4f46e5;
	letter-spacing: 0.01em;
	text-shadow: 0 2px 8px rgba(79, 70, 229, 0.08);
	z-index: 10001;
	pointer-events: none;
	user-select: none;
}

.floating-bot-modal-ezi .floating-chat-icon {
	position: fixed;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	width: 70px;
}
@keyframes bot-bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}
@keyframes bot-label-pulse {
	0%, 100% { color: #3918CA;  }
	50% { color: #0091FF;  }
}
.floating-bot-modal-ezi .bot-toggle-button {
	animation: bot-bounce 2s ease infinite;
}
.floating-bot-modal-ezi .bot-label {
	animation: bot-label-pulse 1s ease-in-out infinite;
}

/* Bot popup modal css end */

/* Sign up form tootip start */
#signup-tooltip {
    position: static; /* stays in flow */
    background-color: #282828;
    color: #FFF;
    border-radius: 6px;
    padding: 10px 12px;
    width: fit-content;
    display: none; /* not rendered by default */
	margin-bottom: 20px;
}

#signup-tooltip.show {
    display: block; /* takes space and pushes content */
    animation: fadeSlideIn 0.5s ease forwards;
}

#signup-tooltip.hide {
    animation: fadeSlideOut 0.5s ease forwards;
}

#signup-tooltip::after {
    content: "";
	position: absolute;
    display: block;
    margin: 9px auto 0 auto; /* space above arrow */
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #282828; /* matches background */
}

/* Simple fade + slide animations */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}
#signup-tooltip span {
    font-size: 14px;
    font-weight: 300;
}
.home-page-fom-div {
	height: 0;
	margin-bottom: 20px;
}
.test-div2 {
	display: none;
}
.test-div1 {
	display: block;
}
@media (max-width: 819px) {
  .add-tooltip-padding {
    padding-bottom: 50px !important;
  }
}
@media (min-width: 820px) {
	.test-div2 {
		display: block;
		padding-bottom: 50px;
	}
	.test-div1 {
		display: none;
	}		
}


/* Blog Details Hero Section CSS Start */

/* General Page Layout */
.single {
    margin-top: 80px;
}
.single main {
    overflow: hidden;
    padding: 0 20px 40px;
    margin-top: 85px;
}
@media(min-width:1200px){
	.single {
		margin-top: 78px;
	}
	.single main{
		margin-top: 78px;
	}
}
.single main .container{
	max-width:1200px;
	 margin: 0 auto;	
}
.single .entry-content {
    margin-top: 30px;
}
.single .entry-header .entry-title {
    display: block;
}
.single .entry-featured-image,
.right-col img {
    border: 2px solid #d7dbfd;
    border-radius: 20px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Typography */
.single h1, 
.single h2, 
.single h3, 
.single h4, 
.single h5, 
.single h6 {
    font-weight: bold;
    margin: 0 0 10px;
    font-family: "Inter", sans-serif;
    color: #000;
	line-height:1.4;
}

.single h1 { 
  font-size: 1.5rem; 
  margin-bottom: 1.25rem; 
}

.single h2 { 
  font-size: 1.5rem;
  color: #0091FF; 
}

.single h3 { 
  font-size: 1.375rem; 
  color: #404372; 
  font-weight: 600; 
}

.single h4 { 
  font-size: 1.25rem; 
}

.single h5 { 
  font-size: 1.125rem;
}

.single h6 { 
  font-size: 1rem; 
}

/* Responsive Headings */
@media (min-width: 768px) { 
  .single h1 { font-size: 2rem; }
  .single h2 { font-size: 1.625rem; }
  .single h3 { font-size: 1.375rem;}
}

@media (min-width: 1200px) { 
  .single h1 { font-size: 2.5rem; }
  .single h2 { font-size: 1.75rem; }
  .single h3 { font-size: 1.5rem; }
  .single h4 { font-size: 1.375rem; }
  .single h5 { font-size: 1.25rem; }
  .single h6 { font-size: 1.0625rem; }
}

.single p,
.single .entry-content ul li, 
.single .entry-content ol li {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}
@media (min-width: 1200px) {
	.single p,
	.single .entry-content ul li, 
	.single .entry-content ol li {
		font-size:18px;
	}
}
.single .entry-content p a:hover, .single .entry-content ul li a:hover {
    color: #3918CA;
}

/* Lists */
.single .entry-content ul {
    margin: 0 0 30px;
    padding-left: 0;
    list-style: none;
}
.single .entry-content ol {
    margin: 15px 0;
}
.single ul.wp-block-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}
.single ul.wp-block-list li:before {
    content: "";
    background: url("images/tick-gray-icon.svg") no-repeat center/cover;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0;
}

/* Images */
.single .hero-section img {
    max-width: 100%;
    height: auto;
    max-height: inherit !important;
    display: block;
}

/* Blockquote */
.single blockquote {
    font-size: 18px;
    margin: 40px 0;
    border-left: 4px solid #0091ff;
    color: #555;
    background: #e7f5ff;
    padding: 15px;
}

/* Hero Section */
.single .hero-section {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    position: relative;
    padding: 50px 0;
    background-color: #0091FF;
}
.single .hero-section * {
    color: #fff;
}
.single .hero-section:before,
.single .hero-section:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: #0091FF;
}
.single .hero-section:before { left: -100%; }
.single .hero-section:after { right: -100%; }

.single .hero-section .author,
.single .hero-section .author-description p {
    font-size: 14px;
    font-style: italic;
}
.single .hero-section .author-description p {
    font-style: normal;
}
.single .hero-section .author-bio {
    padding-left: 0 !important;
    margin-top: 0 !important;
}
.single .hero-section .author-avatar {
    min-width: 50px !important;
}
.single .hero-section .author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    object-position: top center;
}
.single .hero-section .column {
    flex: 1;
}


.hero-section .categories {
    line-height: 1.5;
    position: relative;
    margin-bottom: 10px;
    display: block;
}
/* Responsive Layout */
@media (min-width: 992px) {
    .single .hero-section {
        flex-direction: row;
    }
}

/* Blog Details Hero Section CSS End */


/* Blog Details CTA CSS Start */
.cta-wrapper{
	background:#6779FF;
	border-radius: 20px;
}
@media(max-width:991px){
	.cta-wrapper{
		padding:40px 30px !important;
	}
}
@media(max-width:767px){
	
	.cta-wrapper{
		padding:30px 20px !important;
	}
}
.cta-wrapper *{
	color:#fff;
}
.cta-wrapper h2{
	line-height: 1.4;
}
.cta-default{
	background:#6779FF;
}
.cta-dark{
	background:#404372;
}
/* CTA CSS End */

/* 404 page CSS Start */
.error404 .site{
	display: flex;
  flex-direction: column;
  height: 100vh;

}
.error404 .site-main{
	  text-align: center;
    margin-top: 80px;
    max-width: 1300px;
    padding-top: 100px;
    padding-bottom: 100px;
		height:100%;
		display:flex;
		flex-direction:column;
		justify-content:center;
}
.error-404 h1{
	margin:0
}
.error-404 .page-content h2{
	font-size: 40px;
	margin-top:0;
}
.error-404 .page-content p{
	font-size: 22px;
}
.error-404 .entry-title{
	display:block;
	color:#0091FF;
	font-weight:800;
}
.error-404 .page-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.error-404 .page-content a{
	font-family: "Inter", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #0091FF;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 5px 10px 0px rgba(36.99999999999999, 48.00000000000002, 82.99999999999999, 0.2);
    padding: 15px 40px 15px 40px;
margin-top:20px;
}
.error-404 .page-content a:hover{
   background-color: #3918CA;
}
/* 404 page CSS End */

button.mfp-close {
    width: auto !important;
    background: transparent !important;
}

/* Gallery Items CSS Start */
.gallery-item{
	transition:ease 2s ease-in-out;
}
.gallery-item a{
	overflow:hidden;
	transition:ease 2s ease-in-out;
}
.gallery-item a:hover img{
	transform:scale(1.02);
}
/* Gallery Items CSS End */
