/* career start */

.about-content h2 {
	font-size: 30px;
}

.bg-img-attachment {
	background: linear-gradient(rgb(58 57 57 / 70%), rgb(50 49 49 / 70%)), url(../images/bg-fixed.jpeg) center center / cover no-repeat;
	color: #fff;
	background-attachment: fixed;
}

.wwfu-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #1e1e1e;
}

.wwfu-box {
	display: flex;
	gap: 20px;
	padding: 22px;
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid #eee;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	transition: 0.3s ease-in-out;
}

.wwfu-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.icon-wrap {
	width: 65px;
	height: 65px;
	border-radius: 12px;
	background: #98a1c238;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: #333f86;
	flex-shrink: 0;
}

.wwfu-heading {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 6px 0;
	color: #111;
}

.wwfu-text {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
}

.newhire-title {
	font-size: 33px;
	font-weight: 800;
	margin-bottom: 40px;
	color: #1e1e1e;
}

.newhire-item {
	display: flex;
	gap: 20px;
	padding-bottom: 25px;
	border-bottom: 1px solid #e8e8e8;
	height: 100%;
}

.icon-circle {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: #98a1c238;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #333f86;
	flex-shrink: 0;
}

.newhire-head {
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 6px;
	color: #111;
}

.newhire-text {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
}

.w-fit {
	width: fit-content;
}

/* career end */

/* Contact start */
.contact-form {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-content {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h6 {
	font-size: 17px;
	text-transform: capitalize;
	font-weight: 600;
	color: #d6292ae0;
}

.contact-form h2 {
	font-size: 30px;
	text-transform: capitalize;
	font-weight: 600;
	color: #000;
}

.contact-form p {
	font-size: 15px;
	text-transform: capitalize;
	font-weight: 500;
	color: #000000;
	letter-spacing: 0.1px;
}

.contact-form .border-gray {
	border-color: #f2f2f27d;
}

.contact-form-data label {
	font-size: 15px;
	text-transform: capitalize;
	font-weight: 500;
	color: #000000;
	letter-spacing: 0.1px;
	margin-bottom: 6px;
}

.contact-form-data input,
.contact-form-data textarea {
	border: none;
	background-color: #f2f2f27d;
	padding-top: 12px;
	padding-bottom: 12px;
}

.email-info,
.phone-info,
.address-info {
	background-color: #f2f2f27d;
}

.email-info span,
.phone-info span,
.address-info span {
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 500;
	color: #000000;
	letter-spacing: 0.1px;
}

.email-info a,
.phone-info a,
.address-info a {
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 500;
	color: #6c6a72;
	letter-spacing: 0.1px;
}

.submit-btn {
	position: relative;
	color: #2c3a83;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	display: inline-block;
	font-family: Montserrat, sans-serif;
	text-transform: capitalize;
	padding: 8px 24px;
	border: 2px solid #2c3a83;
	background: transparent;
	cursor: pointer;
	transition: .02s .2s cubic-bezier(.1, 0, .1, 1);
	overflow: hidden;
}

.submit-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 100%;
	bottom: 0;
	background: #2c3a83;
	transition: .3s .2s cubic-bezier(.1, 0, .1, 1),
		left .3s cubic-bezier(.1, 0, .1, 1);
	z-index: -1;
}

.submit-btn::after {
	content: "";
	background-image: url("../images/arrow.png");
	background-size: 1.3em;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: calc(100% - 3em);
	right: 3em;
	bottom: 0;
	transition: right .3s cubic-bezier(.1, 0, .1, 1);
	filter: invert(1);
}

.submit-btn:hover {
	padding-right: 3.5em;
}

.submit-btn:hover::before {
	left: calc(100% - 3em);
	right: 0;
	transition: .3s cubic-bezier(.1, 0, .1, 1),
		left .3s .2s cubic-bezier(.1, 0, .1, 1);
}

.submit-btn:hover::after {
	right: 0;
	transition: right .3s .2s cubic-bezier(.1, 0, .1, 1);
}

.contact-info-icon {
	background-color: #2c3a83;
	color: #fff;
	padding: 10px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.address-info p {
	font-size: 16px;
}

.branch-office-col {
	position: relative;
	overflow: hidden;
}

.branch-office-col img {
	border-radius: 50%;
	margin: 0 auto;
	display: block;
	transition: transform 0.5s ease;
}

.branch-office-col:hover img {
	transform: rotate(2deg);
}

.branch-office-col::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 50%;
	background: linear-gradient(105deg,
			transparent 0%,
			transparent 38%,
			rgba(255, 255, 255, 0.35) 50%,
			transparent 62%,
			transparent 100%);
	transform: translateX(-100%) skewX(-12deg);
	transition: transform 0.6s ease;
	pointer-events: none;
}

.branch-office-col:hover::after {
	transform: translateX(200%) skewX(-12deg);
}

.branch-office-col {
	margin: 15px 0;
}

.branch-office-col h3 {
	font-size: 23px;
	font-weight: 500;
	text-align: center;
	color: #293b81;
	margin: 15px 0 5px 0;
}

.branch-office-col p {
	text-align: center;
	margin-bottom: 3px;
	color: #333;
}

.branch-office-col .unerlinee {
	position: relative;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 15px;
	color: #000;
}

.branch-office-col p a {
	color: #2c3a83;
}

.branch-office-col .unerlinee:after {
	content: "";
	width: 80px;
	height: 1.6px;
	background: #222;
	margin: 0 auto;
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
}

.headding2 {
	color: #333;
}

/* contact us end */


/* Job Update page start */
:root {
	--primary-red: #2c3b85;
	--primary-blue: #2c3b85;
	--primary-blue-light: rgba(44, 59, 133, 0.08);
	--primary-red-light: rgba(210, 44, 46, 0.08);
}

.job-update-hero {

	color: #333;
	padding: 0 28px 24px;
	text-align: center;

}

.job-update-hero h2 {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 6px 0;
	letter-spacing: -0.02em;
}

.job-update-hero p {
	margin: 0;
	opacity: 0.9;
	font-size: 1rem;
}

/* LEFT LIST */
.premium-left-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-right: 20px;
}

.left-job-item {
	padding: 18px 20px;
	border-radius: 14px;
	background: #fff;
	border: 2px solid #eee;
	cursor: pointer;
	transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
}

.left-job-item.active {
	border-color: var(--primary-blue);
	background: var(--primary-blue-light);
	box-shadow: 0 6px 20px rgba(44, 59, 133, 0.12);
}

.left-job-item.active::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: #263479;
	border-radius: 0 4px 4px 0;
}

.left-job-item:hover:not(.active) {
	border-color: rgba(44, 59, 133, 0.35);
	background: #fafbfd;
	transform: translateX(4px);
}

.left-job-heading h5 {
	margin: 0;
	font-size: 1.02rem;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.35;
	padding-left: 2px;
}

.left-company {
	font-size: 0.875rem;
	color: #555;
	margin: 6px 0 12px 0;
	padding-left: 2px;
}

.left-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.left-meta span {
	font-size: 0.8125rem;
	color: #444;
	display: flex;
	align-items: center;
	gap: 6px;
}

.left-meta i {
	font-size: 0.875rem;
	color: var(--primary-blue);
}

/* RIGHT PANEL */
.premium-job-panel {
	background: #fff;
	padding: 28px 32px;
	border-radius: 16px;
	border: 1px solid #e8eaef;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	min-height: 420px;
}

.premium-title {
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--primary-blue);
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.premium-company {
	font-size: 0.9375rem;
	color: #555;
	display: flex;
	align-items: center;
	gap: 8px;
}

.premium-company i {
	color: var(--primary-red);
}

.premium-meta {
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.premium-meta span {
	font-size: 0.9375rem;
	color: #444;
	display: flex;
	gap: 6px;
	align-items: center;
}

.premium-meta i {
	color: var(--primary-blue);
}

.premium-section {
	margin-top: 28px;
}

.premium-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.premium-bar {
	width: 5px;
	height: 32px;
	border-radius: 4px;
	background: linear-gradient(180deg, var(--primary-red), var(--primary-blue));
}

.premium-head h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-blue);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.premium-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.premium-list li {
	margin-bottom: 10px;
	font-size: 0.96875rem;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	line-height: 1.5;
}

.premium-list i {
	color: #152675;
	/* background: var(--primary-red); */
	padding: 4px 6px;
	border-radius: 6px;
	font-size: 0.7rem;
	margin-top: 3px;
	flex-shrink: 0;
}

.premium-desc {
	line-height: 1.7;
	font-size: 0.96875rem;
	color: #333;
	margin: 0;
}

.premium-apply-btn {
	margin-top: 28px;
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 600;
	background: linear-gradient(135deg, var(--primary-red), #b02527);
	border: none;
	border-radius: 10px;
	color: #fff;
	transition: all 0.25s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(210, 44, 46, 0.35);
}

.premium-apply-btn:hover {
	background: linear-gradient(135deg, #b02527, var(--primary-red));
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(210, 44, 46, 0.4);
}

.premium-apply-btn i {
	font-size: 0.9rem;
}

.job-panel-block {
	display: none;
}

.job-panel-block.active {
	display: block;
}

.job-placeholder-msg {
	margin-top: 24px;
	padding: 20px;
	background: var(--primary-blue-light);
	border-radius: 12px;
	color: var(--primary-blue);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* upcoming event page start */
.upcoming-event-card {
	background: #fff;
	border-radius: 10px;
	padding: 0px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.upcoming-event-card p {
	text-align: left;
}

.upcoming-event-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
}

.upcoming-event-card h3 {
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
}

.upcoming-event-card p {
	font-size: 16px;
	margin-top: 10px;
}

.upcoming-event-card a {
	margin-top: 20px;
}

.upcoming-event-card {
	overflow: hidden;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.upcoming-event-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.upcoming-event-card-img {
	position: relative;
	overflow: hidden;
}

.upcoming-event-card img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.5s ease;
}

.upcoming-event-card:hover img {
	transform: scale(1.06);
	filter: brightness(1.05);
}

.upcoming-event-card-img::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 60%;
	height: 100%;
	background: linear-gradient(105deg,
			transparent 0%,
			transparent 35%,
			rgba(255, 255, 255, 0.35) 50%,
			transparent 65%,
			transparent 100%);
	transform: translateX(-100%) skewX(-12deg);
	transition: transform 0.7s ease;
	pointer-events: none;
}

.upcoming-event-card:hover .upcoming-event-card-img::after {
	transform: translateX(200%) skewX(-12deg);
}

/* upcoming event page end */

/*services page start */

.graybg {
	background-color: #f7f7f7;
}

.graybg .form-group {
	background: none;
}

.service-catagery-list {
	background-color: #f5f5f5;
	border: solid 2px #333;
	padding: 25px;
	border-radius: 15px;
	margin-bottom: 30px;
}

.service-catagery-list h3 {
	font-size: 22px;
	text-transform: capitalize; color: #293b81;
	margin-bottom: 10px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	margin-bottom: 15px;
	transition: all 0.3s ease-out;
}

.service-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.service-catagery-list ul li a {
	display: block;
	position: relative;
	background-color: #fff;
	color: #333;
	text-transform: capitalize;
	border-radius: 10px;
	font-weight: 700;
	padding: 13px 40px 13px 15px;
	transition: all 0.3s ease-out;
	text-align: left;
}

.service-catagery-list ul li a::after {
	content: '\f061';
	font-family: 'Font Awesome 6 Pro Solid';
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	color: #000;
	transition: all 0.3s ease-out;
}

.service-catagery-list ul li:hover a {
	background-color: #283d87;
	color: #fff;
}

.service-catagery-list ul li:hover a::after {
	color: #fff;
}

.invester-menu-scrollbar ul {
	overflow-y: scroll;
	height: 400px;
}

.service-form .form-control {
	font-size: 15px;
	background: #fff;
}

.service-form .form-group {
	margin-bottom: 15px;
}

.graybg {
	background-color: #f7f7f7;
}

.radius15 {
	border-radius: 15px;
}

.service-form {
	padding: 25px;
	background: #273c84;
}

.service-form h3 {
	text-align: center;
	color: #fff;
}


.position-fixed-right {
	top:90px;
	position: sticky;
}

.img-sticy {
    position: sticky;
    top: 120px;
}

.headding22 {
	font-size: 27px;
	font-weight: 600;
	color: #1f3180;
	margin-bottom: 10px;
}

.headding33 {
	font-size: 22px;
	color: #333;
}

.list {
	padding: 0;
	margin: 0;
}

.list li {
	list-style: none;
	color: #6c6a72;
	text-align: left;
	font-size: 17px;
	position: relative;
	line-height: 28px;
	font-weight: 500;
	margin-bottom: 10px;
	padding-left: 32px;
}

.list li:before {
	color: #fff;
	position: absolute;
	left: 0;
	content: "\f061";
	font-family: FontAwesome;
	background: #1f3180;
	width: 25px;
	height: 25px;
	text-align: center;
	border-radius: 50%;
	font-size: 12px;
	line-height: 23px;
	top: 2px;
}

.feature-card {
	display: flex;
	gap: 15px;
	padding: 20px;
	background: #f8f9fb;
	border-radius: 8px;
	border: 1px solid #e8eef5;
	transition: 0.3s ease;
	margin-bottom: 30px;
	min-height: 175px;
}

.feature-icon {
	width: 50px;
	height: 50px;
	background: #98a1c238;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #333f86;
	flex-shrink: 0;
}

.feature-content h5 {
	font-size: 16px;
	font-weight: 700;
	color: #111;
	margin: 0 0 6px 0;
}

.feature-content p {
	margin: 0;
	line-height: 1.5;
}

.feature-card p {
	text-align:justify;
}

/*Service page end*/

/* team page start */
.product-grid {
	text-align: center;
	transition: all 0.3s ease 0s;
}

.product-grid .product-image {
	overflow: hidden;
	position: relative;
	margin: 10px;
}

.product-grid .product-image a.image {
	display: block;
}

.product-grid .product-image img {
	width: 100%;
	height: auto;
}

.product-image .pic-1 {
	transform: rotateY(0);
	transition: all 0.5s ease-out 0s;
}

.product-grid:hover .product-image .pic-1 {
	opacity: 0;
}

.product-image .pic-2 {
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: rotateY(-90deg);
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.5s ease-out 0s;
}

.product-grid:hover .product-image .pic-2 {
	opacity: 1;
	transform: rotateY(0deg);
}

.product-grid .product-links {
	padding: 0;
	margin: 0;
	list-style: none;
	position: absolute;
	bottom: 50px;
	right: 15px;
	z-index: 1;
}

.product-grid .product-links li {
	margin: 0 0 6px;
	opacity: 0;
	transform: translate(70%, 0);
	transition: all 0.7s ease;
}

.product-grid .product-links li:nth-child(1) {
	transition-duration: 0.1s;
}

.product-grid .product-links li:nth-child(2) {
	transition-duration: 0.2s;
}

.product-grid .product-links li:nth-child(3) {
	transition-duration: 0.3s;
}

.product-grid .product-links li:last-child {
	margin: 0;
}

.product-grid:hover .product-links li {
	opacity: 1;
	transform: translate(0%, 0%);
}

.product-grid .product-links li a {
	color: #fff;
	background: #0270ad;
	font-size: 16px;
	text-align: center;
	line-height: 40px;
	height: 40px;
	width: 40px;
	border-radius: 5px 5px;
	display: block;
	box-shadow: 0 5px 10px 0 rgba(91, 91, 91, .1);
	transition: all .5s ease 0s;
}

.product-grid .product-links li a i {
	line-height: inherit;
}

.product-grid .add-to-cart {
	color: #fff;
	background: #293b81;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 10px 20px;
	display: block;
	opacity: 0;
	transform: translateY(-40px);
	transition: all 0.5s;
	z-index: 1;
}

.product-grid:hover .add-to-cart {
	opacity: 1;
	transform: translateY(0);
}

.product-grid .product-content {
	padding: 0px 15px 0;
	transform: translateY(-40px);
	transition: all 0.5s;
}

.product-grid:hover .product-content {
	transform: translateY(0);
}

.product-grid .category {

	font-size: 17px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 4px;
	display: block;
}


.product-grid .title {

	font-size: 21px;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 0.5px;
	margin: 0 0 0px;
	color: #333;
}

.product-grid a {
	cursor: pointer;
}


.logo_color {
	color: #293b81;
}

.team-data {
	border-left: solid #293b81 10px;
	padding-left: 15px;
}

.team-data p {
	margin-bottom: 0;
}

/* team page end */

/* privacy page start */
.privacy-policy-container {
	background: #ffffff;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.privacy-intro {
	font-size: 18px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 40px;
	padding: 25px;
	background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf1 100%);
	border-left: 5px solid #333f86;
	border-radius: 8px;
}

.privacy-section {
	margin-bottom: 25px;
}

.section-title {
	font-size: 24px;
	font-weight: 700;
	color: #1e1e1e;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.section-icon {
	width: 50px;
	height: 50px;
	background: #98a1c238;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #333f86;
	flex-shrink: 0;
}

.section-content {
	color: #555;
	font-size: 15px;
	line-height: 1.8;
}


.privacy-list {
	list-style: none;
	padding-left: 0;
	margin: 0px 0 20px 0;
}

.privacy-list li {
	padding: 12px 0 0px 35px;
	font-size: 17px;


	line-height: 1.6;
	position: relative;
}

.privacy-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #333f86;
	font-weight: 700;
	font-size: 18px;
}

.highlight-box {
	background: #f0f3ff;
	padding: 20px;
	border-left: 4px solid #333f86;
	border-radius: 8px;
	margin: 20px 0;
}

.highlight-box strong {
	color: #333f86;
	font-size: 18px;
}


.privacy-contact-section {
	background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf1 100%);
	padding: 30px;
	border-radius: 10px;
	border-left: 5px solid #333f86;
}

.privacy-contact-section .section-icon {
	background: #98a1c238;
	color: #333f86;
}

/* privacy page end */

/* service Products Section Styling */

.products-section p {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 10px;
}

.products-section b {
	color: #1a5490;
	font-size: 18px;
}

/* Column spacing for products */
.products-section .row .col-md-4 {
	margin-bottom: 30px;
}

/* Product Item Card Styling */
.product-item {
	display: flex;
	flex-direction: column;
	height: auto;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
	margin-top: 30px;
}

.product-item .video-box {
	border-radius: 10px 10px 0 0;
}

.product-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 20px rgba(26, 84, 144, 0.2);
}

.product-item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-item:hover img {
	transform: scale(1.05);
}

.product-content {
	padding: 25px 20px;
	display: block;
	flex-direction: column;
	flex-grow: 1;
	background: #fff;
}

.product-title {
	font-size: 20px;
	font-weight: 700;
	color: #283d87;
	margin: 0 0 5px 0;
	line-height: 1.4;
}

.product-description {

	margin: 0 0 15px 0;
	text-align: left;

}

.product-link {
	display: inline-flex;
	align-items: center;
	color: #283d87;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	/* margin-top: auto; */
}

.product-link i {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.product-item:hover .product-link {
	color: #0d3563;
}

.product-item:hover .product-link i {
	transform: translateX(5px);
}

/* service Products Section Styling */

/* investor page */
.bod-section {
	background: #fff;
	border-radius: 18px;
	border: 1px solid #e8eaef;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
	margin-bottom: 40px;
	overflow: hidden;
}

.bod-section-header {
	padding: 20px 15px 17px;
	border-bottom: 1px solid #e8eaef;
}

.bod-section-header h3 {
	font-size: 1.35rem;
	font-weight: 700;
	color: #2c3b85;
	margin: 0 0 8px 0;
	display: flex;
	align-items: center;
	gap: 12px;
}


.table-responsive-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.bod-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.bod-table thead {
	background: #1a2560;
	color: #fff;
}

.bod-table th {
	padding: 16px 20px;
	text-align: left;
	font-weight: 600;
	white-space: nowrap;
}

.bod-table th:first-child {
	border-radius: 0;
}

.bod-table tbody tr {
	border-bottom: 1px solid #e8eaef;
	transition: background 0.2s ease;
}

.bod-table tbody tr:hover {
	background: var(--primary-blue-light);
}

.bod-table tbody tr:last-child {
	border-bottom: none;
}

.bod-table td {
	padding: 16px 20px;
	color: #333;
	vertical-align: middle;
}

.bod-table td:first-child {
	font-weight: 600;
	color: var(--primary-blue);
}

.bod-table .designation-badge {
	display: inline-block;
	padding: 6px 12px;
	background: #eeeef0;
	color: #2c3b85;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 500;
}

.charter-inner {
	padding: 28px 32px 32px;
}

/* investor end */

/* power solution page start */
/* What's New – card hover zoom */
.inner-whats-new .service-slider-box {
	position: relative;
	overflow: hidden;
	min-height: 390px;
}

.our-excellence .service-slider-box {
	min-height: 390px;
}

.our-excellence .service-slider-box .main-btn {
	left: 0;
	bottom: 0;
	position: absolute;
}

.inner-whats-new .service-slider-box-img {
	overflow: hidden;
	border-radius: 12px;
}

.inner-whats-new .service-slider-box .bottom-0 {
	position: absolute;
	left: 0;
}

.inner-whats-new .service-slider-box img {
	overflow: hidden;
	transition: transform 0.5s ease;
	transform-origin: center center;
}

.inner-whats-new .service-slider-box:hover img {
	transform: scale(1.08);
}

.portfoliobox{margin:10px;}
/* Main Card */
.image-card {

	position: relative;
	overflow: hidden;
	border-radius: 12px;}
.image-card .video-box{cursor:auto;}
.body-color {
  position: relative;
  text-decoration: none;
}
.body-color{ color:#3c3a3e; position: relative; display: inline-block; margin-top: 10px;}


.body-color:hover{color: #293b81;}
 



.body-color::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #293b81;
  transform: scaleX(0);         /* hidden initially */
  transform-origin: center;     /* center se expand hoga */
  transition: transform 0.3s ease;
}

.body-color:hover::after {
  transform: scaleX(1);         /* full width */
}

/* Image */
.image-card img {
	width: 100%;

	object-fit: cover;
	transition: transform 0.5s ease;
}

/* Hover Zoom */
.image-card:hover img {
	transform: scale(1.15);
}

.image-card a {
	color: #fff;
	;
}

/* Overlay */
.overlayy {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(to top, rgb(12 10 10), rgb(0 0 0 / 0%));
	color: #fff;
}

/* Title */
.overlayy h3 {
	margin: 0;
	font-size: 25px;
	text-align: center;
}

.our-team-inner {
	text-align: center;
	margin: 10px;

}

.our-team-inner .pic {
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}

.our-team-inner .pic:before,
.our-team-inner .pic:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 13px solid #e6e5e5;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.our-team-inner .pic:after {

	z-index: 1;
	transform: rotate(-10deg);
	transition: all 0.5s ease 0s;
	border-color: #293b81 #e6e5e5 #e6e5e5 #293b81;
}

.our-team-inner:hover .pic:after {
	transform: rotate(350deg);
	border-color: #d3282b #e6e5e5 #e6e5e5 #d3282b;
}

.our-team-inner img {
	width: 100%;
	height: auto;
}

.our-team-inner .title {
	font-size: 24px;
	font-weight: bold;
	color: #222;
	padding-bottom: 10px;
	margin: 15px 0 10px 0;
	position: relative;
	text-align: center;
}

.our-team-inner .title:after {
	content: "";
	width: 30px;
	height: 2px;
	background: #222;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.our-team-inner .post {
	display: block;
	font-size: 15px;
	font-style: italic;
	color: #777;
}

.our-team-inner p {
	color: #777;
	text-align: center;
	font-size: 18px;
	margin: 0;
}

.pic {
	position: relative;
	overflow: hidden;
}

/* shine element */
.pic .shine {
	position: absolute;
	top: -20%;
	left: -50%;
	width: 50%;
	height: 140%;
	background: linear-gradient(120deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.75) 50%,
			rgba(255, 255, 255, 0) 100%);
	transform: skewX(-20deg);
	pointer-events: none;
	opacity: 0;
}

/* hover trigger */
.our-team-inner:hover .pic .shine {
	opacity: 1;
	animation: imgShine 0.9s forwards;
}

/* animation */
@keyframes imgShine {
	from {
		left: -50%;
	}

	to {
		left: 120%;
	}
}

.testimonial-inner {
	margin: 0 20px 50px;
}

.testimonial-inner .pic {
	display: inline-block;
	width: auto;
	 
	border-radius: 50%;
	margin: 0 15px 0px 0;
}

/* .testimonial-inner .pic img {
	width: 100%;
	height: auto;
	border-radius: 50%;
} */

.testimonial-inner .testimonial-profile {
	display: inline-block;
	position: relative;
	top: -20px;
}

.testimonial-inner .title {
	display: block;
	font-size: 20px;
	font-weight: 600;
	color: #2f2f2f;
	text-transform: capitalize;
	margin: 0 0 7px 0;
}

.testimonial-inner p {
	padding: 20px 22px;
	background: #efefef;
	margin: 0;
	position: relative;
	justify-content: center;
	display: flex;
	align-items: center;
	min-height: 165px;
}

.testimonial-inner p:before,
.testimonial-inner p:after {
	content: "";
	border-width: 18px 0 0 18px;
	border-style: solid;
	border-color: #bbb7b7 transparent transparent;
	position: absolute;
	bottom: -18px;
	left: 0;
}

.testimonial-inner p:after {
	border-width: 18px 18px 0 0;
	left: auto;
	right: 0;
}

/* power solution page end */
/* investor page start */
.invester-icon {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 12px;
	padding: 0;
	border-radius: 15px;
}

.invester-icon i {
	background-color: #2c3b85;
	color: #fff;
	border-radius: 50%;
	padding: 11px;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-bottom: 0;
}

.invester-icon a {
	font-size: 16px;
	font-weight: 500;
	color: #6c6a72;
	letter-spacing: 0.1px;
}

@keyframes blink-colors {

	0%,
	49% {
		color: #2c3b85;
	}

	50%,
	100% {
		color: #000;
	}
}

.blinking-email {
	animation: blink-colors 1s infinite;
}

.invertor-box-pdf {
	padding: 10px;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
	margin-bottom: 30px;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.invertor-box-pdf:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
	transform: translateY(-6px);
}

.invertor-box-pdf h4 {
	font-size: 17px;
	text-align: center;
	margin: 10px 0;
	min-height: 43px;
	color: #333;
}

.invertor-box-pdf .main-btn {
	color: #293b81;
	font-size: 15px;
	font-weight: 500;
	padding: 5px 17px;
	;
}

.invertor-box-pdf .main-btn:hover {
	color: #fff;
}

.invertor-box-pdf img {
	width: 100%;
}

.invertor-box-pdf-h-auto h4 {
	min-height: auto;
}


/* investor page start */
/* past event start */
.past-events-hero {
	background: linear-gradient(135deg, #2c3b85 0%, #1a2560 100%);
	color: #fff;
	padding: 44px 28px;
	border-radius: 20px;
	margin-bottom: 48px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.past-events-hero::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(210, 44, 46, 0.2) 0%, transparent 70%);
	border-radius: 50%;
}

.past-events-hero-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #fff;
	position: relative;
	z-index: 1;
}

.past-events-hero h2 {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 10px 0;
	letter-spacing: -0.02em;
	position: relative;
	z-index: 1;
}

.past-event-card {
	background: #fff;
	border-radius: 18px;
	margin-bottom: 32px;
	border: 1px solid #e8eaef;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: all 0.35s ease;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
}

.past-event-card:hover {
	box-shadow: 0 14px 40px rgba(44, 59, 133, 0.12);
	transform: translateY(-4px);
	border-color: rgba(44, 59, 133, 0.2);
}

.past-event-card-img {
	flex: 0 0 320px;
	min-height: 220px;
	position: relative;
	overflow: hidden;
}

.past-event-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.past-event-card:hover .past-event-card-img img {
	transform: scale(1.08);
}

.past-event-card-img::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 55%;
	height: 100%;
	background: linear-gradient(105deg,
			transparent 0%,
			transparent 38%,
			rgba(255, 255, 255, 0.35) 50%,
			transparent 62%,
			transparent 100%);
	transform: translateX(-100%) skewX(-12deg);
	transition: transform 0.6s ease;
	pointer-events: none;
}

.past-event-card:hover .past-event-card-img::after {
	transform: translateX(200%) skewX(-12deg);
}

.past-event-card-img .event-type-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 8px 14px;
	border-radius: 10px;
	font-size: 0.78rem;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, #c62828 0%, #b02527 100%);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 12px rgba(210, 44, 46, 0.35);
}

.past-event-card-img .event-type-badge.seminar {
	background: linear-gradient(135deg, #2c3b85 0%, #1a2560 100%);
}

.past-event-card-img .event-type-badge.workshop {
	background: linear-gradient(135deg, #0d9488, #0f766e);
}

.past-event-card-img .event-type-badge.fdp {
	background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.past-event-card-body {
	flex: 1;
	min-width: 280px;
	padding: 28px 32px;
	display: flex;
	flex-direction: column;
}

.past-event-card h4 {
	font-size: 1.22rem;
	font-weight: 700;
	color: #1a2560;
	margin: 0 0 16px 0;
	line-height: 1.4;
	display: flex;
	align-items: center;
	gap: 12px;
}

.past-event-card h4 .title-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: #4a5fc1;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4a5fc1;
	font-size: 1.1rem;
}

.past-event-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 24px;
	margin-bottom: 16px;
}

.past-event-meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.88rem;
	color: #555;
	padding: 6px 12px;
	background: #f8f9fc;
	border-radius: 8px;
}

.past-event-meta i {
	color: #b02527;
	font-size: 0.9rem;
}

.past-event-card p {
	font-size: 0.94rem;
	color: #444;
	line-height: 1.7;
	margin: 0 0 10px 0;
}

.past-event-card p:last-of-type {
	margin-bottom: 0;
}

.past-event-card ul {
	margin: 10px 0 0 0;
	padding: 0px;
	font-size: 0.94rem;
	color: #444;
	line-height: 1.65;
}

.past-event-card ul li {
	margin-bottom: 5px;
	position: relative;
	padding-left: 20px;
}

.past-event-card .topic-label {
	font-weight: 600;
	color: #1a2560;
	margin-top: 16px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.past-event-card .topic-label i {
	color: #b02527;
	font-size: 0.9rem;
}

/* past event end */

.text-right-d {
	text-align: right;
}

.w-auto {
	width: auto;
}

.inner-page .headdin11 {
	margin-bottom: 15px; line-height: 1.3;
}

.past-event-card-body ul li:before {
	color: #000;
	position: absolute;
	left: 0;
	content: "\f061";
	font-family: 'Font Awesome 6 Pro Solid';
}

 
.product-item{
	height: 95%;
}
.product-tools{
	text-align: left;
}

.color-grey{   color: #979696;
    font-style: italic; } 
	.semiconductor-solutions .feature-card{ min-height: 10px;}

	.border-line{ border-bottom: solid 1px #ddd; margin-bottom: 15px; padding-bottom: 40px;}

.closing-line p { margin-bottom:0px; font-size: 16px; line-height: 1.6; text-align: left;}
/* media start RRR */
@media only screen and (max-width:991px) {

.inner-whats-new .service-slider-box .bottom-0{ position: static;} 
.image-card{ margin-bottom:25px}  
.position-fixed-right {
	top:0px;
	position:static;
}
.headding22 {
	font-size: 21px;

}
.headding33{ font-size:19px;}
}

@media only screen and (max-width:680px) {

	.team-slider .owl-item {
		display: block;
		margin: 0 auto;	}
 

.our-team-inner .title {
	font-size: 20px;
}

.our-team-inner p {
	font-size: 16px;
}

.our-excellence .service-slider-box .main-btn {
	position: relative
}
}

@media only screen and (max-width:575px) {
	 .product-grid .product-image{ width: 256px; margin:0 auto}

	.product-grid .product-image img {
		width: auto;
	}
}


/* media end RRR */

 