@font-face {
  font-family: 'Clarika Geometric';
  src: url('../fonts/ClarikaGeometricRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Clarika Geometric';
  src: url('../fonts/ClarikaGeometricMedium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Clarika Geometric';
  src: url('../fonts/ClarikaGeometricDemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

.homepage-bg {
	height: 186px;
	background: linear-gradient(0deg, #3067DB -14.83%, #43BFEF 185.34%);
	position: relative;
	z-index: 1;
	margin-top: .5rem !important;
}

.main-bg {
    background: #EBF8FF;
     z-index: 2
}

.home-page-header {
	color: #000;
	font-family: "Clarika Geometric";
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 36px */
	letter-spacing: 0.23px;
}

.dropdown-container {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 100%;
	z-index: 1050;
	border-radius: 0 0 18px 18px;
	background: #EBF8FF;
	box-shadow: 0 0 6px 2px rgba(101, 101, 101, 0.25);
	min-height: 800px !important;  /* or any value that fits your design */
	overflow-y: auto;   /* allows scrolling if content exceeds max height */
}


.dropdown-content.d-none {
  display: none !important;
}

.para-header {
	color: #525252;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
}

.para-text {
	font-size: 16px;
	font-weight: 400  !important;
}

.para-company-info {
	font-weight: 700;
	line-height: 200%;
	letter-spacing: 0.23px;
}

.contact-block-text {
	color: #707070;
	font-family: "Clarika Geometric";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: 0.23px;
}

.contact-block-icon {
	width: 20px;
	height: 20px;
	filter: drop-shadow(0px 4px 4px rgba(204, 204, 204, 0.25));
}

.btn-primary {
	color: var(--Color-Neutrals-white, #FFF);
	font-family: "Clarika Geometric";
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 125%;
	letter-spacing: 0.23px;
	border-radius: 9px;
	background: #3067DB ! Important;
	border: none;
	outline: none;
	display: inline-flex;
	padding: 7px var(--Spacing-spacing-sm, 16px);
	justify-content: center;
	align-items: center;
	gap: var(--Spacing-spacing-2xs, 8px);
	border-radius: var(--Radius-radius-md, 24px);
	background: var(--Interactive-Primary-Default, #3067DB);
	min-width : 111px;
	height : 45px;
}

.btn-primary:hover {
	border-radius: var(--Radius-radius-md, 24px);
	background: var(--Interactive-Primary-Hover, #1F45B2) !important;
}

.btn-primary:focus, .btn-primary:active {
	outline: none;
	color: var(--Content-Primary-Inverse, #FFF);
	border-radius: var(--Radius-radius-md, 24px);
	background: var(--Interactive-Primary-Pressed, #102789) !important;
}

.btn-primary:disabled {
	color: var(--Inactive-Content, #A5A5A5) !important;
	background: #FAFAFA !important;
}

.homepage-text-section {
	color: #3067DB;
	font-family: "Clarika Geometric";
	font-size: 60px;
	font-style: normal;
	font-weight: 600;
	line-height: 132%; /* 54px */
	letter-spacing: 0.23px;
}

.carousel-block {
	width: 661px;
	height: 429px;
	border-radius: 5px;
	margin-left: auto;
	/* margin-top	: 60px; */
	position: relative;
	border-radius: 5px;
	background: url(<path-to-image>) lightgray 50% / cover no-repeat;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
	margin-top : -130px;
	z-index : 999;
}

.carousel-image-block {
	width: 100%;
	height: 100%;
	aspect-ratio: 661/429;
	border-radius: 5px;
	background: url(<path-to-image>) lightgray 50%/cover no-repeat;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.carousel-inner {
	height: 100%;
}

.landing-page-desc-block {
	width: 661px;
	margin-left: auto;
	position: relative;
}

.landing-page-desc {
	color: #000;
	font-family: "Clarika Geometric";
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 30px */
	letter-spacing: 0.23px;
	text-align: justify;
}

.icon-button {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-button:disabled {
  opacity: 0.5;
  pointer-events: none; 
}

.arrow-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.carousel-indicators-text {
  display: flex;
  justify-content: center;
  list-style: none;
  padding-left: 0;
}

.carousel-indicators-text li {
  min-width: 156px;
  height: 4px;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicators-text li.active {
	background-color: #3067DB;
}

.header-gap {
	gap: 1rem;
}

.full-height{
	height:100vh;
}
.dropdown-toggle {
	outline: none !important;
	position: relative;
	font-family: "Clarika Geometric", sans-serif !important;
	font-size: 18px;
	font-style: normal !important;
	font-weight: 600 !important;
	line-height: 150% !important; /* 30px */
	letter-spacing: 0.23px !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding-right: 26px;
}

.dropdown-toggle::after {
	background-image: url(/dayforce/images/menu_drop_down.svg);
	background-size: 12px 20px;
	display: inline-block;
	width: 12px;
	height: 20px;
	content: "";
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	line-height: 0;
	transition: transform 0.35s ease;
	border: none !important;
	outline: none !important;
}

.dropdown-toggle[aria-expanded="true"]::after {
	transform: translateY(-50%) rotate(180deg);
}

#home_layout.d-none {
  display: none;
}


#home_layout {
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none; /* Prevent clicks when invisible */
}

#home_layout.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown_text_active {
    text-decoration: underline !important;
    text-decoration-color: #3067DB !important; /* underline color */
    text-underline-offset: 18px !important;
    text-decoration-thickness: 3px !important;
}

.dropdown-menu {
  width: 100% !important;
  max-width: none;
  border-radius: 0 0 0.9rem 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ess-content {
	overflow-y: auto;
	padding: 1.5rem;
}

.ess-content h5 {
	font-weight: bold;
	margin-top: 1rem;
	margin-bottom: 0.75rem;
}

.ess-content ul {
	margin-bottom: 1.5rem;
	margin-top: 2em;
	padding-left: 1.25rem;
	list-style-type: disc;
}

.ess-content ul ul {
	margin-top: 0.5rem;
	padding-left: 1.25rem;
	list-style-type: circle;
}

.ess-content li {
	margin-bottom: 0.5rem;
}

.landing-page-top-margin{
	    margin-top: 1rem !important;
}
.landing-page-nav-margin{
	    margin-top: 1.5rem !important;
}
.text-margin-top{
	margin-top: 3rem !important;
}

.why-text{
	line-height: 150%; /* 30px */
	font-size: 18px;
}

.section-divider {
  width: 100%;
  height: 0.5px;
  background-color: rgba(112, 112, 112, 0.5); /* 0.0 = fully transparent, 1.0 = fully opaque */
  margin: 2rem 0;
  border: none;
}

.dropdown-image-block {
	width: 525px;
	flex-shrink: 0;
	aspect-ratio: 525/341;
}

.dropdown-text-section{
	color: #3067DB;
	text-align: center;
	font-family: Clarika Geometric;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	display: flex;
	flex-direction: column;
	align-items: center; /* Center align horizontally */
	text-align: center;  /* Optional: Center text too */
	gap: 0.5rem;    
}

.content-spacing {
  gap: 2rem; /* space between text and image */
}

/* this for how we help navbar */
/* Outer pill capsule */
/* This centers the fit-content wrapper */
.how-tabs-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Capsule that fits text width */
.how-tabs-wrapper {
  display: inline-flex;
  background-color: #fff;
  border: 1.5px solid #ccc;
  border-radius: 999px;
  width: fit-content;
}

/* Tabs inside the shared capsule */
.how-tabs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}


.tab-btn {
  font-family: "Clarika Geometric", sans-serif;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background-color: transparent;
  border: 2px solid transparent;
  color: #888;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}


.tab-btn.active {
	background-color: #EBF8FF;
	border-color: #3067DB;
	color: var(--Content-Status-Informative-LowEmp, #161F5A);
}

.tab-btn:hover {
  color: #555;
}

.how-tab-content {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.employee-content {
  gap: 1rem;
  margin-top: 1rem;
}

.center-wrapper {
  display: flex;
  justify-content: center;   
  align-items: center;       
}

.employee-text {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.employee-text li {
  font-weight: 600 !important;
  color: #525252 !important;
  margin-bottom: 2rem;      
  font-size: 20px;          
}

.employee-image {
  width: 100%;
  max-width: 576.785px;
  height: auto;              
  flex-shrink: 0;
  object-fit: contain;     
  border-radius: 8px;
}

.image-shadow {
	box-shadow: 0px 8px 12px -4px rgba(0, 0, 0, 0.25);
}

.card-stack {
  display: inline-block;
  position: relative;
  width: 550px;
  height: 357px;
}

.card-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.54; 
  object-fit: cover;
  position: absolute;
  transition: transform 0.3s ease;
}

.bottom-card {
  top: 45px;  
  left: 160px; 
  z-index: 2;
}

.top-card {
  top: 0;
  left: 0;
  z-index: 2;
}


/* html, body {
  margin: 0;
  padding: 0;
  height: 100%;
} */

#who {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0; /* Ensure no inner padding */
  margin: 0;
}

.who-text{
  line-height: 200%;
  font-size: 18px;
  letter-spacing: 0.23px;
}

.who-top {
  flex: 1;
  background-color: #EBF8FF;
  padding: 0; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px; 
  box-sizing: border-box;
}


.who-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* bottom half only */
  background: white;
}

/* .who-top h5,
.who-bottom h5 {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 600;
} 

 */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo-grid img,
.logo-grid .placeholder {
  width: 100%;
  height: 100px;
  object-fit: contain;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-grid .placeholder {
  background-color: #efefef;
  border: 2px dashed #ccc;
}

.logo-grid img[alt="Walmart"],
.logo-grid img[alt="Four Seasons Hotel"],
.logo-grid img[alt="Adobe"],
.logo-grid img[alt="Google India"],
.logo-grid img[alt="Oracle"],
.logo-grid img[alt="Fortis Healthcare"],
.logo-grid img[alt="Northern Trust"]  {
  padding: 0rem; /* Or 0.5rem if needed */
  transform-origin: center;
}

@media screen and (max-width: 1920px) {
	.carousel-block {
		width: 900px;
		height: 540px;
	}
	.landing-page-desc-block {
		width: 900px;
	}
	.header-gap {
		gap: 6rem;
	}
	.dropdown-toggle{
		font-size: 19px;
	}
    .employee-image {
        max-width: 800px;
    }
	.dropdown-image-block {
	    width: 650px;
	}
	.para-text {
	    font-size: 18px;
	}
}

@media screen and (max-width: 1728px) {
	.carousel-block {
		width: 766px;
		height: 491px;
	}
	.landing-page-desc-block {
		width: 766px;
	}
	.header-gap {
		gap: 5rem;
	}
    .employee-image {
        max-width: 710px;
    }
	.home-page-header{
		font-size: 22px;
	}
	.para-header{
		font-size: 18px;	
	} 
	.para-text{
		font-size: 18px;	
	}
}
/* @media screen and (max-width: 1512px) { */
@media screen and (min-width: 1512px) and (max-width: 1599px) {
	.carousel-block {
		width: 675px;
		height: 409px;
	}
	.landing-page-desc-block {
		width: 675px;
	}
	.header-gap {
		gap: 4rem;
	}
	.homepage-text-section {
		font-size: 54px;
	}
	.home-page-header{
		font-size: 20px;
	}
	.para-header{
		font-size: 16px;	
	} 
	.para-text{
		font-size: 16px;	
	}
	.employee-image {
        max-width: 620px;
    }
	.dropdown-toggle {
		font-size: 15px !important;
	}
	.dropdown-image-block {
        width: 540px;
	}
}

@media screen and (max-width: 1440px) {
	.carousel-block {
		width: 670px;
		height: 419px;
	}
	.landing-page-desc-block {
		width: 670px;
	}
	.header-gap {
		gap: 3rem;
	}
	.homepage-text-section {
		font-size: 54px;
	}
	.home-page-header{
		font-size: 16px;
	}
	.para-header{
		font-size: 14px;	
	} 
	.para-text{
		font-size: 14px;	
	}
	.employee-image{
		max-width: 576.785px;
	}
	.dropdown-toggle {
		font-size: 14px !important;
	}
	.dropdown-image-block {
	    width: 465px;
	}
}

@media screen and (max-width: 1280px) {
	.carousel-block {
		width: 509px;
		height: 309px;
	}
	.landing-page-desc-block {
		width: 509px;
	}
	.landing-page-desc {
		font-size: 14px;
	}
	.header-gap {
		gap: 2.5rem;
	}
	.homepage-text-section {
		font-size: 48px;
	}
	.landing-page-top-margin {
		margin-top: 0.5rem !important;
	}
	.contact-block-icon {
		width: 16px;
		height: 16px;
	}
	.contact-block-text {
		font-size: 13px;
	}
	.landing-page-nav-margin {
		margin-top: 0.75rem !important;
	}
	.landing-page-logo {
		height: 22px;
	}
	.dropdown-toggle {
		font-size: 13px !important;
	}
	.btn-primary {
		font-size: 12px;
		min-width: 81px;
		height: 34px;
	}
	.homepage-bg {
		margin-top: .5rem !important;
		height: 157px;
	}
	.text-margin-top {
		margin-top: 1rem !important;
	}
	.mt-5 {
		margin-top: 2.5rem !important;
	}
	.mt-3 {
		margin-top: 0rem !important;
	}
	.dropdown-image-block {
	    width: 465px;
	}
	.employee-text li {
    	font-size: 18px;
	}
	.home-page-header{
		font-size: 16px;
	}
	.para-header{
		font-size: 14px;	
	} 
	.para-text{
		font-size: 14px;	
	}
    .employee-image {
        max-width: 527.785px;
    }
}