
html,
body {
	height: 100%;
	font-family: "Libre Franklin", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Libre Franklin", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 16px;
	font-family: "Libre Franklin", sans-serif;
	color: #b3b3b3;
	font-weight: 400;
	line-height: 26px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #fff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title span {
	color: #e32879;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.section-title h2 {
	font-size: 45px;
	color: #ffffff;
	font-weight: 700;
	margin-top: 14px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.spad-2 {
	padding-top: 50px;
	padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	font-size: 16px;
	color: #ffffff;
	background: #e32879;
	display: inline-block;
	font-weight: 700;
	padding: 12px 30px 10px;
}

.site-btn {
	font-size: 16px;
	color: #ffffff;
	font-weight: 700;
	padding: 10px 34px;
	display: inline-block;
	background: #e32879;
	border: 1px solid #e32879;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------
  Transparent Navigation
-----------------------*/

.transparent-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 15px 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

.nav-logo a {
	display: inline-block;
}

.nav-logo img {
	height: 40px;
	width: auto;
}

.nav-menu .nav-links {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
}

.nav-links li a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: color 0.3s ease;
	padding: 10px 0;
}

.nav-links li a:hover,
.nav-links li a.active {
	color: #e32879;
}

/*---------------------
  Modern Hero Section
-----------------------*/

.modern-hero-section {
	position: relative;
	min-height: 70vh;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
	overflow: visible;
	display: flex;
	align-items: center;
	margin-bottom: 150px;
}

.hero-background-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(227, 40, 121, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
	backdrop-filter: blur(1px);
}

.hero-content-wrapper {
	position: relative;
	z-index: 10;
	width: 100%;
	padding: 80px 0;
}

.min-vh-100 {
	min-height: 100vh;
}

/* Hero Text Content */
.hero-text-content {
	padding-right: 40px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	padding: 8px 20px;
	margin-bottom: 30px;
	animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
	font-size: 18px;
	margin-right: 10px;
}

.badge-text {
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-title {
	font-size: 56px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 20px;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.highlight-text {
	color: #e32879;
	text-shadow: 0 0 20px rgba(227, 40, 121, 0.5);
}

.hero-description {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 40px;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 32px;
	font-weight: 800;
	color: #e32879;
	line-height: 1;
	margin-bottom: 5px;
	text-shadow: 0 0 20px rgba(227, 40, 121, 0.5);
}

.stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary-modern {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(45deg, #e32879, #ff6b9d);
	color: #ffffff;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(227, 40, 121, 0.3);
}

.btn-primary-modern:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(227, 40, 121, 0.4);
	color: #ffffff;
	text-decoration: none;
}

.btn-primary-modern i {
	margin-left: 10px;
	transition: transform 0.3s ease;
}

.btn-primary-modern:hover i {
	transform: translateX(5px);
}

.btn-secondary-modern {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(227, 40, 121, 0.6);
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(227, 40, 121, 0.2);
}

/* Modern Contact Form */
.modern-contact-form {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	animation: fadeInUp 0.8s ease-out 1s both;
}

.form-container {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 24px;
	padding: 40px 35px;
	width: 100%;
	max-width: 420px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	text-align: center;
}

.form-header {
	text-align: center;
	margin-bottom: 35px;
}

.form-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, #e32879, #ff6b9d);
	border-radius: 50%;
	margin-bottom: 20px;
	box-shadow: 0 8px 25px rgba(227, 40, 121, 0.3);
}

.form-icon i {
	font-size: 24px;
	color: #ffffff;
}

.form-header h3 {
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}

.form-header p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
}

.modern-form .input-group {
	margin-bottom: 25px;
	text-align: center;
}

.input-wrapper,
.select-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
}

.input-wrapper input,
.select-wrapper select {
	width: 100%;
	padding: 18px 30px;
	background: rgba(255, 255, 255, 0.08);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	text-align: center;
}

.select-wrapper select option {
	background-color: #1a1a1a;
	color: #ffffff;
	padding: 10px;
	border: none;
}

.select-wrapper select option:hover {
	background-color: #e32879;
	color: #ffffff;
}

.select-wrapper select option:checked {
	background-color: #e32879;
	color: #ffffff;
}

.input-wrapper input:focus,
.select-wrapper select:focus {
	outline: none;
	border-color: #e32879;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 0 0 4px rgba(227, 40, 121, 0.15);
}

.input-wrapper label,
.select-wrapper label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	pointer-events: none;
	background: rgba(255, 255, 255, 0.1);
	padding: 0 8px;
	border-radius: 4px;
	text-align: center;
}

.input-wrapper input:focus + label,
.input-wrapper input:valid + label,
.select-wrapper select:focus + label,
.select-wrapper select:valid + label {
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-size: 12px;
	color: #e32879;
	background: rgba(227, 40, 121, 0.1);
}

.input-highlight,
.select-highlight {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(45deg, #e32879, #ff6b9d);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.input-wrapper input:focus ~ .input-highlight,
.select-wrapper select:focus ~ .select-highlight {
	width: 100%;
}

.modern-submit-btn {
	position: relative;
	width: 100%;
	background: linear-gradient(45deg, #e32879, #ff6b9d);
	color: #ffffff;
	border: none;
	padding: 18px 30px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 8px 25px rgba(227, 40, 121, 0.3);
}

.modern-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(227, 40, 121, 0.4);
}

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

.btn-icon {
	margin-left: 10px;
	transition: transform 0.3s ease;
}

.modern-submit-btn:hover .btn-icon {
	transform: translateX(5px);
}

.btn-shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.modern-submit-btn:hover .btn-shine {
	left: 100%;
}

.form-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	text-align: center;
}

.form-note i {
	color: #4ade80;
}

/* Hero Shapes */
.hero-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

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

.shape-1 {
	width: 80px;
	height: 80px;
	top: 20%;
	right: 20%;
	animation-delay: 0s;
}

.shape-2 {
	width: 120px;
	height: 120px;
	bottom: 20%;
	left: 10%;
	animation-delay: 2s;
}

.shape-3 {
	width: 60px;
	height: 60px;
	top: 60%;
	right: 10%;
	animation-delay: 4s;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

/* Responsive Design */
@media (max-width: 991px) {
	.hero-text-content {
		padding-right: 0;
		margin-bottom: 50px;
		text-align: center;
	}
	
	.hero-title {
		font-size: 42px;
	}
	
	.hero-stats {
		justify-content: center;
	}
	
	.hero-buttons {
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.form-container {
		padding: 30px 25px;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 36px;
	}
	
	.hero-description {
		font-size: 16px;
	}
	
	.hero-stats {
		gap: 30px;
	}
	
	.stat-number {
		font-size: 28px;
	}
	
	.btn-primary-modern,
	.btn-secondary-modern {
		padding: 12px 24px;
		font-size: 14px;
	}
	
	.form-container {
		padding: 25px 20px;
		margin: 0 15px;
	}
	
	.form-header h3 {
		font-size: 20px;
	}
	
	.input-wrapper input,
	.select-wrapper select {
		padding: 15px 18px;
		font-size: 14px;
	}
}

/*---------------------
  Scrolling Partners Section
-----------------------*/

.scrolling-partners-section {
	position: relative;
	z-index: 10;
	margin-top: -120px;
	background: transparent;
	padding: 50px 0;
	overflow: hidden;
}

.scrolling-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.scrolling-content {
	display: flex;
	width: calc(350px * 16); /* Adjust based on number of items */
	animation: scroll-left 30s linear infinite;
}

.partner-item {
	flex: 0 0 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 40px;
}

.partner-item img {
	max-width: 280px;
	max-height: 160px;
	object-fit: contain;
	filter: grayscale(100%) brightness(0.8);
	transition: all 0.3s ease;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.partner-item:hover img {
	filter: grayscale(0%) brightness(1);
	transform: scale(1.2);
	box-shadow: 0 12px 35px rgba(227, 40, 121, 0.5);
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Pause animation on hover */
.scrolling-partners-section:hover .scrolling-content {
	animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.scrolling-partners-section {
		margin-top: -60px;
		padding: 30px 0;
	}
	
	.partner-item {
		flex: 0 0 280px;
	}
	
	.partner-item img {
		max-width: 220px;
		max-height: 130px;
	}
	
	.scrolling-content {
		width: calc(280px * 16);
	}
}

/*---------------------
  Large Images Section
-----------------------*/

.large-images-section {
	background: transparent;
	padding: 0;
	position: relative;
	margin-top: -180px;
	z-index: 20;
	padding-bottom: 60px;
}

.large-image-item {
	position: relative;
	margin-bottom: 30px;
	border-radius: 15px;
	height: 300px;
	perspective: 1000px;
	background: transparent;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
	border-radius: 15px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.large-image-item:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 15px;
	overflow: hidden;
}

.flip-card-front {
	background-color: #bbb;
}

.flip-card-back {
	background: linear-gradient(45deg, rgba(227, 40, 121, 0.9), rgba(0, 0, 0, 0.8));
	color: white;
	transform: rotateY(180deg);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
}

.large-image-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.flip-card-back h4 {
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
}

.flip-card-back p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 768px) {
	.large-images-section {
		padding: 0;
		margin-top: -125px;
		padding-bottom: 40px;
	}
	
	.large-image-item {
		margin-bottom: 20px;
		height: 250px;
	}
	
	.large-image-item img {
		height: 100%;
	}
	
	.flip-card-back h4 {
		font-size: 20px;
	}
	
	.flip-card-back p {
		font-size: 14px;
	}
	
	.modern-hero-section {
		min-height: 60vh;
		margin-bottom: 100px;
	}
}

/*---------------------
  About Us Section
-----------------------*/

/* About Us Section - Gen-Z Style */
.about-us-section {
	background: #ffffff;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.about-us-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 15% 20%, rgba(255, 107, 107, 0.03) 0%, transparent 40%),
		radial-gradient(circle at 85% 80%, rgba(72, 202, 228, 0.03) 0%, transparent 40%),
		radial-gradient(circle at 50% 50%, rgba(255, 195, 113, 0.02) 0%, transparent 50%);
	pointer-events: none;
}

.about-content {
	position: relative;
	z-index: 2;
}

.about-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	color: #ffffff;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
	animation: float 3s ease-in-out infinite;
}

.about-badge .emoji {
	font-size: 16px;
	animation: sparkle 2s ease-in-out infinite;
}

.about-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	color: #2c3e50;
	margin-bottom: 30px;
	letter-spacing: -0.5px;
}

.highlight-gradient {
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 3s ease infinite;
}

.about-stats {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.stat-bubble {
	display: flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #2c3e50, #e32879);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(52, 73, 94, 0.3);
	border-radius: 25px;
	padding: 15px 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.stat-bubble:hover {
	transform: translateY(-5px);
}

.stat-icon {
	font-size: 24px;
	animation: bounce 2s infinite;
}

.stat-number {
	font-size: 24px;
	font-weight: 800;
	color: #ffffff;
	display: block;
}

.stat-label {
	font-size: 12px;
	color: #bdc3c7;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.about-description {
	font-size: 18px;
	line-height: 1.7;
	color: #34495e;
	margin-bottom: 35px;
	font-weight: 500;
}

.about-features {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 40px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
	border-radius: 50px;
	border: 1px solid rgba(255, 107, 107, 0.2);
	transition: all 0.3s ease;
}

.feature-item:hover {
	transform: translateX(10px);
	box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2);
}

.feature-icon {
	font-size: 20px;
}

.feature-text {
	font-weight: 600;
	color: #2c3e50;
	font-size: 16px;
}

.about-cta {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.genz-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	color: #ffffff;
	padding: 18px 35px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
	position: relative;
	overflow: hidden;
}

.genz-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s ease;
}

.genz-btn:hover::before {
	left: 100%;
}

.genz-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
	text-decoration: none;
	color: #ffffff;
}

.btn-emoji {
	font-size: 18px;
	animation: rocket 1.5s ease-in-out infinite;
}

.social-proof {
	text-align: center;
}

.proof-text {
	display: block;
	font-size: 14px;
	color: #7f8c8d;
	font-weight: 600;
	margin-bottom: 5px;
}

.proof-emojis {
	font-size: 16px;
	animation: twinkle 2s ease-in-out infinite;
}

/* Visual Section */
.about-visual {
	position: relative;
	height: 500px;
}

.floating-cards {
	position: relative;
	width: 100%;
	height: 100%;
}

.floating-card {
	position: absolute;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.floating-card:hover {
	transform: translateY(-10px) rotate(2deg);
}

.main-image-card {
	top: 20px;
	left: 60px;
	width: 560px;
	height: 560px;
	background: linear-gradient(135deg, #ff9a9e, #fecfef);
	overflow: hidden;
	animation: float 4s ease-in-out infinite;
	z-index: 3;
}

.main-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	transition: transform 0.5s ease;
}

.main-image-card:hover img {
	transform: scale(1.1);
}

.image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 25px;
	color: #ffffff;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.main-image-card:hover .image-overlay {
	transform: translateY(0);
}

.overlay-badge {
	display: inline-block;
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 8px;
}

.overlay-content h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
	color: #ffffff;
}

.overlay-content p {
	font-size: 14px;
	opacity: 0.9;
	margin: 0;
}

.metric-card-small {
	top: 80px;
	right: 40px;
	width: 120px;
	height: 120px;
	animation: float 4s ease-in-out infinite 1s;
	z-index: 2;
}

.metric-content {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: #ffffff;
	padding: 20px;
	border-radius: 20px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.metric-icon {
	font-size: 24px;
	margin-bottom: 8px;
}

.metric-value {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 4px;
}

.metric-label {
	font-size: 11px;
	opacity: 0.9;
	font-weight: 600;
}

.achievement-card-small {
	bottom: 120px;
	left: 60px;
	width: 140px;
	height: 90px;
	animation: float 4s ease-in-out infinite 2s;
	z-index: 2;
}

.achievement-content {
	background: linear-gradient(135deg, #ffecd2, #fcb69f);
	padding: 15px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	height: 100%;
}

.achievement-emoji {
	font-size: 28px;
}

.achievement-text {
	font-weight: 700;
	color: #2c3e50;
	font-size: 14px;
	line-height: 1.2;
}

.achievement-year {
	font-size: 12px;
	color: #666;
	font-weight: 500;
}

.trend-card {
	bottom: 40px;
	right: 80px;
	width: 100px;
	height: 100px;
	animation: float 4s ease-in-out infinite 3s;
	z-index: 2;
}

.trend-content {
	background: linear-gradient(135deg, #a8edea, #fed6e3);
	padding: 15px;
	border-radius: 20px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.trend-icon {
	font-size: 24px;
	margin-bottom: 5px;
}

.trend-text {
	font-size: 12px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 2px;
}

.trend-count {
	font-size: 10px;
	color: #666;
	font-weight: 600;
}

.decorative-elements {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: -1;
}

.deco-circle {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
}

.circle-1 {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	top: 20px;
	right: 20px;
	animation: rotate 20s linear infinite;
}

.circle-2 {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #feca57, #48cae4);
	bottom: 100px;
	left: 20px;
	animation: rotate 15s linear infinite reverse;
}

.deco-triangle {
	position: absolute;
	width: 0;
	height: 0;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-bottom: 60px solid rgba(255, 107, 107, 0.1);
	top: 200px;
	right: 150px;
	animation: rotate 25s linear infinite;
}

/* Animations */
@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

@keyframes sparkle {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.2); }
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-10px); }
	60% { transform: translateY(-5px); }
}

@keyframes rocket {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-5px); }
}

@keyframes twinkle {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 991px) {
	.about-title {
		font-size: 36px;
	}
	
	.about-visual {
		height: 400px;
		margin-top: 50px;
	}
	
	.main-image-card {
		width: 280px;
		height: 220px;
		top: 10px;
		left: 10px;
	}
	
	.metric-card-small {
		width: 100px;
		height: 100px;
		right: 20px;
		top: 60px;
	}
	
	.achievement-card-small {
		width: 120px;
		height: 80px;
		left: 40px;
		bottom: 100px;
	}
	
	.trend-card {
		width: 80px;
		height: 80px;
		right: 60px;
		bottom: 20px;
	}
}

@media (max-width: 768px) {
	.about-us-section {
		padding: 60px 0;
	}
	
	.about-title {
		font-size: 28px;
	}
	
	.about-stats {
		flex-direction: column;
		gap: 15px;
	}
	
	.about-cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	
	.about-visual {
		height: 300px;
	}
	
	.floating-card {
		transform: scale(0.8);
	}
}

@media (max-width: 576px) {
	.about-title {
		font-size: 24px;
	}
	
	.about-description {
		font-size: 16px;
	}
	
	.feature-item {
		padding: 10px 15px;
	}
	
	.genz-btn {
		padding: 15px 25px;
		font-size: 14px;
	}
}

/* Responsive Design for About Section */
@media (max-width: 991px) {
	.about-container {
		border-radius: 20px;
		margin: 0 15px;
	}
	
	.as-pic {
		min-height: 350px;
		border-radius: 20px 20px 0 0;
	}
	
	.as-text {
		padding: 40px 30px 50px;
		border-radius: 0 0 20px 20px;
	}
	
	.as-text .section-title h2 {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.about-us-section {
		padding: 60px 0 !important;
	}
	
	.as-pic {
		min-height: 300px;
	}
	
	.as-text {
		padding: 30px 25px 40px;
	}
	
	.as-text .section-title h2 {
		font-size: 28px;
	}
	
	.as-text p {
		font-size: 15px;
	}
	
	.as-text p.f-para {
		font-size: 17px;
	}
}

@media (max-width: 576px) {
	.about-container {
		margin: 0 10px;
		border-radius: 15px;
	}
	
	.as-pic {
		min-height: 250px;
		border-radius: 15px 15px 0 0;
	}
	
	.as-text {
		padding: 25px 20px 35px;
		border-radius: 0 0 15px 15px;
	}
	
	.as-text .section-title span {
		font-size: 11px;
		letter-spacing: 2px;
	}
	
	.as-text .section-title h2 {
		font-size: 24px;
		line-height: 1.3;
	}
	
	.as-text .primary-btn {
		padding: 15px 30px;
		font-size: 13px;
	}
}

/*---------------------
  Services Section
-----------------------*/

.services-section {
	background: #191919;
	padding-top: 80px;
	padding-bottom: 80px;
}

.service-item {
	text-align: center;
	background: #222222;
	padding: 46px 30px 40px;
	min-height: 350px;
	height: auto;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-item:hover {
	border-bottom: 3px solid #e32879;
}

.service-item h4 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	margin-top: 25px;
	margin-bottom: 20px;
	line-height: 1.3;
}

.service-item p {
	font-size: 14px;
	line-height: 1.6;
	color: #b3b3b3;
	margin-bottom: 0;
}

.service-item .service-icon {
	font-size: 60px;
	color: #e32879;
	margin-bottom: 20px;
	display: block;
	transition: all 0.3s ease;
}

.service-item:hover .service-icon {
	transform: scale(1.1);
	color: #ff3d93;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
	.service-item {
		min-height: 320px;
		padding: 30px 20px 30px;
	}
	.service-item h4 {
		font-size: 18px;
		margin-top: 20px;
		margin-bottom: 15px;
	}
}

/* Responsive adjustments for about section */
@media (max-width: 768px) {
	.about-us-section {
		padding: 60px 0;
	}
	
	.as-text {
		padding: 30px 0 0 0;
		text-align: center;
	}
	
	.as-text .section-title h2 {
		font-size: 28px;
	}
	
	.as-text p.f-para {
		font-size: 16px;
	}
	
	.as-pic {
		margin-bottom: 30px;
	}
}

/*---------------------
  Portfolio Section
-----------------------*/

.portfolio-section {
	position: relative;
	padding-bottom: 0;
	background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #000000 50%, #000000 100%);
	overflow: hidden;
}

.portfolio-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 25%, rgba(255, 107, 107, 0.05) 0%, transparent 40%),
		radial-gradient(circle at 80% 75%, rgba(78, 205, 196, 0.05) 0%, transparent 40%);
	pointer-events: none;
	z-index: 1;
}

.portfolio-section .container {
	position: relative;
	z-index: 2;
}

.portfolio-section .section-title {
	margin-bottom: 100px;
	position: relative;
	z-index: 2;
}

.portfolio-section .section-title span {
	color: #2c3e50;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	margin-bottom: 15px;
	display: block;
	position: relative;
}

.portfolio-section .section-title span::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	border-radius: 2px;
}

.portfolio-section .section-title h2 {
	color: #2c3e50;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 0;
	text-align: center;
}

.portfolio-item {
	height: 393px;
	margin-left: -15px;
	margin-right: -15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	z-index: 3;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover:after {
	opacity: 1;
}

.portfolio-item:hover .pi-hover a.chain-icon {
	opacity: 1;
	visibility: visible;
	left: 0;
}

.portfolio-item:hover .pi-hover a.search-icon {
	opacity: 1;
	visibility: visible;
	right: 0;
}

.portfolio-item:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	content: "";
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: -1;
}

.portfolio-item.large-item {
	height: 786px;
}

.portfolio-item .pi-hover a {
	display: inline-block;
	width: 66px;
	height: 66px;
	background: #e32879;
	border-radius: 50%;
	text-align: center;
	font-size: 26px;
	color: #ffffff;
	line-height: 66px;
	margin-right: 15px;
}

.portfolio-item .pi-hover a:last-child {
	margin-right: 0;
}

.portfolio-item .pi-hover a.chain-icon {
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	visibility: hidden;
	opacity: 0;
	position: relative;
	left: -20px;
}

.portfolio-item .pi-hover a.search-icon {
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	visibility: hidden;
	opacity: 0;
	position: relative;
	right: -20px;
}

/*---------------------
  Modern Results Section
-----------------------*/

.modern-results-section {
	background: #0a0a0a;
	position: relative;
	padding: 120px 0;
	overflow: hidden;
	min-height: 700px;
}

.results-background-art {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 1;
}

.art-shape-results {
	position: absolute;
	border-radius: 50%;
	opacity: 0.08;
	animation: artFloat 25s ease-in-out infinite;
}

.art-shape-results.shape-1 {
	width: 350px;
	height: 350px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	top: -175px;
	right: -100px;
	animation-delay: 0s;
}

.art-shape-results.shape-2 {
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, #ff9a9e, #fecfef);
	bottom: 20%;
	left: -50px;
	animation-delay: 8s;
}

.art-shape-results.shape-3 {
	width: 150px;
	height: 150px;
	background: linear-gradient(135deg, #a8edea, #fed6e3);
	top: 30%;
	left: 15%;
	animation-delay: 15s;
}

.art-shape-results.shape-4 {
	width: 280px;
	height: 280px;
	background: linear-gradient(135deg, #ffecd2, #fcb69f);
	bottom: -140px;
	right: 20%;
	animation-delay: 20s;
}

.floating-particles {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.particle {
	position: absolute;
	width: 6px;
	height: 6px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-radius: 50%;
	opacity: 0.7;
	animation: particleFloat 18s ease-in-out infinite;
}

.particle.particle-1 {
	top: 15%;
	left: 25%;
	animation-delay: 0s;
}

.particle.particle-2 {
	top: 70%;
	right: 15%;
	animation-delay: 3s;
}

.particle.particle-3 {
	bottom: 40%;
	left: 10%;
	animation-delay: 6s;
}

.particle.particle-4 {
	top: 50%;
	right: 30%;
	animation-delay: 9s;
}

.particle.particle-5 {
	bottom: 15%;
	left: 40%;
	animation-delay: 12s;
}

.particle.particle-6 {
	top: 25%;
	right: 50%;
	animation-delay: 15s;
}

.results-content {
	position: relative;
	z-index: 2;
	color: #ffffff;
}

.results-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 12px 25px;
	border-radius: 50px;
	margin-bottom: 30px;
	animation: pulseGlow 4s ease-in-out infinite;
}

.results-title {
	font-size: 48px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 25px;
	color: #ffffff;
	letter-spacing: -0.5px;
}

.gradient-text-results {
	background: linear-gradient(135deg, #667eea, #764ba2, #a8edea);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 4s ease infinite;
}

.results-description {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 35px;
}

.results-features {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 40px;
}

.feature-item-results {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.feature-item-results:hover {
	transform: translateX(10px);
	background: rgba(255, 255, 255, 0.1);
}

.feature-icon-results {
	font-size: 20px;
}

.feature-text-results {
	font-weight: 600;
	color: #ffffff;
	font-size: 16px;
}

.results-cta {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.modern-results-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: #ffffff;
	padding: 20px 35px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
	width: fit-content;
}

.modern-results-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 20px 45px rgba(102, 126, 234, 0.4);
	text-decoration: none;
	color: #ffffff;
}

.btn-shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s ease;
}

.modern-results-btn:hover .btn-shine {
	left: 100%;
}

.consultation-note {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.note-icon {
	font-size: 16px;
}

.results-metrics {
	position: relative;
	z-index: 2;
}

.metric-card-large {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	padding: 40px 30px;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.metric-card-large:hover {
	transform: translateY(-5px);
}

.metric-card-large.primary-metric {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.metric-card-large.secondary-metric {
	background: linear-gradient(135deg, rgba(255, 154, 158, 0.1), rgba(254, 207, 239, 0.1));
}

.metric-glow {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.metric-card-large:hover .metric-glow {
	opacity: 1;
}

.metric-icon-large {
	font-size: 48px;
	margin-bottom: 20px;
	display: block;
}

.metric-number-large {
	font-size: 64px;
	font-weight: 900;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 15px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.metric-label-large {
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
}

.metric-description {
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
}

.metric-badge {
	position: absolute;
	top: 20px;
	right: 20px;
}

.badge {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: #ffffff;
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.floating-stats {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.floating-stat {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	padding: 15px 20px;
	text-align: center;
	animation: statFloat 6s ease-in-out infinite;
}

.floating-stat.stat-1 {
	top: 20%;
	right: -80px;
	animation-delay: 0s;
}

.floating-stat.stat-2 {
	bottom: 30%;
	left: -100px;
	animation-delay: 2s;
}

.floating-stat.stat-3 {
	top: 60%;
	right: -90px;
	animation-delay: 4s;
}

.stat-icon {
	font-size: 20px;
	margin-bottom: 5px;
}

.stat-value {
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
	display: block;
}

.stat-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
}

/* Animations */
@keyframes particleFloat {
	0%, 100% {
		transform: translateY(0px);
		opacity: 0.7;
	}
	50% {
		transform: translateY(-25px);
		opacity: 1;
	}
}

@keyframes statFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
}

/* Responsive Design */
@media (max-width: 991px) {
	.results-title {
		font-size: 36px;
	}
	
	.floating-stats {
		display: none;
	}
	
	.metric-number-large {
		font-size: 48px;
	}
}

@media (max-width: 768px) {
	.modern-results-section {
		padding: 80px 0;
	}
	
	.results-title {
		font-size: 28px;
	}
	
	.results-description {
		font-size: 16px;
	}
	
	.metric-card-large {
		padding: 30px 20px;
		margin-bottom: 20px;
	}
	
	.metric-number-large {
		font-size: 40px;
	}
	
	.metric-label-large {
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.results-title {
		font-size: 24px;
	}
	
	.modern-results-btn {
		padding: 18px 30px;
		font-size: 16px;
	}
	
	.metric-icon-large {
		font-size: 36px;
	}
}

/*---------------------
  Testimonial Section
-----------------------*/

.testimonial-section {
	background: #ffffff;
	padding-top: 80px;
	padding-bottom: 80px;
}

.testimonial-slider {
	margin-left: 0;
}

.testimonial-slider .col-lg-6 {
	max-width: 100%;
}

.testimonial-slider.owl-carousel .owl-dots {
	text-align: center;
	padding-top: 22px;
}

.testimonial-slider.owl-carousel .owl-dots button {
	height: 8px;
	width: 8px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	margin-right: 10px;
}

.testimonial-slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

.testimonial-slider.owl-carousel .owl-dots button.owl-dot.active {
	width: 27px;
	background: #e32879;
	border-radius: 50px;
}

.testimonial-item {
	background: #ffffff;
	padding: 40px 30px;
	border: 1px solid #f0f0f0;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.testimonial-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.testimonial-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
	font-size: 20px;
	margin-bottom: 20px;
	display: block;
	animation: twinkle 3s ease-in-out infinite;
}

.testimonial-item .ti-text {
	overflow: hidden;
	width: 100%;
}

.testimonial-item .ti-text .ti-title {
	margin-top: 20px;
	margin-bottom: 8px;
}

.testimonial-item .ti-text .ti-title h4 {
	font-size: 20px;
	color: #2c3e50;
	font-weight: 700;
	margin-bottom: 6px;
}

.testimonial-item .ti-text .ti-title span {
	font-size: 14px;
	color: #ff6b6b;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.testimonial-item .ti-text p {
	margin-bottom: 20px;
	color: #555555;
	font-size: 16px;
	line-height: 1.6;
	font-style: italic;
	position: relative;
}

.testimonial-item .ti-text p::before {
	content: '"';
	font-size: 60px;
	color: #ff6b6b;
	opacity: 0.3;
	position: absolute;
	top: -10px;
	left: -15px;
	font-family: serif;
}

/*---------------------
  Modern Call To Action Section
-----------------------*/

.modern-cta-section {
	background: #0a0a0a;
	position: relative;
	padding: 120px 0;
	overflow: hidden;
	min-height: 600px;
}

.cta-background-art {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 1;
}

.art-shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
	animation: artFloat 20s ease-in-out infinite;
}

.art-shape.shape-1 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	top: -150px;
	left: -100px;
	animation-delay: 0s;
}

.art-shape.shape-2 {
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, #a8edea, #fed6e3);
	top: 20%;
	right: -50px;
	animation-delay: 5s;
}

.art-shape.shape-3 {
	width: 150px;
	height: 150px;
	background: linear-gradient(135deg, #ffecd2, #fcb69f);
	bottom: 10%;
	left: 20%;
	animation-delay: 10s;
}

.art-shape.shape-4 {
	width: 250px;
	height: 250px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	bottom: -125px;
	right: 10%;
	animation-delay: 15s;
}

.art-shape.shape-5 {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #ff9a9e, #fecfef);
	top: 50%;
	left: 10%;
	animation-delay: 8s;
}

.floating-dots {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.dot {
	position: absolute;
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	border-radius: 50%;
	opacity: 0.6;
	animation: dotFloat 15s ease-in-out infinite;
}

.dot.dot-1 {
	top: 20%;
	left: 15%;
	animation-delay: 0s;
}

.dot.dot-2 {
	top: 60%;
	right: 20%;
	animation-delay: 3s;
}

.dot.dot-3 {
	bottom: 30%;
	left: 30%;
	animation-delay: 6s;
}

.dot.dot-4 {
	top: 40%;
	right: 40%;
	animation-delay: 9s;
}

.dot.dot-5 {
	bottom: 20%;
	right: 15%;
	animation-delay: 12s;
}

.modern-cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #ffffff;
}

.cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 12px 25px;
	border-radius: 50px;
	margin-bottom: 30px;
	animation: pulseGlow 3s ease-in-out infinite;
}

.badge-emoji {
	font-size: 20px;
	animation: rocket 2s ease-in-out infinite;
}

.badge-text {
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
}

.cta-title {
	font-size: 56px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 25px;
	color: #ffffff;
	letter-spacing: -1px;
}

.gradient-text {
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #a8edea);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 4s ease infinite;
}

.cta-description {
	font-size: 20px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.cta-stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.cta-stat {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 25px;
	border-radius: 20px;
	transition: transform 0.3s ease;
}

.cta-stat:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
}

.stat-emoji {
	font-size: 24px;
}

.stat-number {
	font-size: 24px;
	font-weight: 800;
	color: #ffffff;
	display: block;
}

.stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 25px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.modern-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 20px 35px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.modern-cta-btn.primary {
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	color: #ffffff;
	box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}

.modern-cta-btn.primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 20px 45px rgba(255, 107, 107, 0.4);
	text-decoration: none;
	color: #ffffff;
}

.modern-cta-btn.secondary {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.modern-cta-btn.secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px);
	text-decoration: none;
	color: #ffffff;
}

.btn-glow {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s ease;
}

.modern-cta-btn.primary:hover .btn-glow {
	left: 100%;
}

.btn-icon {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.modern-cta-btn:hover .btn-icon {
	transform: scale(1.2);
}

.cta-testimonial {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 30px;
	border-radius: 25px;
	max-width: 500px;
	margin: 0 auto;
}

.testimonial-stars {
	font-size: 20px;
	margin-bottom: 15px;
	animation: twinkle 3s ease-in-out infinite;
}

.testimonial-text {
	font-size: 18px;
	font-style: italic;
	color: #ffffff;
	margin-bottom: 10px;
	line-height: 1.5;
}

.testimonial-author {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
}

/* Animations */
@keyframes artFloat {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	33% {
		transform: translateY(-30px) rotate(120deg);
	}
	66% {
		transform: translateY(15px) rotate(240deg);
	}
}

@keyframes dotFloat {
	0%, 100% {
		transform: translateY(0px);
		opacity: 0.6;
	}
	50% {
		transform: translateY(-20px);
		opacity: 1;
	}
}

@keyframes pulseGlow {
	0%, 100% {
		box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
	}
	50% {
		box-shadow: 0 0 30px rgba(78, 205, 196, 0.4);
	}
}

/* Responsive Design */
@media (max-width: 991px) {
	.cta-title {
		font-size: 42px;
	}
	
	.cta-stats {
		gap: 20px;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.modern-cta-section {
		padding: 80px 0;
	}
	
	.cta-title {
		font-size: 32px;
	}
	
	.cta-description {
		font-size: 18px;
	}
	
	.cta-stats {
		flex-direction: column;
		gap: 15px;
	}
	
	.modern-cta-btn {
		padding: 18px 30px;
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.cta-title {
		font-size: 28px;
	}
	
	.cta-description {
		font-size: 16px;
	}
	
	.cta-testimonial {
		padding: 20px;
	}
}

/*---------------------
  Member Section
-----------------------*/

.member-section {
	background: #191919;
	padding-bottom: 80px;
}

.member-section.ap-member {
	padding-top: 0;
}

.member-item {
	height: 435px;
	position: relative;
	margin-bottom: 30px;
}

.member-item:hover .mi-text {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.member-item .mi-text {
	text-align: center;
	background: #191919;
	position: absolute;
	left: 20px;
	top: 23px;
	width: calc(100% - 40px);
	height: calc(100% - 46px);
	padding: 50px 20px 60px 20px;
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.member-item .mi-text p {
	margin-bottom: 32px;
}

.member-item .mi-text .mt-title {
	margin-bottom: 20px;
}

.member-item .mi-text .mt-title h4 {
	font-size: 22px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 4px;
}

.member-item .mi-text .mt-title span {
	font-size: 12px;
	color: #e32879;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.member-item .mi-text .mt-social a {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	background: #303030;
	border-radius: 50%;
	margin-right: 3px;
}

.member-item .mi-text .mt-social a:last-child {
	margin-right: 0;
}

/*---------------------
  Footer
-----------------------*/

.footer-section {
	background: #0a0a0a;
	position: relative;
	overflow: hidden;
	padding: 80px 0 30px;
	color: #ffffff;
}

.footer-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 60%);
	pointer-events: none;
}

.footer-option {
	position: relative;
	z-index: 2;
	margin-bottom: 30px;
}

.footer-option .fo-logo {
	margin-bottom: 30px;
}

.footer-option .fo-logo a {
	display: inline-block;
}

.footer-option .fo-logo img {
	max-width: 180px;
	height: auto;
	filter: brightness(1.2);
}

.footer-option ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.footer-option ul li {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 10px;
	position: relative;
	padding-left: 20px;
}

.footer-option ul li::before {
	content: '\f041';
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	color: rgba(227, 40, 121, 1);
	font-size: 14px;
}

.footer-option ul li:last-child::before {
	content: '\f0e0';
}

.footer-option .fo-social {
	display: flex;
	gap: 15px;
}

.footer-option .fo-social a {
	width: 45px;
	height: 45px;
	background: linear-gradient(45deg, rgba(227, 40, 121, 0.2), rgba(255, 255, 255, 0.1));
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 18px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.footer-option .fo-social a:hover {
	background: linear-gradient(45deg, rgba(227, 40, 121, 1), rgba(227, 40, 121, 0.8));
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(227, 40, 121, 0.3);
	border-color: rgba(227, 40, 121, 0.5);
}

.footer-widget {
	position: relative;
	z-index: 2;
	margin-bottom: 30px;
}

.footer-widget.fw-links {
	padding-left: 0;
}

.footer-widget h5 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-widget h5::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: linear-gradient(45deg, rgba(227, 40, 121, 1), rgba(227, 40, 121, 0.6));
	border-radius: 1px;
}

.footer-widget p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 25px;
}

.footer-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-widget ul li {
	margin-bottom: 12px;
}

.footer-widget ul li a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 15px;
	line-height: 1.5;
}

.footer-widget ul li a::before {
	content: '\f105';
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	color: rgba(227, 40, 121, 1);
	font-size: 12px;
	transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
	color: rgba(227, 40, 121, 1);
	padding-left: 20px;
	text-decoration: none;
}

.footer-widget ul li a:hover::before {
	transform: translateX(3px);
}

.footer-services {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-services li {
	margin-bottom: 12px;
}

.footer-services li a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 15px;
}

.footer-services li a::before {
	content: '\f0da';
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	color: rgba(227, 40, 121, 1);
	font-size: 12px;
	transition: all 0.3s ease;
}

.footer-services li a:hover {
	color: rgba(227, 40, 121, 1);
	padding-left: 20px;
	text-decoration: none;
}

.footer-services li a:hover::before {
	transform: translateX(3px);
}

.footer-widget .news-form {
	display: flex;
	margin-top: 20px;
	border-radius: 50px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	min-height: 50px;
	align-items: center;
}

.footer-widget .news-form input {
	flex: 1;
	padding: 15px 20px;
	border: none;
	background: transparent;
	color: #ffffff;
	font-size: 15px;
	outline: none;
	height: 50px;
	width: auto;
	margin-bottom: 0;
	border-radius: 50px 0 0 50px;
}

.footer-widget .news-form input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.footer-widget .news-form input::-moz-placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.footer-widget .news-form input:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.footer-widget .news-form input::-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.footer-widget .news-form input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.footer-widget .news-form button {
	padding: 15px 25px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	border: none;
	color: #ffffff;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	height: 50px;
	min-width: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 50px 50px 0;
	white-space: nowrap;
}

.footer-widget .news-form button:hover {
	background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
	transform: scale(1.05);
}

.copyright-text {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 2;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
	font-size: 14px;
}

.copyright-text p {
	margin: 0;
	line-height: 1.6;
}

.copyright-text i {
	color: rgba(227, 40, 121, 1);
	margin: 0 5px;
}

.copyright-text a {
	color: rgba(227, 40, 121, 1);
	text-decoration: none;
	transition: all 0.3s ease;
}

.copyright-text a:hover {
	color: rgba(227, 40, 121, 0.8);
	text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 991px) {
	.footer-section {
		padding: 60px 0 20px;
	}
	
	.footer-option, .footer-widget {
		margin-bottom: 40px;
	}
}

@media (max-width: 768px) {
	.footer-section {
		padding: 50px 0 20px;
	}
	
	.footer-option .fo-social {
		justify-content: center;
		margin-top: 20px;
	}
	
	.footer-widget h5 {
		text-align: center;
	}
	
	.footer-widget h5::after {
		left: 50%;
		transform: translateX(-50%);
	}
	
	.footer-widget ul, .footer-services {
		text-align: center;
	}
	
	.footer-widget .news-form {
		flex-direction: column;
		border-radius: 15px;
		min-height: auto;
	}
	
	.footer-widget .news-form input {
		border-radius: 15px 15px 0 0;
		height: 45px;
	}
	
	.footer-widget .news-form button {
		border-radius: 0 0 15px 15px;
		height: 45px;
		min-width: auto;
	}
}

/* ------------------------------ Other Pages Styles ------------------------------ */

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-section {
	background: #2a2a2a;
	padding: 50px 0;
}

.breadcrumb-section.bread-normal {
	border-bottom: 1px solid #191919;
}

.breadcrumb-option {
	line-height: 36px;
}

.breadcrumb-option a {
	display: inline-block;
	color: #b3b3b3;
	margin-right: 24px;
	position: relative;
}

.breadcrumb-option a::after {
	position: absolute;
	right: -15px;
	top: 16px;
	width: 6px;
	height: 6px;
	background: #5c5c5c;
	content: "";
	border-radius: 50%;
}

.breadcrumb-option span {
	color: #5c5c5c;
}

.breadcrumb-text {
	text-align: right;
}

.breadcrumb-text h3 {
	color: #ffffff;
	font-weight: 700;
}

/*---------------------
  Blog Section
-----------------------*/

.blog-section {
	background: #222222;
}

.blog-section.latest-blog {
	padding-bottom: 80px;
}

.blog-section .blog-btn {
	padding-top: 30px;
}

.blog-section .blog-btn .primary-btn {
	background: #222222;
	border: 2px solid #e32879;
}

.blog-item {
	background: #191919;
	margin-bottom: 30px;
	height: 390px;
}

.blog-item.solid-bg {
	background: #e32879;
	padding: 55px 45px 55px 65px;
}

.blog-item.solid-bg .bi-text {
	padding: 0;
}

.blog-item.solid-bg .bi-text ul li {
	color: #ffffff;
}

.blog-item.solid-bg .bi-text h4 {
	margin-bottom: 12px;
}

.blog-item.solid-bg .bi-text p {
	color: #ffffff;
	margin-bottom: 20px;
}

.blog-item.solid-bg .bi-text .bt-author .ba-text h5 {
	color: #ffffff;
}

.blog-item.solid-bg .bi-text .bt-author .ba-text span {
	color: #ffffff;
}

.blog-item .bi-pic {
	height: 390px;
}

.blog-item .bi-text {
	padding-top: 46px;
	padding-right: 20px;
	padding-bottom: 38px;
}

.blog-item .bi-text ul {
	margin-bottom: 17px;
}

.blog-item .bi-text ul li {
	list-style: none;
	display: inline-block;
	color: #e32879;
	font-size: 14px;
	margin-right: 8px;
}

.blog-item .bi-text ul li i {
	margin-right: 4px;
}

.blog-item .bi-text h4 {
	margin-bottom: 22px;
}

.blog-item .bi-text h4 a {
	color: #ffffff;
	font-weight: 700;
	line-height: 32px;
}

.blog-item .bi-text p {
	margin-bottom: 42px;
}

.blog-item .bi-text .bt-author .ba-pic {
	float: left;
	margin-right: 12px;
}

.blog-item .bi-text .bt-author .ba-pic img {
	height: 53px;
	width: 50px;
	border-radius: 50%;
}

.blog-item .bi-text .bt-author .ba-text {
	overflow: hidden;
	padding-top: 4px;
}

.blog-item .bi-text .bt-author .ba-text h5 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 4px;
}

.blog-item .bi-text .bt-author .ba-text span {
	font-size: 12px;
	color: #e32879;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/*---------------------
  Blog Details Hero
-----------------------*/

.blog-hero-section {
	padding-top: 130px;
	padding-bottom: 120px;
}

.blog-hero-section .bh-text span {
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	background: #e32879;
	padding: 5px 26px;
}

.blog-hero-section .bh-text h2 {
	font-size: 60px;
	color: #ffffff;
	font-weight: 700;
	line-height: 72px;
	margin-top: 34px;
	margin-bottom: 16px;
}

.blog-hero-section .bh-text ul li {
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-right: 45px;
	display: inline-block;
	list-style: none;
	position: relative;
}

.blog-hero-section .bh-text ul li:after {
	position: absolute;
	right: -24px;
	top: 4px;
	width: 1px;
	height: 15px;
	background: #585658;
	content: "";
}

.blog-hero-section .bh-text ul li:last-child {
	margin-right: 0;
}

.blog-hero-section .bh-text ul li:last-child:after {
	display: none;
}

/*---------------------
  Blog Details Section
-----------------------*/

.blog-details-section {
	background: #222222;
}

.bd-text .bd-title {
	margin-bottom: 65px;
}

.bd-text .bd-title p {
	line-height: 30px;
	font-size: 17px;
}

.bd-text .bd-pic {
	margin-bottom: 46px;
}

.bd-text .bd-pic img {
	min-width: 100%;
	margin-bottom: 20px;
}

.bd-text .bd-more-text {
	margin-bottom: 62px;
}

.bd-text .bd-more-text .bm-item {
	margin-bottom: 32px;
}

.bd-text .bd-more-text .bm-item h4 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 20px;
}

.bd-text .bd-more-text .bm-item p {
	font-size: 17px;
	line-height: 30px;
}

.bd-text .bd-quote {
	background: #000000;
	padding: 40px 110px 30px 130px;
	position: relative;
	margin-bottom: 60px;
}

.bd-text .bd-quote img {
	position: absolute;
	left: 50px;
	top: 45px;
}

.bd-text .bd-quote p {
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 22px;
}

.bd-text .bd-quote .quote-author h5 {
	color: #b3b3b3;
	margin-bottom: 4px;
}

.bd-text .bd-quote .quote-author span {
	color: #b3b3b3;
	font-size: 14px;
}

.bd-text .bd-last-para {
	margin-bottom: 90px;
}

.bd-text .bd-last-para p {
	font-size: 17px;
	line-height: 30px;
}

.bd-text .tag-share {
	border-top: 1px solid #363636;
	padding-top: 30px;
	overflow: hidden;
	margin-bottom: 70px;
}

.bd-text .tag-share .tags {
	float: left;
}

.bd-text .tag-share .tags a {
	display: inline-block;
	background: #363636;
	font-size: 10px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 5px 19px;
	margin-right: 6px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.bd-text .tag-share .tags a:hover {
	background: #e32879;
}

.bd-text .tag-share .social-share {
	text-align: right;
}

.bd-text .tag-share .social-share a {
	font-size: 16px;
	color: #b3b3b3;
	margin-left: 25px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.bd-text .tag-share .social-share a:hover {
	color: #e32879;
}

.bd-text .tag-share .social-share span {
	font-size: 16px;
	color: #b3b3b3;
}

.bd-text .blog-author {
	text-align: center;
	margin-bottom: 56px;
}

.bd-text .blog-author img {
	height: 117px;
	width: 117px;
	border-radius: 50%;
}

.bd-text .blog-author h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	margin-top: 28px;
	margin-bottom: 12px;
}

.bd-text .blog-author p {
	font-size: 17px;
}

.bd-text .blog-author .bt-social a {
	display: inline-block;
	color: #b3b3b3;
	font-size: 14px;
	margin-right: 30px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.bd-text .blog-author .bt-social a:hover {
	color: #e32879;
}

.bd-text .blog-author .bt-social a:last-child {
	margin-right: 0;
}

.bd-text .leave-comment h2 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 36px;
}

.comment-form input,
.contact-form input {
	height: 50px;
	width: 100%;
	border: none;
	font-size: 16px;
	color: #b3b3b3;
	padding-left: 20px;
	background: #393939;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 30px;
}

.comment-form input::-webkit-input-placeholder,
.contact-form input::-webkit-input-placeholder {
	color: #b3b3b3;
}

.comment-form input::-moz-placeholder,
.contact-form input::-moz-placeholder {
	color: #b3b3b3;
}

.comment-form input:-ms-input-placeholder,
.contact-form input:-ms-input-placeholder {
	color: #b3b3b3;
}

.comment-form input::-ms-input-placeholder,
.contact-form input::-ms-input-placeholder {
	color: #b3b3b3;
}

.comment-form input::placeholder,
.contact-form input::placeholder {
	color: #b3b3b3;
}

.comment-form input:focus,
.contact-form input:focus {
	background: #ffffff;
	color: #0d0a27;
}

.comment-form input:focus::-webkit-input-placeholder,
.contact-form input:focus::-webkit-input-placeholder {
	color: #0d0a27;
}

.comment-form input:focus::-moz-placeholder,
.contact-form input:focus::-moz-placeholder {
	color: #0d0a27;
}

.comment-form input:focus:-ms-input-placeholder,
.contact-form input:focus:-ms-input-placeholder {
	color: #0d0a27;
}

.comment-form input:focus::-ms-input-placeholder,
.contact-form input:focus::-ms-input-placeholder {
	color: #0d0a27;
}

.comment-form input:focus::placeholder,
.contact-form input:focus::placeholder {
	color: #0d0a27;
}

.comment-form textarea,
.contact-form textarea {
	width: 100%;
	border: none;
	font-size: 16px;
	color: #b3b3b3;
	padding-left: 20px;
	background: #393939;
	height: 110px;
	padding-top: 12px;
	resize: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 45px;
}

.comment-form textarea::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
	color: #b3b3b3;
}

.comment-form textarea::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
	color: #b3b3b3;
}

.comment-form textarea:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
	color: #b3b3b3;
}

.comment-form textarea::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
	color: #b3b3b3;
}

.comment-form textarea::placeholder,
.contact-form textarea::placeholder {
	color: #b3b3b3;
}

.comment-form textarea:focus,
.contact-form textarea:focus {
	background: #ffffff;
	color: #0d0a27;
}

.comment-form textarea:focus::-webkit-input-placeholder,
.contact-form textarea:focus::-webkit-input-placeholder {
	color: #0d0a27;
}

.comment-form textarea:focus::-moz-placeholder,
.contact-form textarea:focus::-moz-placeholder {
	color: #0d0a27;
}

.comment-form textarea:focus:-ms-input-placeholder,
.contact-form textarea:focus:-ms-input-placeholder {
	color: #0d0a27;
}

.comment-form textarea:focus::-ms-input-placeholder,
.contact-form textarea:focus::-ms-input-placeholder {
	color: #0d0a27;
}

.comment-form textarea:focus::placeholder,
.contact-form textarea:focus::placeholder {
	color: #0d0a27;
}

/*---------------------
  Recommend Section
-----------------------*/

.recommend-section {
	background: #222222;
	border-top: 1px solid #393939;
	padding-bottom: 80px;
}

.recommend-section .section-title h2 {
	margin-top: 0;
}

/*---------------------
  Gallery Section
-----------------------*/

.gallery-section {
	background: #222222;
	padding-bottom: 80px;
}

.gallery-section .gallery-controls {
	text-align: center;
	margin-bottom: 55px;
}

.gallery-section .gallery-controls ul li {
	list-style: none;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-right: 55px;
	cursor: pointer;
}

.gallery-section .gallery-controls ul li.active {
	color: #e32879;
}

.gallery-section .gallery-controls ul li:last-child {
	margin-right: 0;
}

.gallery-section .gs-item {
	margin-bottom: 30px;
}

.gallery-section .gs-item img {
	min-width: 100%;
}

/*---------------------
  Why Choose Us & Contact Section
-----------------------*/

.why-choose-contact-section {
	background: #ffffff;
	padding: 100px 0;
}

/* Why Choose Us Styles */
.why-choose-content .section-title {
	margin-bottom: 30px;
}

.why-choose-content .section-title h2 {
	color: #111111;
	font-size: 48px;
	font-weight: 700;
	margin-top: 14px;
	line-height: 1.2;
}

.why-choose-content .section-title span {
	color: #e32879;
}

.why-choose-items {
	padding-right: 30px;
}

.why-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 35px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.why-item:hover {
	background: #e32879;
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(227, 40, 121, 0.2);
}

.why-item:hover .wi-text h4,
.why-item:hover .wi-text p,
.why-item:hover .wi-icon i {
	color: #ffffff;
}

.wi-icon {
	margin-right: 20px;
	margin-top: 5px;
}

.wi-icon i {
	font-size: 32px;
	color: #e32879;
	transition: color 0.3s ease;
}

.wi-text h4 {
	font-size: 18px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 10px;
	transition: color 0.3s ease;
}

.wi-text p {
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
	margin-bottom: 0;
	transition: color 0.3s ease;
}

/* Detailed Contact Form Styles */
.detailed-contact-form {
	background: #f8f9fa;
	padding: 40px 35px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
	text-align: center;
	margin-bottom: 35px;
}

.form-header h3 {
	font-size: 24px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 10px;
}

.form-header p {
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
}

.main-contact-form .form-group {
	margin-bottom: 20px;
}

.main-contact-form label {
	font-size: 13px;
	font-weight: 600;
	color: #111111;
	margin-bottom: 5px;
	display: block;
}

.main-contact-form input,
.main-contact-form select,
.main-contact-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	font-size: 14px;
	color: #111111;
	background: #ffffff;
	transition: border-color 0.3s ease;
}

.main-contact-form input:focus,
.main-contact-form select:focus,
.main-contact-form textarea:focus {
	outline: none;
	border-color: #e32879;
	box-shadow: 0 0 0 3px rgba(227, 40, 121, 0.1);
}

.form-checkbox {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
	width: auto;
	margin-right: 10px;
}

.form-checkbox label {
	font-size: 13px;
	color: #666666;
	margin-bottom: 0;
	cursor: pointer;
}

.detailed-form-btn {
	width: 100%;
	background: #e32879;
	color: #ffffff;
	padding: 15px 20px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.detailed-form-btn:hover {
	background: #d91a6a;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(227, 40, 121, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
	.why-choose-items {
		padding-right: 0;
		margin-bottom: 50px;
	}
	
	.detailed-contact-form {
		padding: 30px 25px;
	}
}

@media (max-width: 768px) {
	.why-choose-contact-section {
		padding: 60px 0;
	}
	
	.why-item {
		flex-direction: column;
		text-align: center;
	}
	
	.wi-icon {
		margin-right: 0;
		margin-bottom: 15px;
	}
	
	.form-header h3 {
		font-size: 20px;
	}
	
	.detailed-form-btn {
		font-size: 14px;
		padding: 12px 18px;
	}
}

/*---------------------
  Map
-----------------------*/

.map {
	height: 500px;
}

.map iframe {
	width: 100%;
}

/*---------------------
  Contact
-----------------------*/

.contact-section {
	background: #222222;
}

.contact-text h4 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 45px;
}

.contact-text .ct-item {
	overflow: hidden;
	margin-bottom: 15px;
}

.contact-text .ct-item .ci-icon {
	width: 74px;
	height: 74px;
	text-align: center;
	line-height: 90px;
	border-radius: 50%;
	background: #393939;
	float: left;
	margin-right: 26px;
}

.contact-text .ct-item .ci-icon span {
	color: #e32879;
	font-size: 30px;
}

.contact-text .ct-item .ci-text {
	overflow: hidden;
	margin-top: 8px;
}

.contact-text .ct-item .ci-text ul li {
	list-style: none;
	font-size: 18px;
	color: #ffffff;
}

.contact-text .ct-item .ci-text ul li span {
	display: block;
	color: #b3b3b3;
}

.contact-option h4 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 45px;
}

/*-------------------------------- Respinsive Media Styles --------------------------------*/

@media only screen and (min-width: 1600px) {
	.portfolio-section .container {
		max-width: 1570px;
	}
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device: 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.member-item .mi-text {
		padding: 30px 20px 60px 20px;
	}
	.blog-item .bi-text {
		padding-top: 20px;
		padding-right: 10px;
		padding-bottom: 30px;
	}
	.as-text .about-counter .ac-item {
		margin-right: 12px;
	}
	.as-text .about-counter .ac-item:after {
		right: -7px;
	}
}

@media only screen and (max-width: 991px) {
	.as-text {
		padding-left: 0;
	}
	.blog-item {
		height: auto;
	}
	.blog-item .bi-text {
		padding-left: 30px;
	}
	.footer-widget.fw-links {
		padding-left: 0;
	}
	.contact-option {
		padding-top: 30px;
	}
	.as-text.ap-text {
		padding-top: 30px;
	}
}

/* Large Mobile: 480px */

@media only screen and (max-width: 767px) {
	.main-menu {
		text-align: right;
		display: none;
	}
	.slicknav_btn {
		margin: 0;
		border-radius: 0;
		background-color: #666;
		position: absolute;
		right: 15px;
		top: 20px;
		display: inline-block;
		float: none;
	}
	.slicknav_nav {
		background: #666;
		display: block;
	}
	.slicknav_menu {
		display: block;
		background: transparent;
		padding: 0;
	}
	.header-section .container {
		position: relative;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 8px 30px;
		margin: 0;
	}
	.slicknav_nav ul {
		margin: 0;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: #e32879;
		color: #ffffff;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: #e32879;
		color: #ffffff;
	}
	.breadcrumb-text {
		text-align: left;
	}
	.counter-item .ci-number {
		position: relative;
		margin-bottom: 15px;
	}
	.counter-item .ci-text {
		padding-left: 0;
	}
	.as-text .about-counter .ac-item {
		margin-right: 20px;
	}
	.as-text .about-counter .ac-item:after {
		right: -11px;
	}
	.blog-hero-section .bh-text ul li {
		margin-right: 20px;
	}
	.blog-hero-section .bh-text ul li:after {
		right: -12px;
	}
	.bd-text .tag-share .tags {
		float: none;
		margin-bottom: 30px;
	}
	.bd-text .tag-share .social-share {
		text-align: left;
	}
	.gallery-section .gallery-controls ul li {
		margin-right: 12px;
	}
	.bd-text .bd-quote img {
		position: relative;
		left: 0;
		top: 0;
		margin-bottom: 10px;
	}
	.bd-text .bd-quote {
		padding: 40px;
	}
	.blog-hero-section .bh-text h2 {
		font-size: 40px;
		line-height: normal;
	}
}

/* Small Mobile: 320px */

@media only screen and (max-width: 479px) {
	.blog-hero-section .bh-text h2 {
		font-size: 36px;
		line-height: normal;
	}
	.testimonial-item .ti-pic {
		float: none;
		margin-right: 0;
	}
	.testimonial-item .ti-text {
		overflow: visible;
	}
	.member-item .mi-text {
		padding: 30px 20px 60px 20px;
	}
	.blog-hero-section .bh-text ul li {
		margin-right: 10px;
	}
	.blog-hero-section .bh-text ul li:after {
		display: none;
	}
	.bd-text .tag-share .tags a {
		margin-bottom: 6px;
	}
	.recommend-section .section-title h2 {
		font-size: 35px;
	}
	.blog-item.solid-bg {
		padding: 55px 45px 55px 50px;
	}
	.bd-text .tag-share .social-share a {
		margin-left: 15px;
	}
	.contact-text .ct-item {
		margin-bottom: 30px;
		text-align: center;
	}
	.contact-text .ct-item .ci-icon {
		float: none;
		width: 60px;
		height: 60px;
		line-height: 70px;
		margin: 0 auto;
	}
	.contact-text .ct-item .ci-icon span {
		font-size: 22px;
	}
}

/*---------------------
  Alternating Section Backgrounds
-----------------------*/

/* Hero Section - Keep original dark background with image */
.hero-section {
	/* Maintains existing background image and styling */
}

/* Section 1: About Us - White */
.about-us-section {
	background: #ffffff !important;
}

.about-us-section .section-title span {
	color: #e32879;
}

.about-us-section .section-title h2 {
	color: #111111;
}

.about-us-section p {
	color: #666666;
}

.about-us-section .about-counter .ac-item h2 {
	color: #111111 !important;
}

.about-us-section .about-counter .ac-item p {
	color: #666666 !important;
}

/* Section 2: Services - Black */
.services-section {
	background: #111111 !important;
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}

.services-section .section-title span {
	color: #e32879;
}

.services-section .section-title h2 {
	color: #ffffff;
}

/* Section 3: Portfolio - Split Background */
.portfolio-section {
	position: relative !important;
	padding-bottom: 0 !important;
	background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #000000 50%, #000000 100%) !important;
	overflow: hidden !important;
}

.portfolio-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 25%, rgba(255, 107, 107, 0.05) 0%, transparent 40%),
		radial-gradient(circle at 80% 75%, rgba(78, 205, 196, 0.05) 0%, transparent 40%);
	pointer-events: none;
	z-index: 1;
}

.portfolio-section .section-title span {
	color: #2c3e50 !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	margin-bottom: 15px;
	display: block;
	position: relative;
	text-align: center;
}

.portfolio-section .section-title span::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	border-radius: 2px;
}

.portfolio-section .section-title h2 {
	color: #2c3e50 !important;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 0;
	text-align: center;
}

/* Section 4: Counter - Black */
.counter-section {
	background: #111111 !important;
}

.counter-section .section-title span {
	color: #e32879;
}

.counter-section .section-title h2 {
	color: #ffffff;
}

.counter-section .counter-text p {
	color: #b3b3b3;
}

.counter-section .ci-text h4 {
	color: #ffffff;
}

.counter-section .ci-text p {
	color: #b3b3b3;
}

/* Section 5: Testimonial - White */
.testimonial-section {
	background: #ffffff !important;
}

.testimonial-section .ti-text .ti-title h4 {
	color: #111111;
}

.testimonial-section .ti-text .ti-title span {
	color: #666666;
}

.testimonial-section .ti-text p {
	color: #666666;
}

/* Section 6: Call to Action - Keep original background with image */
.callto-section {
	/* Maintains existing background image and styling */
}

/* Section 7: Member - White */
.member-section {
	background: #ffffff !important;
}

.member-section .section-title span {
	color: #e32879;
}

.member-section .section-title h2 {
	color: #111111;
}

/* Section 8: Blog - Black */
.latest-blog {
	background: #111111 !important;
}

.latest-blog .section-title span {
	color: #e32879;
}

.latest-blog .section-title h2 {
	color: #ffffff;
}

.latest-blog .blog-item .bi-text h4 a {
	color: #ffffff;
}

.latest-blog .blog-item .bi-text p {
	color: #b3b3b3;
}

.latest-blog .blog-item .bi-text ul li {
	color: #b3b3b3;
}

.latest-blog .blog-item .bi-text .ba-text h5 {
	color: #ffffff;
}

.latest-blog .blog-item .bi-text .ba-text span {
	color: #b3b3b3;
}

/* Why Choose Us Section Styling */
.why-choose-us-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 100px 0;
	position: relative;
}

.why-choose-us-section .section-title {
	margin-bottom: 60px;
}

.why-choose-us-section .section-title h2 {
	font-size: 42px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 20px;
}

.why-choose-us-section .section-title span {
	color: #e32879;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.why-choose-us-section .section-title p {
	font-size: 18px;
	color: #6c757d;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.why-choose-item {
	background: #ffffff;
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.why-choose-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.wci-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #e32879, #ff6b9d);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: transform 0.3s ease;
}

.why-choose-item:hover .wci-icon {
	transform: scale(1.1);
}

.wci-icon i {
	font-size: 32px;
	color: #ffffff;
}

.why-choose-item h4 {
	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 15px;
	line-height: 1.3;
}

.why-choose-item p {
	font-size: 16px;
	line-height: 1.6;
	color: #6c757d;
	margin: 0;
}

.why-choose-item strong {
	color: #e32879;
	font-weight: 700;
}

.why-choose-cta {
	margin-top: 60px;
	padding: 50px 30px;
	background: linear-gradient(135deg, #2c3e50, #34495e);
	border-radius: 20px;
	color: #ffffff;
}

.why-choose-cta h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #ffffff;
}

.why-choose-cta p {
	font-size: 18px;
	margin-bottom: 30px;
	color: #ecf0f1;
	line-height: 1.6;
}

.why-choose-cta .site-btn {
	background: linear-gradient(135deg, #e32879, #ff6b9d);
	color: #ffffff;
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: none;
	display: inline-block;
	text-decoration: none;
}

.why-choose-cta .site-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(227, 40, 121, 0.3);
	color: #ffffff;
	text-decoration: none;
}

/* Responsive Design for Why Choose Us */
@media (min-width: 992px) {
	.why-choose-us-section .row .col-lg-4:nth-child(-n+3) {
		margin-bottom: 60px;
	}
}

@media (max-width: 768px) {
	.why-choose-us-section {
		padding: 60px 0;
	}
	
	.why-choose-us-section .section-title h2 {
		font-size: 32px;
	}
	
	.why-choose-item {
		padding: 30px 20px;
		margin-bottom: 20px;
	}
	
	.why-choose-item h4 {
		font-size: 20px;
	}
	
	.why-choose-cta {
		padding: 40px 20px;
		margin-top: 40px;
	}
	
	.why-choose-cta h3 {
		font-size: 26px;
	}
}

/* Form Message Styles */
.form-message {
	margin-top: 20px;
	padding: 15px 20px;
	border-radius: 8px;
	animation: slideInUp 0.3s ease;
}

.success-message {
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	color: #ffffff;
	border: 1px solid #27ae60;
}

.error-message {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: #ffffff;
	border: 1px solid #e74c3c;
}

.message-content {
	display: flex;
	align-items: center;
	gap: 12px;
}

.message-content i {
	font-size: 18px;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}