@font-face {
    font-family: 'suisse_intlbook';
    src: url('/suisseintl-book_1-webfont.woff2') format('woff2'),
         url('/suisseintl-book_1-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'suisse_intlbook';
	background-color: #ffffff;
	overflow-x: hidden;
}

/*Header*/
:root {
	--cheader-primary: #1E556F;
	--cheader-secondary: #1F394F;
	--cheader-accent: #E4F7FE;
	--cheader-text-gray: #707C8C;
	--cheader-dark-bg: #1A2F3A;
}
/* Header Styles */
.cheader-navbar {
	background-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding:0px 0 30px;
}

.cheader-logo {
	height: 100px;
	width: auto;
	margin-left: -24px;
}

.cheader-logo-text {
	color: white;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.5px;
}

.cheader-nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cheader-nav-links li{
line-height: normal;
padding-top: 2px;
height: 30px;
}


.cheader-nav-links a {
	color: white;
	text-decoration: none;
	font-size: 16px;
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 4px 0;
	line-height: normal;
}

.cheader-nav-links a span {
	display: inline-block;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cheader-nav-links a::before {
	content: attr(data-text);
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	transform: translateY(0);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cheader-nav-links a:hover span {
	transform: translateY(-120%);
}

.cheader-nav-links a:hover::before {
	transform: translateY(-120%);
}

.cheader-nav-links .dropdown-toggle::after{
	content: none;
}
.mm-ob .dropdown-toggle::after{
	content: none;
}
.cheader-nav-links .btn.show{
	border-color: transparent !important;
}

.lang-drop-box{
	top: 10px !important;
	padding: 10px;
	background-color: #ffffff22;
	border: 1px solid #E4F7FE;
}

.lang-drop-box .dropdown-item{
	font-size: 14px;
	font-weight: 500;
	font-family: 'suisse_intlbook';
    color: #E4F7FE;
	padding: 5px;
	transition: all ease-in 0.2s;
}

.lang-drop-box .dropdown-item:hover{
	color: #fff;
	background-color:transparent;
    transform: translate(5px,0px);
	padding: 0;
    border: 0 !important;
}
 
.cheader-globe-icon {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
}

.cheader-auth-buttons {
	display: flex;
	gap: 8px;
}

.cheader-btn-signup {
	background-color: transparent;
	color: white;
	border: 1px solid white;
	padding:12px 24px 9px 24px;
	border-radius: 24px;
	text-transform: uppercase;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-flex;
    align-items: center;
}

.cheader-btn-signup:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: white;
	scale: 0.9;
}

.cheader-btn-login {
	background-color: var(--cheader-accent);
	color: var(--cheader-secondary);
	border: none;
	padding: 12px 24px 9px 24px;
	border-radius: 24px;
	text-transform: uppercase;
	font-size: 16px;
	line-height:1;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-flex;
    align-items: center;
}

.cheader-btn-login:hover {
	background-color: #d4e7f4;
	color: var(--cheader-secondary);
	scale: 0.9;
}

.cheader-hamburger {
	background-color: transparent;
	border: none;
	padding: 10px;
	cursor: pointer;
	display: none;
}

.cheader-hamburger-line {
	display: block;
	width: 20px;
	height: 2px;
	background-color: white;
	margin: 3px 0;
	border-radius: 2px;
}

/* Hero Section */
.cheader-hero {
	min-height: 100vh;
	background-color: #1A2F3A;
	position: relative;
	display: flex;
	align-items: center;
	padding: 150px 0 400px;
	overflow: hidden;
}

.cheader-hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.cheader-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.8;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
	z-index: 2;
}

.cheader-hero-content {
	max-width: 662px;
	position: relative;
	z-index: 3;
}

.cheader-hero-title {
	font-size: 72px;
	line-height: 1.2;
	color: white;
	margin-bottom: 24px;
	font-weight: 500;
}

.cheader-hero-title-accent {
	color: var(--cheader-accent);
}

.cheader-hero-description {
	font-size: 20px;
	line-height: 1.5;
	color: white;
	margin-bottom: 40px;
}

.cheader-btn-cta {
	background-color: var(--cheader-accent);
	color: var(--cheader-secondary);
	border: none;
	padding: 18px 32px 14px 32px;
	border-radius: 100px;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 24px;
	transition: all 0.3s;
}

.cheader-btn-cta:hover {
	background-color: #d4e7f4;
	color: var(--cheader-secondary);
	transform: translateX(5px);
}

.cheader-btn-arrow {
	width: 24px;
	height: 24px;
	line-height: 1;
    position: relative;
    top: -2px;
}

/* Content Section */
.cheader-content {
	background-color: transparent;
	padding: 0px 0;
	position: relative;
	margin-top: -270px;
    z-index: 3;
	padding-bottom: 220px;
}

.cheader-content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 20%;
    width: 20%;
    height: 34%;
    background: #fff;
    border-top-right-radius: 100% 100%;
    z-index: 2;
    animation: kgc-round-corner 2s ease-in-out forwards;
}
@keyframes kgc-round-corner {
  from {
    border-top-right-radius: 100% 0%;
  }
  to {
    border-top-right-radius: 100% 100%;
  }
}
.cheader-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 34%;
    background: #fff;
    border-top-left-radius: 100% 100%;
    z-index: 2;
    animation: kgc-round-corner-right 2s ease-in-out forwards;
}
@keyframes kgc-round-corner-right {
  from {
    border-top-left-radius: 100% 0%;
  }
  to {
    border-top-left-radius: 100% 100%;
  }
}
.cheader-content-inn{position: relative;}
.cheader-content-inn::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 60%;
    height: 50%;
    background: #fff;
    z-index: 1;
}
.cheader-content-inn::after {
	content: "";
    position: absolute;
    top: 39%;
    right: 17.5%;
    width: 75px;
    height: 93px;
    background:url(/hero-banner-bottom-shape.png) 0 0 no-repeat;
    z-index: 3;
}

.about-hld{position:relative; top:80px; z-index:4;}

.cheader-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.cheader-badge-dot {
	width: 16px;
	height: 16px;
	position: relative;
}

.cheader-badge-dot::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--cheader-primary);
	opacity: 0.2;
	border-radius: 50%;
	animation: cheader-pulse 2s ease-in-out infinite;
}

.cheader-badge-dot::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background-color: var(--cheader-primary);
	border-radius: 50%;
}

@keyframes cheader-pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.2;
	}
	50% {
		transform: scale(1.3);
		opacity: 0.4;
	}
}

.cheader-badge-text {
	color: var(--cheader-primary);
	font-size: 16px;
	margin: 0;
}

.cheader-section-title {
	font-size: 48px;
	line-height: 1.2;
	color: var(--cheader-secondary);
	margin-bottom: 24px;
	font-weight: 500;
	letter-spacing: -0.96px;
}

.cheader-section-description {
	font-size: 20px;
	line-height: 1.6;
	color: var(--cheader-text-gray);
	margin-bottom: 48px;
	font-weight: 500;
	max-width: 520px;
}
.about-video{margin-left:35%;}
.cheader-video-card {
	border-radius: 48px;
	overflow: hidden;
	box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.25);
	margin-top: 48px;
	position: relative;
	aspect-ratio: 2/1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%),
				url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 568 320"><rect fill="%233A5A6F" width="568" height="320"/></svg>');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cheader-video-icon {
	width: 68px;
	height: 48px;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cheader-decorative-stars {
	position: absolute;
	right: -50px;
	top: -30px;
	width: 60px;
	height: 60px;
}

/* Mobile Offcanvas */
.cheader-offcanvas {
	background: rgba(31, 57, 79, 0.94);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	width: 100% !important;
}

.cheader-offcanvas-header {
	padding: 0px;
	border-bottom: none;
}

.cheader-offcanvas-title {
	display: none;
}

.cheader-offcanvas-close {
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: none;
	color: white;
	font-size: 18px;
	padding: 8px;
	cursor: pointer;
}

.cheader-offcanvas-close-text {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 18px;
}

.cheader-offcanvas-close-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cheader-offcanvas-body {
	padding: 0;
	display: flex;
	flex-direction: column;
	height: calc(100% - 80px);
}

.cheader-mobile-nav-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 0 48px;
	justify-content: center;
}

.cheader-mobile-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cheader-mobile-nav li {
	margin: 0;
}

.cheader-mobile-nav a {
	color: white;
	text-decoration: none;
	font-size: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 12px 0;
	height: 44px;
}

.cheader-mobile-nav-divider {
	height: 1px;
	background-color: rgba(228, 247, 254, 0.16);
	width: 100%;
}

.cheader-mobile-auth {
	margin-top: auto;
	padding: 20px;
	border-top: 1px solid rgba(228, 247, 254, 0.16);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cheader-mobile-auth-buttons {
	display: flex;
	gap: 16px;
}

.cheader-mobile-btn-signup {
	flex: 1;
	background-color: transparent;
	color: white;
	border: 1px solid white;
	padding: 14px 24px 10px 24px;
	border-radius: 32px;
	text-transform: uppercase;
	font-size: 16px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.cheader-mobile-btn-login {
	flex: 1;
	background-color: var(--cheader-accent);
	color: var(--cheader-secondary);
	border: none;
	padding: 14px 24px 10px 24px;
	border-radius: 32px;
	text-transform: uppercase;
	font-size: 16px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.cheader-mobile-copyright {
	color: rgba(228, 247, 254, 0.64);
	font-size: 14px;
	text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.cheader-desktop-nav {
		display: none;
	}

	.cheader-hamburger {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.cheader-hero-title {
		font-size: 44px;
	}

	.cheader-hero-description {
		font-size: 18px;
	}

	.cheader-btn-cta {
		font-size: 16px;
		padding: 12px 24px 9px 24px;
		gap: 16px;
	}

	.cheader-section-title {
		font-size: 32px;
		letter-spacing: -0.64px;
	}

	.cheader-section-description {
		font-size: 16px;
	}

	
	
	
}

@media (max-width: 1200px) {
	.cheader-logo {height: 60px; margin-left:0;}
	.container{max-width: 96%;}
	.cheader-navbar{padding: 20px 0 30px;}
	.cheader-hero-title {font-size: 46px;}
	.cheader-content {margin-top: -220px;  padding-bottom: 100px;}
	.cheader-content-inn::after {right: 16.5%;}
	
}
@media only screen and (min-width: 768px) {
	.cheader-hero {min-height: 800px;}
	.cheader-content {margin-top: -180px;}
	.about-video {margin-left: 20%;width: 70%;}

}
@media only screen and (min-width: 992px) {
	.cheader-hero {min-height: 800px;}
    .cheader-content {margin-top: -220px;}

}
@media only screen and (min-width: 1200px) {
	.cheader-content {margin-top: -270px;  padding-bottom: 200px;}
	.about-video {margin-left: 50%;width: 60%; transform: translateX(-30%);}

}
@media only screen and (min-width: 1400px) {
	.cheader-content {margin-top: -285px;  padding-bottom: 220px;}

}

@media (max-width: 767px) {
	.cheader-navbar {
		padding: 0px 0;
	}

	.cheader-hero {
		padding: 120px 0 80px;  min-height:670px;
	}

	.cheader-content {
		padding: 0px 0;  padding-bottom: 97px;  margin-top: -97px;
	}
	.cheader-content::before, .cheader-content::after{height:18%;}
	.cheader-content-inn::before {height:30%;}
	.cheader-logo {height: 68px;margin-left: -15px;}
	.cheader-content-inn::after {top: 19%;right: 11.5%;}
	.offcanvas-header .cheader-logo {margin-left:0;}
	.about-video {margin-left: 0;}
	.cheader-video-card {border-radius: 16px;}
	.cheader-hero-content {margin-top: -50px;}
}

/* Globe Icon SVG */
.cheader-globe-svg {
	width: 24px;
	height: 24px;
}


.app-container {
	min-height: 100vh;
	max-width:1400px;
	margin:0 auto;
}

.header-section {
	text-align: center;
	margin-bottom: 64px;
}

.main-title {
	font-size: 48px;
	font-weight: 500;
	color: #1f394f;
	letter-spacing: -0.96px;
	line-height: 1.2;
	margin-bottom: 24px;
}

.subtitle {
	font-size: 18px;
	color: #707c8c;
	letter-spacing: -0.36px;
	line-height: 1.5;
	max-width: 832px;
	margin: 0 auto;
}

.cards-container {
	max-width: 1400px;
	margin: 0 auto;
}

.cards-row {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.cards-row:last-child {
	margin-bottom: 0;
}

.audience-card {
	position: relative;
	width: 406px;
	height: 400px;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card.expanded {
	box-shadow: 0px 16px 64px 0px rgba(30, 85, 111, 0.4);
	transform: translateY(-4px);
}

.card-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover .card-background {
	transform: scale(1.1);
}

.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 47.675%,
		rgba(0, 0, 0, 0.8) 100%
	);
	transition: background 0.4s ease;
}

.card-overlay.dark {
	background: rgba(29, 55, 77, 0.9);
}

.card-content {
	position: relative;
	height: 100%;
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	z-index: 1;
}

.card-title {
	color: white;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
}

.audience-card.expanded .card-title {
	display: none;
}

.expanded-content {
	flex: 1;
	display: none;
	flex-direction: column;
	gap: 16px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease;
}

.audience-card.expanded .expanded-content {
	display: flex;
	opacity: 1;
	transform: translateY(0);
}

.card-title-expanded {
	color: white;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
}

.card-description {
	color: #e7f6fd;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 8px;
}

.requirements-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.requirement-item {
	color: #e7f6fd;
	font-size: 18px;
	line-height: 1.5;
}

.expand-button {
	position: absolute;
	bottom: 32px;
	right: 32px;
	width: 32px;
	height: 32px;
	background: white;
	border: 1px solid #1e556f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.3s ease;
	z-index: 2;
}

.expand-button:hover {
	transform: scale(1.1);
}

.expand-button.rotated {
	transform: rotate(45deg);
}

.expand-button.rotated:hover {
	transform: rotate(45deg) scale(1.1);
}

/* Tablet Styles */
@media (max-width: 1200px) {
	.app-container {
		padding: 40px 60px;
	}

	.cards-row {
		flex-wrap: wrap;
	}

	.audience-card {
		width: calc(50% - 15px);
		min-width: 300px;
	}

	.main-title {
		font-size: 40px;
	}

	.subtitle {
		font-size: 16px;
	}
}

/* Mobile Styles */
@media (max-width: 768px) {
	.container {
        max-width: 100%;
    }
	.app-container .container{padding:0;}
	.app-container {
		padding: 60px 24px; min-height: inherit;
	}

	.header-section {
		margin-bottom: 48px;
	}

	.main-title {
		font-size: 32px;
	}

	.subtitle {
		font-size: 16px;
	}

	.cards-row {
		display: flex;
		flex-direction: row;
		align-items: stretch;
		justify-content: flex-start;
		gap: 12px;
		margin-bottom: 0;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding: 0 24px 12px 24px;
		/* Show scrollbar */
		scrollbar-width: thin;
		scrollbar-color: rgba(30, 85, 111, 0.3) transparent;
		flex-wrap:nowrap;
	}

	.cards-row::-webkit-scrollbar {
		height: 8px;
	}

	.cards-row::-webkit-scrollbar-track {
		background: transparent;
	}

	.cards-row::-webkit-scrollbar-thumb {
		background-color: rgba(30, 85, 111, 0.3);
		border-radius: 4px;
	}

	.cards-row::-webkit-scrollbar-thumb:hover {
		background-color: rgba(30, 85, 111, 0.5);
	}

	.audience-card {
		flex: 0 0 calc(90vw - 64px);
		width: calc(90vw - 64px);
		max-width: none;
		height: 400px;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}


	.card-title-expanded {
		font-size: 28px;
	}

	.card-description,
	.requirement-item {
		font-size: 18px;
	}
	.slick-dots li button:before {
    font-size: 16px;}
}

/* Small Mobile */
@media (max-width: 480px) {
	.app-container {
		padding: 40px 16px; min-height: inherit;
	}

	.main-title {
		font-size: 28px;
	}

	.subtitle {
		font-size: 16px;
	}
	
	.card-title {
		font-size: 20px;
	}

	.card-title-expanded {
		font-size: 24px;
	}

	.card-description,
	.requirement-item {
		font-size: 16px;
	}
}

/*STR*/
:root {
	--sta-primary-dark: #1f394f;
	--sta-primary-blue: #1e556f;
	--sta-light-blue: #e4f7fe;
	--sta-text-primary: #1e556f;
	--sta-text-secondary: #707c8c;
	--sta-border-color: #d4dbe5;
}
.sta-main-wrapper {
	position: relative;
	/* min-height: 100vh; */
	background: white;
	/* padding-top:70px; */
}

.sta-section {
	position: relative;
	padding: 70px 0;
	overflow: hidden;
	background: linear-gradient(to bottom,  #e4f7fe 0%,#ffffff 100%); 
}

.sta-background-gradient {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1452px;
	height: 726px;
	pointer-events: none;
	z-index: 0;
}


.sta-content-wrapper {
	position: relative;
	z-index: 10;
}

.sta-header {
	text-align: center;
	margin-bottom: 48px;
	padding: 0 15px;
}

.sta-title {
	font-size: 48px;
	font-weight: 500;
	color: var(--sta-primary-dark);
	letter-spacing: -0.96px;
	line-height: 1.2;
	margin-bottom: 24px;
	position:relative;
	display: inline-block;
}
.sta-title:before, .sta-title:after{
	background:url('data:image/svg+xml,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.70802e-05 0.000107419C4.49114 4.49123 11.7725 4.49108 16.2635 0.000107419C11.7725 4.49108 11.7725 11.7726 16.2635 16.2636C11.7724 11.7724 4.49099 11.7726 1.70802e-05 16.2636C4.49114 11.7724 4.49099 4.49108 1.70802e-05 0.000107419Z" fill="%231E556F"/></svg>') center center no-repeat;
	width:30px;
	height:30px;
	position:absolute;
	left:-20%;
	top:50%;
	content:"";
	margin:-4px 0 0 0;
	transform: translateY(-50%);
}
.sta-title:after{left:inherit;right:-20%;}
.sta-subtitle {
	font-size: 20px;
	color: var(--sta-text-primary);
	letter-spacing: -0.4px;
	line-height: 1.2;
	max-width: 650px;
	margin: 0 auto;
}

.sta-steps-grid {
	margin-bottom: 48px;
}

.sta-steps-row {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.sta-step-card {
	flex: 1;
	flex-basis: calc(50% - 20px);
	background: white;
	border: 1px solid var(--sta-border-color);
	border-radius: 16px;
	padding: 32px;
	transition: box-shadow 0.3s ease;
	box-shadow: 0 0 24px 0 rgb(30 85 111 / 30%);
}

.sta-step-card:hover {
	box-shadow: 0 4px 20px rgba(31, 57, 79, 0.08);
}

.sta-step-inner {
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

.sta-icon-wrapper {
	flex-shrink: 0;
}

.sta-icon-circle {
	width: 64px;
	height: 64px;
	background: var(--sta-primary-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sta-icon-circle svg {
	width: 32px;
	height: 32px;
	stroke: white;
	fill: none;
}

.sta-content {
	flex: 1;
	min-width: 0;
	align-items: flex-start;
    display: flex;
    flex-direction: column;
}

.sta-badge {
	background: var(--sta-light-blue);
	border-radius: 24px;
	padding: 8px 16px;
	display: inline-block;
	margin-bottom: 24px;
}

.sta-badge-text {
	font-size: 12px;
	color: var(--sta-primary-dark);
	letter-spacing: -0.24px;
	margin: 0;
}

.sta-step-title {
	font-size: 24px;
	font-weight: 500;
	color: var(--sta-text-primary);
	letter-spacing: -0.48px;
	margin-bottom: 16px;
}

.sta-description {
	font-size: 16px;
	color: var(--sta-text-secondary);
	line-height: 1.5;
	margin: 0;
}

.sta-cta-section {
	text-align: center;
}

.sta-btn-primary {
	background: var(--sta-primary-blue);
	color: var(--sta-light-blue);
	border: none;
	border-radius: 100px;
	padding: 16px 32px;
	font-size: 20px;
	display: inline-flex;
	align-items: center;
	gap: 24px;
	transition: all 0.3s ease;
	text-decoration: none;
	cursor: pointer;
	line-height:1;
}

.sta-btn-primary:hover {
	background: var(--sta-primary-dark);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(30, 85, 111, 0.3);
}

.sta-btn-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.sta-deadline {
	font-size: 14px;
	color: var(--sta-text-secondary);
	opacity: 0.64;
	margin-top: 24px;
}

/* Mobile Styles */
@media (max-width: 991px) {
	.sta-star-left,
	.sta-star-right {
		display: none;
	}
}

@media (max-width: 768px) {
	.sta-section {
		padding: 60px 0;
	}

	.sta-title {
		font-size: 32px;
		letter-spacing: -0.64px;
	}

	.sta-subtitle {
		font-size: 16px;
		letter-spacing: -0.32px;
	}
	.sta-header {margin-bottom: 28px;}
	.sta-steps-row {
		flex-direction: row;
		overflow-x: auto;
		gap: 20px;
		margin-bottom: 30px;
		padding-bottom: 20px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
		scrollbar-color: var(--sta-border-color) #f1f1f1;
		flex-wrap: nowrap;
		padding:20px;
	}

	.sta-steps-row::-webkit-scrollbar {
		height: 8px;
	}

	.sta-steps-row::-webkit-scrollbar-track {
		background: #f1f1f1;
		border-radius: 10px;
	}

	.sta-steps-row::-webkit-scrollbar-thumb {
		background: var(--sta-border-color);
		border-radius: 10px;
	}

	.sta-steps-row::-webkit-scrollbar-thumb:hover {
		background: var(--sta-text-secondary);
	}

	.sta-step-card {
		min-width: 300px;
		flex-shrink: 0;
		scroll-snap-align: start;
	}

	.sta-step-inner {
		gap: 20px;
		flex-direction: column;
        align-items: center;
	}

	.sta-btn-primary {
		font-size: 18px;
		padding: 14px 28px;
	}
}

@media (max-width: 576px) {
	.sta-step-card {
		min-width: 300px;
		padding: 20px;
	}

	.sta-icon-circle {
		width: 56px;
		height: 56px;
	}

	.sta-icon-circle svg {
		width: 28px;
		height: 28px;
	}

	.sta-step-title {
		font-size: 20px;
	}

	.sta-description {
		font-size: 14px; text-align:center;
	}
	/* .sta-main-wrapper {padding-top: 20px;} */
	.sta-content {align-items: center;}
}





/* Custom Styles with wn- prefix */
.wn-container {
	/* background-color: #e4f7fe; */
	/* min-height: 100vh; */
	padding: 80px 0;
}

.wn-header {
	text-align: center;
	margin-bottom: 48px;
	max-width: 830px;
	margin-left: auto;
	margin-right: auto;
}

.wn-title {
	font-size: 48px;
	color: #1f394f;
	letter-spacing: -0.96px;
	line-height: 1.2;
	margin-bottom: 24px;
	font-weight: 500;
}

.wn-subtitle {
	font-size: 20px;
	color: #1e556f;
	letter-spacing: -0.4px;
	line-height: 1.5;
}

.wn-cards-wrapper {
	max-width: 1288px;
	margin: 0 auto;
}

/* Horizontal scroll container for mobile */
.wn-scroll-container {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
}

.wn-scroll-container::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}

.wn-cards-row {
	display: flex;
	gap: 16px;
}

.wn-card-col {
	flex: 0 0 auto;
}

.wn-card {
	border-radius: 16px;
	padding: 32px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.wn-card-light {
	border: 1px solid #d4dbe5;
	background-color: transparent;
}

.wn-card:hover {
	background: linear-gradient(156.292deg, rgb(31, 57, 79) 0%, rgb(30, 85, 111) 75.7%, rgb(229, 246, 253) 122.37%);
	box-shadow: 0px 0 0 0px rgba(30, 85, 111, 0.4);
}

.wn-icon-wrapper {
	width: 80px;
	height: 80px;
	margin: 0 auto;
}

.wn-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: center;
}

.wn-step-number {
	font-size: 24px;
	letter-spacing: -0.48px;
	font-weight: 500;
	margin-bottom: 16px;
}

.wn-card:hover .wn-step-number-light {
	/*color: #1e556f;*/
	color: #ffffff;
}

.wn-card:hover .wn-step-number-dark {
	color: #ffffff;
}

.wn-step-title {
	display: inline;
}

.wn-description {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

.wn-card:hover .wn-description-light {
	/*color: #707c8c;*/
	color: #d4dbe5;
}

.wn-card:hover .wn-description-dark {
	color: #d4dbe5;
}

/* SVG Icon Styles */
.wn-icon {
	width: 100%;
	height: 100%;
}
.wn-card .wn-icon-stroke-light {stroke: #1E556F;}
.wn-card:hover .wn-icon-stroke-light {
	/*stroke: #1E556F;*/
	stroke: #E4F7FE;
}

.wn-card:hover .wn-icon-stroke-dark {
	stroke: #E4F7FE;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.wn-title {
		font-size: 36px;
	}
	
	.wn-subtitle {
		font-size: 18px;
	}
	
	.wn-card {
		margin-bottom: 24px;
	}
}

@media (max-width: 767px) {
	.wn-container {
		padding: 40px 0;        min-height: inherit;
	}
	
	.wn-title {
		font-size: 32px;
	}
	
	.wn-subtitle {
		font-size: 16px;
	}
	
	/* Mobile horizontal scroll with 10% peek */
	.wn-cards-wrapper {
		margin: 0 -15px; /* Offset container padding */
		padding: 0 15px;
	}
	
	.wn-scroll-container {
		padding-right: 15px;
	}
	
	.wn-card-col {
		width: calc(90vw - 30px); /* 90% of viewport width minus padding, showing 10% of next card */
		min-width: 280px;
	}
	
	.wn-card {
		margin-bottom: 0;
	}
}

/* Desktop: Use regular grid layout */
@media (min-width: 768px) {
	.wn-cards-row {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
	
	.wn-card-col {
		width: auto;
	}
}

@media (min-width: 992px) {
	.wn-cards-row {
		grid-template-columns: repeat(3, 1fr);
	}
}

/*CC*/
.ccse-main-container-outer{
	background: linear-gradient(180deg, rgba(228, 247, 254, 0) 0%, #E4F7FE 120.99%);
}
.ccse-main-container {
	padding: 80px 0 40px 0;
}

.ccse-page-title {
	color: #1a2b3c;
	font-weight: 400;
	font-size: 2.5rem;
	margin-bottom: 0;
	max-width: 600px;
    margin: 0 auto;
}

.ccse-page-title-second {
	color: #1a2b3c;
	font-weight: 400;
	font-size: 2.5rem;
}

.ccse-impact-card {
	border: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	transition: box-shadow 0.3s ease;
	height: 100%;
}

.ccse-impact-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.ccse-card-header-image {
	position: relative;
	height: 280px;
    overflow: hidden;
    border-radius: 16px;
}

.ccse-card-header-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ccse-card-header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.ccse-card-header-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.ccse-card-title {
	color: white;
	margin: 0;
	font-size: 1.75rem;
}

.ccse-sparkles-icon {
	width: 32px;
	height: 32px;
	margin-right: 1rem;
}

.ccse-accordion-item-wrapper {
	margin-bottom: 1rem;
}

.ccse-accordion-item-wrapper:last-child {
	margin-bottom: 0;
}

.ccse-accordion-button-custom {
	background: none;
	border: none;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	color: #1a2b3c;
	text-align: left;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.ccse-accordion-button-custom:hover {
	opacity: 0.8;
}

.ccse-accordion-button-custom:focus {
	outline: none;
}

.ccse-accordion-title {
	font-weight: 400;
	font-size: 1rem;
}

.ccse-accordion-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background-color: #e6f4f7;
	border-radius: 4px;
	color: #0891b2;
	flex-shrink: 0;
	font-size: 1.25rem;
	line-height: 1;
	font-family: Arial, Helvetica, sans-serif;
}

.ccse-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	color: #64748b;
	font-size: 16px;
	line-height: 1.6;
}

.ccse-accordion-content.ccse-show {
	max-height: 200px;
	margin-top: 1rem;
}

.ccse-divider {
	margin: 1rem 0;
	border-color: #e2e8f0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
	.ccse-page-title,
	.ccse-page-title-second {
		font-size: 1.75rem;
	}
	.ccse-main-container {
	padding: 40px 0;
}
}

@media (max-width: 576px) {
	.ccse-page-title,
	.ccse-page-title-second {
		font-size: 1.5rem;
	}

	.card-body {
		padding: 1.5rem !important;
	}

	.ccse-card-title {
		font-size: 1.25rem !important;
	}

	.ccse-main-container {
		padding: 2rem 0;
	}
	.ccse-card-header-image {height: 160px;}
}



/*QA*/
:root {
	--qa-bg-primary: #e4f7fe;
	--qa-text-dark: #1f394f;
	--qa-text-medium: #1e556f;
	--qa-text-light: #707c8c;
	--qa-border-color: #d4dbe5;
	--qa-white: #ffffff;
}
.qa-section {
	background-color: var(--qa-bg-primary);
	/* min-height: 100vh; */
	padding: 80px 0;
}

.qa-container {
	margin: 0 auto;
	padding: 0 0;
}

.qa-header {
	margin-bottom: 48px;
}

.qa-header-title {
	color: var(--qa-text-dark);
	font-size: 48px;
	line-height: 1.2;
	letter-spacing: -0.96px;
	font-weight: 500;
	margin-bottom: 16px;
	max-width: calc(100% - 400px);
}

.qa-header-description {
	color: var(--qa-text-medium);
	font-size: 20px;
	line-height: 24px;
	letter-spacing: -0.4px;
	font-weight: 400;
	margin: 0;
}

.qa-divider {
	border: 0;
	border-top: 2px solid #D4DBE5;
	margin: 0;
}

.qa-content {
	margin-top: 48px;
}

.qa-columns {
	display: flex;
	gap: 100px;
}

.qa-column {
	flex: 1;
}

.qa-accordion-item {
	border: none;
	background: transparent;
	/* margin-bottom: 32px; */
	padding: 32px 0px;
}

.qa-accordion-item:last-child {
	margin-bottom: 0;
}

.qa-accordion-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	background: transparent;
	border: none;
	padding: 0;
	width: 100%;
	text-align: left;
	cursor: pointer;
	margin-bottom: 0;
}

.qa-accordion-question-text {
	color: var(--qa-text-dark);
	font-size: 20px;
	line-height: 1.4;
	font-weight: 500;
	flex: 1;
	margin: 0;
}

.qa-accordion-icon {
	width: 40px;
	height: 40px;
	background: var(--qa-white);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.qa-accordion-icon svg {
	width: 24px;
	height: 24px;
}

.qa-accordion-answer {
	color: var(--qa-text-light);
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
	margin-top: 16px;
	margin-bottom: 0;
}

.qa-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.qa-accordion-content.qa-show {
	max-height: 500px;
}

.qa-item-divider {
	margin-top: 0px;
}

.qa-view-all {
	display: inline-flex;
	align-items: center;
	gap: 24px;
	color: var(--qa-text-medium);
	font-size: 20px;
	font-weight: 400;
	text-decoration: none;
	margin-top: 80px;
	transition: gap 0.3s ease;
}

.qa-view-all:hover {
	color: var(--qa-text-medium);
	gap: 32px;
}

.qa-view-all svg {
	width: 24px;
	height: 24px;
}

/* Mobile Responsive */
@media (max-width: 1400px) {
	.qa-container {
		padding: 0 30px;
	}
	.qa-header-title{width:100%;}
}

@media (max-width: 1200px) {
	.qa-container {
		padding: 0 30px;
	}

	.qa-header-title {
		max-width: 100%;
	}

	.qa-columns {
		gap: 60px;
	}
}

@media (max-width: 992px) {
	.qa-section {
		padding: 60px 0;
	}

	.qa-container {
		padding: 0 40px;
	}

	.qa-header-title {
		font-size: 36px;
		letter-spacing: -0.72px;
	}

	.qa-header-description {
		font-size: 18px;
	}

	.qa-columns {
		flex-direction: column;
		gap: 40px;
	}

	.qa-view-all {
		margin-top: 60px;
	}
}

@media (max-width: 768px) {
	.qa-section {
		padding: 40px 0;
	}

	.qa-container {
		padding: 0 24px;
	}

	.qa-header {
		margin-bottom: 32px;
	}

	.qa-header-title {
		font-size: 28px;
		letter-spacing: -0.56px;
		margin-bottom: 12px;
	}

	.qa-header-description {
		font-size: 16px;
		line-height: 22px;
	}

	.qa-content {
		margin-top: 24px;
	}
	.qa-columns{gap:0;}
	.qa-accordion-item {
		padding: 24px 0px;
	}

	.qa-accordion-question {
		gap: 16px;
	}

	.qa-accordion-question-text {
		font-size: 18px;
	}

	.qa-accordion-icon {
		width: 36px;
		height: 36px;
		border-radius: 10px;
	}

	.qa-accordion-icon svg {
		width: 20px;
		height: 20px;
	}

	.qa-accordion-answer {
		font-size: 14px;
		margin-top: 12px;
	}

	.qa-item-divider {
		margin-top: 0px;
	}

	.qa-view-all {
		font-size: 18px;
		margin-top: 40px;
		gap: 16px;
	}

	.qa-view-all:hover {
		gap: 20px;
	}

	.qa-view-all svg {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 480px) {
	.qa-container {
		padding: 0 16px;
	}

	.qa-header-title {
		font-size: 24px;
	}

	.qa-accordion-question-text {
		font-size: 16px;
	}
}



/* slider css */



.success-section {
  padding: 80px 0px;
  margin: auto;
  text-align: center;
}
.bg-sky{
    background-color: #E4F7FE;
}

.mb-32{
    margin-bottom: 32px;
}

/* --- SLIDER --- */
.success-section .slider-container {
  position: relative;
  overflow: hidden;padding: 0 1px;
}

.success-section .slider {
  display: flex;
  scroll-behavior: smooth;
  /*overflow-x: auto;*/
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  /*padding-top: 20px;*/
  /* transform: translateX(10px); */
}



.success-section .slider::-webkit-scrollbar {
  display: none;
}

.success-section .video-card {
  /* flex: 0 0 30%; */
  min-width: 280px;
  /* background: #fff; */
  border-radius: 10px 10px 0 0;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
  overflow: hidden;
  transition: transform 0.2s;
  cursor: pointer;
  scroll-snap-align: start;
}

.success-section .video-card:hover {
  transform: translateY(-5px);
}

.success-section .thumbnail {
  position: relative;
}

.success-section .thumbnail img {
  width: 100%;
  display: block;
}

.success-section .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  padding: 20px 20px;
  transition: all ease-in 0.3s;
}

.success-section .thumbnail:hover .play-button svg  {
  scale: 1.08;
  transition: all ease-in 0.2s;
}

.success-section .thumbnail:hover .play-button svg path {
  fill: #fff;
  transition: all ease-in 0.2s;
}


.success-section .video-card p {
  font-weight: 500;
  text-align: left;
  color: #393939;
  padding-top: 16px;
  font-size: 18px;

}

/* --- NAV BUTTONS --- */
.success-section .slider-btn {
  background:transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  border-radius: 100px;
  height: 48px;
  width: 48px;
  z-index: 10;
  transition: all ease-in 0.3s;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.success-section .slider-btn.slick-disabled {opacity: .25;}
.slider-btn:hover {
    border: 2px solid #1E556F;
}


/* --- VIDEO POPUP --- */
.video-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  max-width: 90%;
  width: 800px;
}

.popup-content video {
  width: 100%;
  height: auto;
  display: block;
}

.close-btn {
  position: absolute;
  top: 10px; right: 20px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 99999;
}

.mg-r-3{
    margin-right: 30px;
}

.pad-l-16{
    padding-left: 16px;
  }

  .mw-820{
    max-width: 820px;
  }

  .ss-text{
    font-size: 12px;
    color: #393939;
    opacity: 50%;
    line-height: normal;
  }
   .dot-break{
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #393939;
    opacity: 50%;
    display: block;
  }

  .hr-line{
    height: 1px;
    background-color: #e9e9e9;
    margin-top: 40px;
  }

  .vid-anch{
    font-size: 12px;
    font-weight: 600;
    color: #393939;
    transition: all ease-in 0.3s;
    text-decoration: none;
  }
   .vid-anch img{
    transition: all ease-in 0.3s;

  }
  .vid-anch:hover{
    color: #393939cc;
  }

  .vid-anch:hover img{
    opacity: 70%;
    transform: rotate(-45deg);
  }

  .impact-section-container .slick-track{
    padding-top: 10px;
    padding-bottom: 10px;
	display: flex;
  }

 .slider-box{
    border-radius: 16px;
    border: 1px solid #D4DBE5;
    padding: 24px;
    background-color: #fff;
    /*transition: all ease-in 0.3s;
	transform: translateY(0px);*/
	    position: relative;
 } 

.impact-slider.slick-initialized .slick-slide {
    height: auto !important;
    display: flex !important;
}

 .slider-box figure{
    border-radius: 16px;
    margin-bottom: 24px;
    min-height: 200px;
 }

.impact-card-img{
    border-radius: 16px;
}


.impact-card-img .small-img{
  height: 417px;
  object-fit: cover;
  border-radius: 16px;
  filter: grayscale(0);
  /*animation: bigHeight 0.5s ease-in-out;*/
}

@keyframes bigHeight{

  from {
    height: 200px;
  }
  to {
    height: 417px;
  }


}

.impact-card-heading{
    color: #1F394F;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}
.imapact-card-btn{
    height: 32px;
    width: 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1E556F;
    background-color: #fff;
    transition: all ease-in 0.2s;
	position: absolute;
    bottom: 20px;
    right: 20px;
}
.imapact-card-btn:hover{
    scale: 1.1;
}

.imapact-card-btn.rotated {
	transform: rotate(45deg);
}

.imapact-card-btn.rotated:hover {
	transform: rotate(45deg) scale(1.1);
}

.slider-box.expanded {
	box-shadow: 0px 4px 14px 0px rgba(30, 85, 111, 0.4);
	/*transform: translateY(-4px);*/
    background: linear-gradient(-45deg,rgba(42, 123, 155, 1) 0%, rgba(0, 0, 0, 1) 100% );
    animation:gradientShift 0.3s ease-in-out ;
}
@keyframes gradientShift {
  0% {
    background: linear-gradient(-45deg, rgba(42, 123, 155, 0) 0%, rgba(0, 0, 0, 0) 100%);
  }
  10% {
    background: linear-gradient(-45deg, rgba(42, 123, 155, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  }
  20% {
    background: linear-gradient(-45deg, rgba(42, 123, 155, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  }
  30% {
    background: linear-gradient(-45deg, rgba(42, 123, 155, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  }
  40% {
    background: linear-gradient(-45deg, rgba(42, 123, 155, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  }
  50% {
    background: linear-gradient(-45deg, rgba(42, 123, 155, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  }
  60% {
    background: linear-gradient(-45deg, rgba(42, 123, 155, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
  }
  70% {
    background: linear-gradient(-45deg, rgba(42, 123, 155, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  }
  80% {
    background: linear-gradient(-45deg, rgba(42, 123, 155, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  }
  90% {
    background: linear-gradient(-45deg, rgba(42, 123, 155, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
  }
  100% {
    background: linear-gradient(-45deg, rgba(42, 123, 155, 1) 0%, rgba(0, 0, 0, 1) 100%);
  }
}








.slider-box.expanded .expanded-content {
	display: flex;
	opacity: 1;
	/*transform: translateY(0);*/
}
.impact-slider .expanded-content .card-description{margin-bottom:0;}
 .impact-card-heading.expanded {
    color: #fff;
}

.opacity-null{
    opacity: 0;
}

.small-img.small{
     height: 200px;
    object-fit: cover;
    border-radius: 16px;
    filter: grayscale(1);
    /*animation: smallHeight .5s ease-in-out forwards;*/
}

@keyframes smallHeight {
  from {
    height: 0px;
  }
  to {
    height: 200px;
  }
}



.text-slider-outer{
    background-color: #E4F7FE;
    padding-top: 100px;
    padding-bottom: 100px;
	backdrop-filter: blur(8px)
    /* background-image: url('/blue-bg-star.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain; */
}
.impact-slider .slick-prev, .slider-nav .slick-prev{width:46px; height:46px; left:-50px;}
.impact-slider .slick-next, .slider-nav .slick-next{width:46px; height:46px; right: -50px;}
[dir=rtl] .impact-slider .slick-prev, [dir=rtl] .slider-nav .slick-prev{left:inherit;right: -50px;}
[dir=rtl] .impact-slider .slick-next, [dir=rtl] .slider-nav .slick-next{right: inherit;left: -50px;}

.impact-slider .slick-next:before, .slider-nav .slick-next:before{
content: '';
width: 46px;
height: 46px;
border-radius: 50%;
border: 2px solid #1E556F;
display: block;
transition: all ease-in 0.2s;
background: url(/right-ch.svg) center center no-repeat;
background-color: #fff;
position: relative;
z-index: 2;


}
.impact-slider .slick-prev:before, .slider-nav .slick-prev:before{
content: '';
width: 46px;
height: 46px;
border-radius: 50%;
border: 2px solid #1E556F;
display: block;
transition: all ease-in 0.2s;
background: url(/left-ch.svg) center center no-repeat;
background-color: #fff;
position: relative;
z-index: 2;

}

[dir=rtl] .impact-slider .slick-prev:before, [dir=rtl] .slider-nav .slick-prev:before{background: url(/right-ch.svg) center center no-repeat;font-size: 0;}
[dir=rtl] .impact-slider .slick-next:before, [dir=rtl] .slider-nav .slick-next:before{background: url(/left-ch.svg) center center no-repeat;font-size: 0;}

.impact-slider .slick-prev, .slider-nav .slick-prev{
    left: -45px;
}

.slider-nav .slick-prev {
    left: inherit;
    right: 90px;
    top: -90px;
    transform: translate(0, 0%);
}
.slider-nav .slick-next {
    right: 30px;
    top: -90px;
    transform: translate(0, 0%);
}

.main{
    max-width: 100%;
    display: block;
    margin: 0 auto;
}


@media (max-width: 596px) {
  .mg-r-3{
    margin-right: 0px;
}

}
@media (max-width: 768px) {
  .video-card {
    flex: 0 0 80%;
  }
  .play-button {
    font-size: 30px;
  }
  .text-slider-outer{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .success-section {
  padding: 40px 0px;
}

}

@media (max-width: 820px) {
  .pad-l-16{
    padding-left: 0px;
  }
}


/* footer */

/* Footer Base */
.kgc-footer {
  background-color: #1F394F;
  color: #fff;
  padding: 60px 20px;
}

.kgc-footer-container {
  max-width: 1288px;
}

/* Logo */
.kgc-footer-logo img {
  max-width: 150px;
  padding: 40px 0px;
}

.footer-hr{
    height: 1px;
    background-color: #1E556F;
    max-width: 800px;
    margin: 24px auto;
}

/* Nav Links */
.kgc-footer-nav li{
  margin: 0 ;

}
.kgc-footer-policies li {
  margin: 0 15px;
}

.kgc-footer-nav li a,
.kgc-footer-policies li a {
  color: #ffffffcc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  vertical-align: middle;
}

.kgc-footer-nav li a:hover,
.kgc-footer-policies li a:hover {
  color: #fff;
}

/* Gap Control */
.kgc-footer-nav,
.kgc-footer-policies {
  gap: 30px;
  margin-bottom: 32px;
}

/* Social Icons */
.kgc-footer-social {
  gap: 20px;
  margin-top: 15px;
  /* margin-bottom: 25px; */
}

.kgc-footer-social .ft-icon{
  height: 48px;
  width: 48px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.kgc-footer-social .ft-icon:hover {
  opacity: 1;
  scale: 1.05;
}

/* Copyright */
.kgc-footer-copy {
  font-size: 12px;
  font-weight: 400;
  color: #ffffffb3;
}

.mt-80{
	padding-top: 80px;
	padding-bottom: 80px;
}

/* Responsive */
@media (max-width: 768px) {
  .kgc-footer-nav,
  .kgc-footer-policies {
    /* flex-direction: column; */
    gap: 15px;
    text-align: center;
  }
  .kgc-footer-nav li {
  margin: 0 0px;
  width: 46%;
}
.mt-80{
	padding-top: 40px;
	padding-bottom: 40px;
}
}

@media (max-width:596px) {
    .kgc-footer-policies li {
  margin: 0px;
}

}


/*Tree View*/
.tree-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 80px 20px;
}

.tree-header {
	text-align: center;
	margin-bottom: 40px;
}

.tree-title {
	color: #1f394f;
	font-size: 48px;
	font-weight: 500;
	letter-spacing: -0.96px;
	line-height: 1.2;
	margin-bottom: 8px;
	max-width: 80%;
    margin: 0 auto;
}

.tree-subtitle {
	color: #1f394f;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: -0.4px;
	line-height: 1.5;
}

.tree-top-section {
	position: relative;
	margin-bottom: 160px;
}

.tree-top-level {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	position: relative;
	flex-wrap: wrap;
}

.tree-connector-wrapper {
	width: 48px;
	height: 13px;
	position: relative;
}

.tree-card {
	border-radius: 13.44px;
	padding: 15px 15px;
	border: 0.84px solid;
	transition: transform 0.2s;
}

.tree-card:hover {
	transform: translateY(-2px);
}

.tree-card-honorary {
	background-color: #d4eaf3;
	border-color: #1e556f;
	max-width: 400px;
}

.tree-card-chairman {
	background-color: #1f394f;
	border-color: #1e556f;
	width: 376px;
	position: relative;z-index: 2;
}

/* Main vertical line from chairman going down */
.tree-card-chairman::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	width: 2px;
	height: 62px;
	background-color:#1e556f;
	transform: translateX(-50%);
}
.tree-card-chairman::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	margin-left: 0%;
	width: 35%;
	height: 2px;
	background: linear-gradient(to left, #1e556f 50%, transparent 50%);
	background-size: 8px 2px;
	background-repeat: repeat-x;
}


.tree-card-member {
	background-color: #e4f7fe;
	border-color: #707c8c;
	width: 175px;
	min-height: 116px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.tree-card-secretary {
	background-color: transparent;
	border-color: #707c8c;
	width: 204px;
	min-height: 116px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.tree-card-content {
	display: flex;
	align-items: center;
	gap: 20px;
}

.tree-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.tree-role {
	color: #1f394f;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 6px;
}

.tree-name {
	color: #707c8c;
	font-size: 16px;
	letter-spacing: -0.32px;
}

.tree-chairman-role {
	color: white;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 6px;
}

.tree-chairman-name {
	color: #d4dbe5;
	font-size: 16px;
	letter-spacing: -0.32px;
}

.tree-bottom-section {
	position: relative;
}

.tree-bottom-level {
	display: flex;
	justify-content: center;
	gap: 9px;
	flex-wrap: nowrap;
	position: relative;
}

/* Horizontal line connecting all members */
/*.tree-bottom-level::before {
	content: '';
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	margin-left: 0%;
	width: 84%;
	height: 2px;
	background-color: #1e556f;
}*/

.tree-member-role {
	color: #1f394f;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 4px;
	text-align: center;
}

.tree-member-name {
	color: #707c8c;
	font-size: 16px;
	letter-spacing: -0.32px;
	text-align: center;
}

.tree-secretary-badge {
	background-color: #1f394f;
	color: white;
	padding: 5px 0;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 4px;
	width: 150px;
	margin-left: auto;
	margin-right: auto;
}

/* Vertical connectors with arrows for each member */
.tree-card-member::before,
.tree-card-secretary::before {
	content: '';
	position: absolute;
	top: -100px;
	left: 50%;
	width: 2px;
	height: 80px;
	background-color: #1e556f;
	transform: translateX(-50%);
}

/* Arrow heads pointing down */
.tree-card-member::after,
.tree-card-secretary::after {
	content: '';
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid #1e556f;
}

/* Special styling for Board Secretary - dashed line */
.tree-card-secretary::before {
	background: linear-gradient(to bottom, #1e556f 50%, transparent 50%);
	background-size: 2px 8px;
	background-repeat: repeat-y;
	height: 200px;
	top: -216px;
}

.tree-card-secretary::after {
	top: -20px;
}
.tree-bl{display: flex; gap: 9px; position:relative;}
.tree-bl:before {
	content: '';
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 84%;
	height: 2px;
	background-color: #1e556f;
	animation: drawDown 1s ease forwards;
	opacity:0;
}
@keyframes drawDown {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.wn-cards-row > :last-child:nth-child(odd) {grid-column: 1 / -1;justify-self: center;}
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .tree-card-member{width: 150px;}
  .tree-card-chairman::before {width: 15%;}
  .tree-card-chairman::before {}
  
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tree-card-member{width: 125px;}
  .tree-card-chairman::after {height: 62px;}
  .tree-card-chairman::before{display:none;}
}


/* Mobile Responsive */
@media (max-width: 992px) {
	.tree-title {
		font-size: 36px;
	}

	.tree-subtitle {
		font-size: 18px;
	}

	.tree-container {
		padding: 40px 15px;
	}

	.tree-top-section {
		margin-bottom: 40px;margin-left: 50px;
	}
	.tree-bottom-section{margin-left: 50px;}
	.tree-top-level {
		flex-direction: column;
		gap: 20px;
	}

	.tree-connector-wrapper {
		width: 2px;
		height: 20px;
	}

	.tree-card-chairman {
		width: 100%;
		max-width: inherit;
	}

	.tree-card-chairman::after {
		
	}

	.tree-bottom-level {
		flex-direction: column;
		align-items: center;
	}

	.tree-bottom-level::before {
		
	}

	.tree-card-member,
	.tree-card-secretary {
		width: 100%;
		max-width: inherit;
	}
	.tree-card-honorary {
		max-width: inherit;
		width: 100%;
	}
	.tree-card-member::before,
	.tree-card-member::after,
	.tree-card-secretary::before,
	.tree-card-secretary::after {
	
	}
	
	.tree-card-member::before, .tree-card-secretary::before {
		top: 50%;
		left: -16px;
		width: 30px;
		height: 2px;
		background-color: #1e556f;
	}
	.tree-bl:before {
		top: 0;
		left: -30px;
		width: 2px;
		height: 109%;
	}
	.tree-card-member::after, .tree-card-secretary::after {
		top: 50%;
		left: 0;
		margin: -3px 0 0 -7px;
		transform: rotate(-90deg) translateY(-50%);
	}
	.tree-card-chairman::after {
		top: 50%;
		left: -31px;
		width: 2px;
		height: 96%;
	}
	.tree-card-chairman::before { left: -30px; width: 30px;}
	.tree-connector-wrapper svg{transform: rotate(270deg) ;left: -20px !important;}
	.tree-bl {flex-wrap: wrap;}
	.tree-bottom-level {align-items: flex-start;}
	
}

@media (max-width: 576px) {
	.tree-title {
		font-size: 28px;
	}

	.tree-subtitle {
		font-size: 16px;
	}

	.tree-role {
		font-size: 18px;
	}

	.tree-card-content {
		flex-direction: column;
		text-align: center;
	}

	.tree-avatar {
		width: 48px;
		height: 48px;
	}
	
	
}


/*what you gain?*/
/* Main Container */
.wyg-main-container {
	padding: 60px 20px;
}

/* Title Section */
.wyg-title-section {
	text-align: center;
	margin-bottom: 48px;
	opacity: 0;
	animation: wyg-fade-in 0.8s ease-out forwards;
}

.wyg-title {
	font-size: 36px;
	color: var(--wyg-primary-color);
	font-weight: 400;
	margin: 0;
}

/* Cards Container */
.wyg-cards-wrapper {
	margin-bottom: 48px;
}

.wyg-card {
	position: relative;
	height: 480px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 24px;
	opacity: 0;
	transform: translateY(30px);
	animation: wyg-slide-up 0.6s ease-out forwards;
}

.wyg-card:nth-child(1) { animation-delay: 0.1s; }
.wyg-card:nth-child(2) { animation-delay: 0.2s; }
.wyg-card:nth-child(3) { animation-delay: 0.3s; }
.wyg-card:nth-child(4) { animation-delay: 0.4s; }
.wyg-card:nth-child(5) { animation-delay: 0.5s; }

.wyg-card-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.wyg-card:hover .wyg-card-image {
	transform: scale(1.05);
}

.wyg-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(31, 57, 79, 0.6);
	mix-blend-mode: multiply;
}

.wyg-card-gradient-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(37, 56, 78, 0), var(--wyg-primary-color));
}

.wyg-card-gradient-bottom {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(37, 56, 78, 0), var(--wyg-primary-color));
}

.wyg-card-content {
	position: relative;
	height: 100%;
	padding: 32px;
	display: flex;
	align-items: flex-start;
	z-index: 2;
}

.wyg-card-content-bottom {
	align-items: flex-end;
}

.wyg-card-content-center {
	align-items: center;
}

.wyg-card-text {
	color: white;
	font-size: 20px;
	line-height: 1.35;
	font-weight: 500;
	max-width: 280px;
	text-transform: capitalize;
	margin: 0;
}

/* SVG Decorations */
.wyg-svg-decoration {
	position: absolute;
	pointer-events: none;
	opacity: 0;
	animation: wyg-fade-in 0.8s ease-out forwards;
}

.wyg-svg-decoration.wyg-top-left {
	top: -2px;
	left: 50%;
	animation-delay: 0.6s;
	transform: translateX(-47%);
}

.wyg-svg-decoration.wyg-top-right {
	top: 336.5px;
	right: 0.4px;
	animation-delay: 0.7s;
}

.wyg-svg-decoration.wyg-center {
	bottom: 32.5px;
	left: 50%;
	transform: translateX(-50%);
	animation-delay: 0.8s;
}

.wyg-svg-decoration.wyg-bottom-center {
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%) rotate(180deg);
	animation-delay: 0.8s;
}



.wyg-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.wyg-button:hover::before {
	width: 300px;
	height: 300px;
}

.wyg-button:hover {
	background-color: #1a2a3a;
	border-color: #1a2a3a;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(37, 56, 78, 0.3);
}

.wyg-button span {
	position: relative;
	z-index: 1;
}

/* Animations */
@keyframes wyg-fade-in {
	to {
		opacity: 1;
	}
}

@keyframes wyg-slide-up {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 991px) {
	.wyg-title {
		font-size: 28px;
	}
	
	.wyg-card {
		height: 400px;
	}
	
	.wyg-card-text {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.wyg-main-container {
		padding: 40px 15px;
	}
	
	.wyg-title {
		font-size: 24px;
	}
	
	.wyg-card {
		height: 100px;
	}
	.wyg-cards-wrapper {margin-bottom: 24px;}
	.wyg-svg-decoration.wyg-bottom-center, .wyg-svg-decoration.wyg-top-left{opacity:0.4 !important;}
	.wyg-title-section{margin-bottom:30px;}
	.wyg-card-content-bottom{align-items: flex-start;}
	.wyg-card{margin-bottom:0;}
	.wyg-card-content {
		padding: 24px;
	}
	
	.wyg-card-text {
		font-size: 16px;
		max-width: 100%;
	}
}

/* Hover Effects */
.wyg-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.05);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 1;
}

.wyg-card:hover::after {
	opacity: 1;
}

.abt-hld{padding:80px 0;}
.abt-hld h3{margin-bottom:20px;}
.abt-left {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: center;
}
.abt-left p{max-width:80%;}
.abt-left p:last-child{margin-bottom:0; padding-bottom:0;}
.abt-right{position: relative;border-radius: 16px; overflow:hidden;}
.abt-right-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
	filter: blur(8px);
   -webkit-filter: blur(8px);
}
.abt-right-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(31, 57, 79, 0.7);
	mix-blend-mode: multiply;
}
.abt-right-content {
    position: relative;
    height: 100%;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    z-index: 2;
	flex-direction: column;
    color: #fff;
}
.abt-right-content p{font-weight:400;}

@media (max-width: 991px) {
	.abt-right-content{padding: 20px;}
	.abt-left{margin-bottom:30px;}
	.abt-left p{max-width:100%;}
	.abt-hld {padding: 40px 0;}
}

/* profile selection */

/* profile selection */

/* =======================
   SECTION LAYOUT
======================= */
.pf-eligibility-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =======================
   CARDS WRAPPER
======================= */
.pf-eligibility-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

/* =======================
   INDIVIDUAL CARD
======================= */
.pf-eligibility-card {
  flex: 1 1 200px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  min-height: 200px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pf-eligibility-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  background-color: #1e556f;
  color: #e4f7fe;
  transition: all ease-in-out 0.3s;
}

/* =======================
   ACTIVE (HIGHLIGHTED) CARD
======================= */
.pf-eligibility-card.pf-active {
  background: #1e556f;
  color: #e4f7fe;
  border: none;
}

.pf-eligibility-card.pf-active h3 {
  color: #e4f7fe;
}

.pf-eligibility-card:hover h3 {
  color: #e4f7fe;
  transition: all ease-in-out 0.3s;
}

.pf-eligibility-card.pf-active .pf-icon path,
.pf-eligibility-card:hover .pf-icon path {
  fill: #e4f7fe;
  transition: all ease-in-out 0.3s;
}

.pf-icon{
	margin-bottom: 20px;
}

/* =======================
   HEADING
======================= */
.pf-heading-container {
  min-height: 180px;
}

.pf-eligibility-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #1e556f;
  /* text-transform: uppercase; */
}

/* =======================
   LIST STYLING
======================= */
.pf-eligibility-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-eligibility-card li {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.4rem;
  color: #1f394f;
  font-weight: 400;
}
.pf-eligibility-card p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 1rem;
  padding-left: 0;
  color: #1f394f;
  font-weight: 400;
}
.pf-eligibility-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  background-image: url('data:image/svg+xml;utf8,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.64062 12.5L14.1406 5L12.9688 3.78906L6.64062 10.1172L3.67188 7.14844L2.5 8.32031L6.64062 12.5ZM2.42188 2.46094C4.0625 0.820312 6.02865 0 8.32031 0C10.612 0 12.5651 0.820312 14.1797 2.46094C15.8203 4.07552 16.6406 6.02865 16.6406 8.32031C16.6406 10.612 15.8203 12.5781 14.1797 14.2188C12.5651 15.8333 10.612 16.6406 8.32031 16.6406C6.02865 16.6406 4.0625 15.8333 2.42188 14.2188C0.807292 12.5781 0 10.612 0 8.32031C0 6.02865 0.807292 4.07552 2.42188 2.46094Z" fill="%231E556F"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

.pf-eligibility-card.pf-active li::before,
.pf-eligibility-card:hover li::before {
  background-image: url('/active-tick.svg');
  transition: all ease-in-out 0.3s;
}

.pf-eligibility-card.pf-active li,
.pf-eligibility-card:hover li, .pf-eligibility-card.pf-active p,
.pf-eligibility-card:hover p {
  color: #e4f7fe;
  transition: all ease-in-out 0.3s;
}

/* For white text on dark background */
.pf-eligibility-card.pf-active li::before {
  color: #a7f3d0;
}

/* =======================
   CONTINUE BUTTON
======================= */
.pf-btn-container {
  margin-top: 40px;
  text-align: right;
  width: 100%;
  display: flex;
  justify-content: end;
}

.pf-continue-btn {
  background: var(--sta-primary-blue);
  color: var(--sta-light-blue);
  border: none;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.pf-continue-btn.disabled{
  background:#D4DBE5;
  color: #707C8C;
  cursor: not-allowed;
  pointer-events: none; 
}

.pf-continue-btn.disabled svg path{
  stroke: #707C8C;
}

.pf-continue-btn:hover {
  background: var(--sta-primary-dark);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(30, 85, 111, 0.3);
}

.pf-eligibility-card .select-indication{
	right: 6px;
	top: 12px;
	visibility: hidden;
	opacity: 0;
}

.pf-eligibility-card.pf-active .select-indication {
 visibility: visible;
 opacity: 1;
}

.pf-eligibility-card.disabled {
  opacity: 0.4;
  pointer-events: none; /* prevents click */
  cursor: not-allowed;
}

/* =======================
   RESPONSIVE DESIGN
======================= */

/* Tablet (below 992px) */
@media (max-width: 992px) {
  .pf-eligibility-cards {
    justify-content: center;
  }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
  .pf-eligibility-card {
    flex: 1 1 100%;
    text-align: start;
  }

  .pf-eligibility-card li {
    text-align: left;
    display: inline-block;
  }

  .pf-btn-container {
    text-align: center;
  }
.pf-heading-container{
	min-height: 130px;
}
}

/* my profile ends */
.ratio-2x1 {
  --bs-aspect-ratio: 50%; /* 1 / 2 = 0.5 = 50% */
}

.bt-new-container {
	background-color: #e4f7fe;
	padding: 80px 0px;
}

.bt-new-header {
	text-align: center;
	margin-bottom: 40px;
}

.bt-new-title {
	font-size: 48px;
	font-weight: 500;
	color: #1f394f;
	letter-spacing: -0.96px;
	line-height: 1.2;
	margin-bottom: 8px;
}

.bt-new-subtitle {
	font-size: 20px;
	font-weight: 400;
	color: #e4f7fe;
	letter-spacing: -0.4px;
	line-height: 1.5;
}

/* Top leadership cards (dark) */
.bt-new-card-dark {
	background-color: #1f394f;
	border: 0.84px solid #1e556f;
	border-radius: 13.44px;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 132px;
}

.bt-new-card-dark img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.bt-new-card-dark-content {
	display: flex;
	flex-direction: column;
	gap: 7px;
	text-align: center;
}

.bt-new-card-dark-title {
	font-size: 20px;
	font-weight: 500;
	color: #ffffff;
	white-space: nowrap;
}

.bt-new-card-dark-name {
	font-size: 16px;
	font-weight: 500;
	color: #d4dbe5;
	letter-spacing: -0.32px;
	white-space: nowrap;
}

/* Board member cards (light) */
.bt-new-card-light {
	background-color: #e4f7fe;
	border: 0.84px solid #707c8c;
	border-radius: 13.44px;
	padding: 24px 20.16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6.72px;
	position: relative;
	min-height: 180px;
}

.bt-new-card-light img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.bt-new-star-icon {
	position: absolute;
	top: -11.72px;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 24px;
}

.bt-new-card-light-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: center;
	width: 100%;
}

.bt-new-card-light-title {
	font-size: 16px;
	font-weight: 500;
	color: #1f394f;
}

.bt-new-card-light-name {
	font-size: 16px;
	font-weight: 400;
	color: #707c8c;
	letter-spacing: -0.32px;
}

.bt-new-leadership-row {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
}

.bt-new-members-row {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
	.bt-new-card-dark {
		width: 318px;
	}
	
	.bt-new-card-light {
		width: 204px;
	}
}

/* Desktop */
@media (max-width: 1399px) {
	.bt-new-container {
		padding: 60px 80px;
	}
	
	.bt-new-card-dark {
		width: 300px;
	}
	
	.bt-new-card-light {
		width: 190px;
	}
	
	.bt-new-title {
		font-size: 42px;
	}
}

/* Tablet/iPad */
@media (max-width: 1024px) {
	.bt-new-container {
		padding: 50px 40px;
	}
	
	.bt-new-title {
		font-size: 36px;
	}
	
	.bt-new-subtitle {
		font-size: 18px;
	}
	
	.bt-new-leadership-row {
		flex-direction: column;
		align-items: center;
	}
	
	.bt-new-card-dark {
		width: 100%;
		max-width: 400px;
	}
	
	.bt-new-members-row {
		gap: 16px;
	}
	
	.bt-new-card-light {
		width: calc(50% - 8px);
		max-width: 250px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.bt-new-container {
		padding: 40px 20px;
	}
	
	.bt-new-title {
		font-size: 28px;
		letter-spacing: -0.56px;
	}
	
	.bt-new-subtitle {
		font-size: 16px;
	}
	
	.bt-new-header {
		margin-bottom: 32px;
	}
	
	.bt-new-card-dark {
		width: 100%;
		max-width: 100%;
		flex-direction: column;
		gap: 16px;
	}
	
	.bt-new-card-dark-content {
		text-align: center;
	}
	
	.bt-new-card-light {
		width: 100%;
		max-width: 100%;
	}
	
	.bt-new-members-row {
		gap: 16px;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.bt-new-container {
		padding: 30px 16px;
	}
	
	.bt-new-title {
		font-size: 24px;
	}
	
	.bt-new-subtitle {
		font-size: 14px;
	}
}


/* ========== ANIMATIONS ========== */
        
/* Keyframe Animations */
@keyframes bt-new-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bt-new-starPulse {
	0%, 100% {
		transform: translateX(-50%) scale(1);
		opacity: 1;
	}
	50% {
		transform: translateX(-50%) scale(1.15);
		opacity: 0.85;
	}
}

@keyframes bt-new-starRotate {
	from {
		transform: translateX(-50%) rotate(0deg);
	}
	to {
		transform: translateX(-50%) rotate(360deg);
	}
}

@keyframes bt-new-starGlow {
	0%, 100% {
		filter: drop-shadow(0 0 0px rgba(30, 85, 111, 0));
	}
	50% {
		filter: drop-shadow(0 0 8px rgba(30, 85, 111, 0.6));
	}
}

@keyframes bt-new-borderGlow {
	0%, 100% {
		border-color: #707c8c;
		box-shadow: 0 0 0 rgba(30, 85, 111, 0);
	}
	50% {
		border-color: #1e556f;
		box-shadow: 0 0 20px rgba(30, 85, 111, 0.3),
				   0 4px 15px rgba(30, 85, 111, 0.2);
	}
}

/* Apply animations to header */
.bt-new-header {
	animation: bt-new-fadeInUp 0.8s ease-out;
}

/* Apply animations to dark cards */
.bt-new-card-dark {
	animation: bt-new-fadeInUp 0.8s ease-out;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bt-new-card-dark:nth-child(1) {
	animation-delay: 0.2s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.bt-new-card-dark:nth-child(2) {
	animation-delay: 0.3s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.bt-new-card-dark:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(31, 57, 79, 0.3);
}

/* Apply animations to light cards */
.bt-new-card-light {
	animation: bt-new-fadeInUp 0.8s ease-out;
	opacity: 0;
	animation-fill-mode: forwards;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bt-new-card-light:nth-child(1) {
	animation-delay: 0.4s;
}

.bt-new-card-light:nth-child(2) {
	animation-delay: 0.5s;
}

.bt-new-card-light:nth-child(3) {
	animation-delay: 0.6s;
}

.bt-new-card-light:nth-child(4) {
	animation-delay: 0.7s;
}

.bt-new-card-light:nth-child(5) {
	animation-delay: 0.8s;
}

.bt-new-card-light:nth-child(6) {
	animation-delay: 0.9s;
}

.bt-new-card-light:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(30, 85, 111, 0.25);
	border-color: #1e556f;
}

/* Star icon animations */
.bt-new-star-icon {
	animation: bt-new-starPulse 2s ease-in-out infinite,
			   bt-new-starGlow 2s ease-in-out infinite;
}

.bt-new-card-light:hover .bt-new-star-icon {
	animation: bt-new-starRotate 0.6s ease-out,
			   bt-new-starGlow 0.6s ease-out;
}

/* Border bottom glow animation on hover */
.bt-new-card-light::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, 
		transparent, 
		#1e556f 20%, 
		#2b7a9f 50%, 
		#1e556f 80%, 
		transparent);
	border-radius: 13.44px;
	transition: width 0.4s ease;
	opacity: 0;
}

.bt-new-card-light:hover::after {
	width: 90%;
	opacity: 1;
}

/* Add subtle glow to card border on hover */
.bt-new-card-light:hover {
	/*animation: bt-new-borderGlow 1.5s ease-in-out infinite;*/
}

/* Image zoom effect on hover */
.bt-new-card-light img,
.bt-new-card-dark img {
	transition: transform 0.3s ease;
}

.bt-new-card-light:hover img,
.bt-new-card-dark:hover img {
	transform: scale(1.1);
}

/* Smooth text transitions */
.bt-new-card-light-title,
.bt-new-card-light-name,
.bt-new-card-dark-title,
.bt-new-card-dark-name {
	transition: color 0.3s ease, transform 0.3s ease;
}

.bt-new-card-light:hover .bt-new-card-light-title {
	color: #1e556f;
	transform: scale(1.05);
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.bt-new-card-dark,
	.bt-new-card-light,
	.bt-new-header,
	.bt-new-star-icon {
		animation: none !important;
		opacity: 1 !important;
	}
	
	.bt-new-card-light:hover,
	.bt-new-card-dark:hover {
		transform: none;
	}
}

/*Terms*/
/* Banner Section */
.tc-banner {
	background-color: #1F394F;
	color: white;
	padding: 80px 0 60px;
	margin-bottom: 0;
	position: relative;
}
.tc-banner-content {
	position: relative;
	z-index: 1;
}

.tc-banner h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color:#fff;
}

.tc-banner p {
	font-size: 1.1rem;
	opacity: 0.95;
	margin-bottom: 0;
}
/* Content Section */
.tc-content {
	padding: 60px 0;
}

.tc-section {
	border-radius:0px;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.tc-section:last-child {
	border-radius:0px;
	margin-bottom: 0px;
	padding-bottom:0px;
	border-bottom: 0px solid #ccc;
}
.tc-section h2 {
	color: #1E556F;
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
}


.tc-section p {
	line-height: 1.8;
	margin-bottom: 1rem;
	color: #475569;
}

.tc-section ul, .tc-section ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.tc-section li {
	margin-bottom: 0.75rem;
	line-height: 1.8;
	color: #475569;
}

.tc-section strong {
	color: var(--skea-dark);
	font-weight: 600;
}



/*Arabic*/
html[dir="rtl"] .success-section .video-card p {direction: rtl; text-align: right;}
html[dir="rtl"] .expand-button{left:32px; right:inherit;}
html[dir="rtl"] .tree-card-chairman::before{right:100%; left:inherit;}
html[dir="rtl"] .qa-accordion-question-text{text-align: right;}
html[dir="rtl"] .cheader-content-inn::before{right:0; left:inherit;}
html[dir="rtl"] .cheader-content::before{left:0; right:inherit;}
html[dir="rtl"] .cheader-content::after{left:20%; right:inherit;}
html[dir="rtl"] .cheader-content-inn::after{left: 17.5%;right:inherit;}
html[dir="rtl"] .scw-btn{flex-direction: row-reverse;}
@media (max-width: 576px) {
	html[dir="rtl"] .cheader-content-inn::after {left: 10.5%;}
}

/*11-12-2025*/
html[dir="rtl"] .impact-card-heading{margin-right: 40px;text-align: right; width: 100%;}
html[dir="rtl"] .impact-slider .expanded-content .card-description{text-align: right;}
html[dir="rtl"] .card-title-expanded{text-align: right;}
html[dir="rtl"] .success-section .main-title{margin-right: 150px;}
html[dir="rtl"] .success-section .slider-nav .slick-next {right: 80px;}
html[dir="rtl"] .success-section .slider-nav .slick-prev{right: 20px;}
html[dir="rtl"] .about-hld{top: 110px;}
html[dir="rtl"] .cheader-content-inn::after{top: 41%;}
@media (max-width: 576px) {
	html[dir="rtl"] .cheader-content-inn::after {left: 14.9%; background-size: 50%; top: 21%;}
	html[dir="rtl"] .cheader-content::before, .cheader-content::after {height: 20%;}
}
/*html[dir="rtl"] .slick-slider .slick-track, html[dir="rtl"] .slick-slider .slick-list { direction: ltr; }*/


html[dir="rtl"] .success-section .slider-nav .slick-next {right:inherit; left:0;}
html[dir="rtl"] .success-section .slider-nav .slick-prev{right:inherit; left:60px;}
html[dir="rtl"] .success-section .main-title{margin-right: 0px;}
html[dir="rtl"] .cheader-btn-arrow, html[dir="rtl"] .sta-btn-icon{transform: rotate(180deg);}

html[dir="rtl"] .pf-eligibility-card li{padding-right: 1.4rem;}
html[dir="rtl"] .pf-eligibility-card li::before{right: 0; left: inherit;}

@media (max-width: 576px) {
html[dir="rtl"] .pf-eligibility-card li{text-align: right;}
html[dir="rtl"] .impact-card-heading{font-size: 16px;}
}