/* ==================================
   ABOUT HERO SECTION
================================== */

/* .hero-about{
  position: relative;
  background:linear-gradient(120deg,#5f4bd8,#8f63e7,#f3a2c6);
  padding: 100px 0 140px;
  overflow: hidden;
  color: #fff;
} */

/* =================================
   HERO SECTION
================================= */

.hero-about {
	position: relative;
	padding: 100px 0 120px;
	background: linear-gradient(135deg, #705beb, #8f63e7, #f3a2c6);
	color: #fff;
	overflow: hidden;
}

/* center content */

.hero-wrapper {
	display: flex;
	justify-content: center;
	text-align: center;
}

.hero-text {
	max-width: 850px;
	position: relative;
	z-index: 2;
}

.hero-text h1 {
	font-size: 42px;
	font-weight: 900;
	margin-bottom: 25px;
	color: #fff;
}

.hero-text p {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 18px;
	opacity: .95;
}

/* button */

.hero-btn {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 30px;
	background: #ffffff;
	color: #93296f;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: .3s;
}

.hero-btn:hover {
	background: #f3f3f3;
}

/* =================================
   FLOATING SHAPES
================================= */

.shape {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	animation: floatShape 5s infinite ease-in-out;
}

.shape1 {
	width: 180px;
	height: 180px;
	top: 60px;
	left: 10%;
}

.shape2 {
	width: 120px;
	height: 120px;
	bottom: 150px;
	right: 12%;
	animation-delay: 2s;
}

.shape3 {
	width: 90px;
	height: 90px;
	top: 140px;
	right: 25%;
	animation-delay: 4s;
}

.shape4 {
	width: 130px;
	height: 130px;
	top: 50%;
	left: 35%;
	animation-delay: 4s;
}

@keyframes floatShape {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-25px);
	}

	100% {
		transform: translateY(0px);
	}
}



/* @keyframes floatShape{
  0%{transform:translateX(0px);}
  25%{transform:translateY(-20px);}
  50%{transform:translateX(-40px);}
  75%{transform:translateY(20px);}
  100%{transform:translateX(0px);}
} */


/* =================================
   WAVES
================================= */

.wave-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.waves {
	width: 100%;
	height: 120px;
}

.wave-parallax use {
	animation: waveMove 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.wave-parallax use:nth-child(1) {
	animation-delay: -2s;
	animation-duration: 7s;
}

.wave-parallax use:nth-child(2) {
	animation-delay: -3s;
	animation-duration: 10s;
}

.wave-parallax use:nth-child(3) {
	animation-delay: -4s;
	animation-duration: 13s;
}

.wave-parallax use:nth-child(4) {
	animation-delay: -5s;
	animation-duration: 20s;
}

@keyframes abt-waveMove {
  0% {
    transform: translate3d(-200px, 0, 0)
  }

  100% {
    transform: translate3d(-20px, 0, 0)
  }
}


/* =================================
   HERO GLOW EFFECT
================================= */

.hero-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle,
			rgba(255, 255, 255, 0.25) 0%,
			rgba(255, 255, 255, 0.12) 40%,
			rgba(255, 255, 255, 0) 70%);
	transform: translate(-50%, -50%);
	filter: blur(60px);
	animation: glowMove 8s ease-in-out infinite;
	z-index: 1;
}

@keyframes glowMove {
	0% {
		transform: translate(-50%, -50%) scale(1);
	}

	50% {
		transform: translate(-50%, -55%) scale(1.1);
	}

	100% {
		transform: translate(-50%, -50%) scale(1);
	}
}

.hero-text {
	position: relative;
	z-index: 2;
}







/* SECTION BACKGROUND */

.about-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #fff, #f6e7ff);
	position: relative;
}

/* TITLE */

.about-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 40px;
	color: #2c2c54;
}

/* IMAGE CARD */

.about-image-card {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-image-card img {
	width: 100%;
	display: block;
}

/* ABOUT TEXT */

.about-text {
	font-size: 16px;
	line-height: 1.7;
	color: #555;
	margin-bottom: 20px;
}

/* INFO CARDS */

.info-card {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #fff;
	padding: 16px;
	border-radius: 12px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.info-card i {
	font-size: 22px;
	color: #fff;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}

/* ICON COLORS */

.orange i {
	background: #ff7a18;
}

.pink i {
	background: #ff3d81;
}

.blue i {
	background: #2d7ff9;
}

.green i {
	background: #32c36c;
}







/* =============================
   STATS SECTION
============================= */

.stats-section {
	padding: 90px 0;
	background: linear-gradient(135deg, #4b2c82, #93296f, #c94fa1);
}

/* stat card */

.stat-card {
	position: relative;
	background: #fff;
	padding: 35px 20px;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	transition: 0.3s;
	cursor: pointer;
}

.stat-card:hover {
	transform: translateY(-10px);
}

/* ICON */

.stat-icon {
	width: 65px;
	height: 65px;
	margin: auto;
	margin-bottom: 15px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #fff;
}

/* DIFFERENT COLORS */

.stat1 .stat-icon {
	background: linear-gradient(135deg, #ff7a18, #ffb347);
}

.stat2 .stat-icon {
	background: linear-gradient(135deg, #ff3d81, #ff7eb3);
}

.stat3 .stat-icon {
	background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.stat4 .stat-icon {
	background: linear-gradient(135deg, #00c853, #64dd17);
}

/* COUNTER */

.stat-card h2 {
	font-size: 38px;
	font-weight: 700;
	color: #4b2c82;
	display: inline-block;
}

.plus {
	font-size: 24px;
	font-weight: 700;
	color: #4b2c82;
}

/* TEXT */

.stat-card p {
	margin-top: 10px;
	color: #555;
	font-weight: 500;
}

/* =============================
   MOVING WAVE
============================= */

.abt-wave {
	position: absolute;
	bottom: -40px;
	left: 0;
	width: 200%;
	height: 120px;
	background: rgba(0, 0, 0, 0.04);
	border-radius: 40%;
	animation: abt-waveMove 6s infinite linear;
}

.stat1 .abt-wave {
	background: rgba(255, 122, 24, 0.15);
}

.stat2 .abt-wave {
	background: rgba(255, 61, 129, 0.15);
}

.stat3 .abt-wave {
	background: rgba(54, 209, 220, 0.15);
}

.stat4 .abt-wave {
	background: rgba(0, 200, 83, 0.15);
}

@keyframes abt-waveMove {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* responsive */

@media (max-width:768px) {

	.stat-card {
		padding: 30px 15px;
	}

	.stat-card h2 {
		font-size: 30px;
	}

	.stat-icon {
		width: 55px;
		height: 55px;
		font-size: 24px;
	}

}




/* ===============================
   DIRECTORS SECTION
================================ */

/* DIRECTOR SECTION */

.about-directors {
	background: linear-gradient(180deg, #fff, #f6e7ff);
}

.directors {
	padding: 90px 0;
	background: linear-gradient(135deg, #f4f6ff, #eef2ff);
	cursor: pointer;
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	/* margin-bottom:50px; */
	color: #2c2c54;
}

/* card */

.director-card {
	background: #fff;
	padding: 30px 25px;
	border-radius: 18px;
	text-align: center;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	height: 100%;
}

.director-card:hover {
	transform: translateY(-8px);
}

/* image */

.director-img {
	width: 120px;
	height: 120px;
	margin: auto;
	margin-bottom: 15px;
	border-radius: 50%;
	padding: 5px;
	background: linear-gradient(135deg, #4b2c82, #c94fa1);
}

.director-img img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #fff;
}

/* name */

.director-card h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 4px;
}

/* role */

.director-role {
	display: block;
	font-weight: 600;
	color: #93296f;
	margin-bottom: 12px;
}

/* message */

.director-msg {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	text-align: justify;
}

/* responsive */

@media(max-width:768px) {

	.section-title {
		font-size: 26px;
	}

	.director-msg {
		font-size: 14px;
	}

}



/* ==========================
   VISION MISSION SECTION
========================== */

.vision-mission {
	padding: 90px 0;
	background: linear-gradient(180deg, #f6e7ff, #fff );
}

/* card */

.vm-box {
	position: relative;
	background: #fff;
	padding: 40px 35px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: 0.4s;
	overflow: hidden;
	cursor: pointer;
}


.vm-box:hover {
	transform: translateY(-10px);
}

/* icon */

.vm-icon {
	width: 75px;
	height: 75px;
	margin: auto;
	margin-bottom: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #fff;
	background: linear-gradient(135deg, #4b2c82, #c94fa1);
}

/* title */

.vm-box h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #333;
}

/* text */

.vm-box p {
	color: #666;
	line-height: 1.7;
	font-size: 16px;
}

/* wave background */

.vm-box{
position:relative;
overflow:hidden;
}

.vm-box::before{
content:"";
position:absolute;
bottom:-60px;
left:-20%;
width:140%;
height:120px;
border-radius:50%;
}

.vision-box::before{
background:linear-gradient(
135deg,
rgba(54,209,220,0.25),
rgba(91,134,229,0.15)
);
}

.mission-box::before{
background:linear-gradient(
135deg,
rgba(255,122,24,0.25),
rgba(255,61,129,0.15)
);
}
/* hover glow */

.vm-box::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	transition: 0.5s;
}

.vm-box:hover::after {
	left: 100%;
}

/* responsive */

@media(max-width:768px) {

	.vm-box {
		padding: 30px 20px;
	}

	.vm-icon {
		width: 65px;
		height: 65px;
		font-size: 26px;
	}

	.vm-box h3 {
		font-size: 20px;
	}

}

/* ICON BASE */

.vm-icon {
	width: 75px;
	height: 75px;
	margin: auto;
	margin-bottom: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #fff;
}

/* VISION COLOR */

.vision-icon {
	background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

/* MISSION COLOR */

.mission-icon {
	background: linear-gradient(135deg, #ff7a18, #ff3d81);
}

/* VISION WAVE COLOR */

.vision-box::before{
content:"";
position:absolute;
bottom:-60px;
left:-20%;
width:140%;
height:120px;
background:linear-gradient(135deg,
rgba(54,209,220,0.25),
rgba(91,134,229,0.15));
border-radius:50%;
}


/* MISSION WAVE COLOR */

.mission-box::before{
content:"";
position:absolute;
bottom:-60px;
left:-20%;
width:140%;
height:120px;
background:linear-gradient(135deg,
rgba(255,122,24,0.25),
rgba(255,61,129,0.15));
border-radius:50%;
}


/* =====================================================
   PARTNER LOGO SLIDER
===================================================== */




.partner{
	padding-bottom: 40px;
}

.logo-slider {
	overflow: hidden;
	position: relative;
	width: 100%;
	margin-top: 40px;
}

.logo-track {
	display: flex;
	width: calc(220px * 12);
	animation: scroll 25s linear infinite;
}

.partner-item {
	width: 400px;
	height: 100px;
	padding: 20px 30px;
	opacity: .5;
	transition: .3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner-item:hover {
	opacity: 1;
	transform: scale(1.05);
}

.partner-item img {
	display: block;
	margin: 0 auto;
	max-width: 220px
}



@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:900px) {

	.hero-wrapper {
		flex-direction: column;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 32px;
	}

	.hero-image img {
		width: 380px;
	}

}

@media(max-width:700px) {

	.partner-item img {
		max-width: 150px;
	}

}

@media(max-width:500px) {

	.hero-text h1 {
		font-size: 28px;
	}

	.hero-text p {
		font-size: 15px;
	}

	.hero-image img {
		width: 320px;
	}

}