/* =====================================
  MODERN 2026 DESIGN ENHANCEMENTS
  Glassmorphism + AI Integration
===================================== */

/*================================
  27. GLASSMORPHISM & MODERN EFFECTS
=================================*/

/* Glassmorphic Cards */
.glassmorphic-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.glassmorphic-card:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(27, 188, 155, 0.4);
	box-shadow: 0 15px 40px rgba(27, 188, 155, 0.2);
	transform: translateY(-5px);
}

/* Enhanced Features with Gradient */
.features-enhanced .single-feature {
	background: linear-gradient(135deg, rgba(27, 188, 155, 0.1) 0%, rgba(43, 150, 204, 0.05) 100%);
	border-left: 4px solid #1BBC9B;
	border-radius: 10px;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.features-enhanced .single-feature:hover {
	transform: translateX(10px);
	background: linear-gradient(135deg, rgba(27, 188, 155, 0.2) 0%, rgba(43, 150, 204, 0.1) 100%);
	box-shadow: 0 10px 30px rgba(27, 188, 155, 0.15);
}

/* Gradient Text */
.gradient-text {
	background: linear-gradient(135deg, #1BBC9B 0%, #2B96CC 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
}

/*================================
  28. AI CAPABILITIES SECTION
=================================*/

.ai-capabilities {
	background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.ai-capabilities::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(27, 188, 155, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

.ai-capabilities::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -5%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(43, 150, 204, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite reverse;
}

.ai-capabilities-content {
	position: relative;
	z-index: 2;
}

.ai-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(27, 188, 155, 0.2);
	border-radius: 15px;
	padding: 40px 25px;
	margin: 20px 0;
	transition: all 0.4s ease;
	text-align: center;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.ai-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(27, 188, 155, 0.2);
	border-color: #1BBC9B;
}

.ai-card-icon {
	width: 100px;
	height: 100px;
	background: #1BBC9B;
	box-shadow: 0 10px 30px rgba(27, 188, 155, 0.3);
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	color: #fff;
	margin-bottom: 25px;
	animation: pulse-glow 2s ease-in-out infinite;
	transition: all 0.3s ease;
}

.ai-card h4 {
	font-size: 20px;
	font-weight: 700;
	color: #282828;
	margin-bottom: 15px;
	margin-top: 0;
}

.ai-card p {
	color: #666;
	font-size: 14px;
	line-height: 24px;
	margin: 0;
}

/*================================
  29. TECH STACK SECTION
=================================*/

.tech-stack {
	background: #fff;
	padding: 100px 0;
	position: relative;
}

.tech-stack-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.tech-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all 0.4s ease;
	padding: 20px;
}

.tech-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, rgba(27, 188, 155, 0.1) 0%, rgba(43, 150, 204, 0.05) 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 45px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
	border: 2px solid rgba(27, 188, 155, 0.1);
}

.tech-item:hover .tech-icon {
	background: linear-gradient(135deg, rgba(27, 188, 155, 0.2) 0%, rgba(43, 150, 204, 0.1) 100%);
	border-color: #1BBC9B;
	transform: scale(1.1) rotateZ(5deg);
	box-shadow: 0 10px 25px rgba(27, 188, 155, 0.15);
}

.tech-name {
	font-size: 15px;
	font-weight: 700;
	color: #282828;
	margin-bottom: 5px;
}

.tech-type {
	font-size: 12px;
	color: #1BBC9B;
	font-weight: 600;
	text-transform: uppercase;
}

/*================================
  30. ANIMATIONS
=================================*/

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(30px);
	}
}

@keyframes pulse-glow {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(27, 188, 155, 0.7);
	}
	50% {
		box-shadow: 0 0 0 15px rgba(27, 188, 155, 0);
	}
}

@keyframes slide-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fade-in-scale {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.animate-on-scroll {
	opacity: 0;
	animation: slide-up 0.6s ease forwards;
}

/*================================
  31. ENHANCED HERO SECTION
=================================*/

.hero-area-modern {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	overflow: hidden;
}

.hero-area-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(27, 188, 155, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(43, 150, 204, 0.3) 0%, transparent 50%);
	pointer-events: none;
}

.hero-modern-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	max-width: 800px;
	animation: fade-in-scale 0.8s ease;
}

.hero-modern-content h1 {
	font-size: 72px;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.1;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-modern-content p {
	font-size: 20px;
	font-weight: 300;
	margin-bottom: 40px;
	opacity: 0.95;
	line-height: 1.6;
}

/*================================
  32. MODERN BUTTONS & CTAs
=================================*/

.btn-modern {
	display: inline-block;
	padding: 16px 40px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	z-index: -1;
}

.btn-modern:hover::before {
	left: 100%;
}

.btn-modern-primary {
	background: linear-gradient(135deg, #1BBC9B 0%, #2B96CC 100%);
	color: #fff;
	box-shadow: 0 10px 30px rgba(27, 188, 155, 0.3);
}

.btn-modern-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(27, 188, 155, 0.4);
}

.btn-modern-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.btn-modern-secondary:hover {
	background: #fff;
	color: #1BBC9B;
}

/*================================
  33. SECTION BACKGROUNDS
=================================*/

.section-gradient-1 {
	background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
}

.section-gradient-2 {
	background: linear-gradient(135deg, rgba(27, 188, 155, 0.05) 0%, rgba(43, 150, 204, 0.05) 100%);
}

.section-dark-gradient {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/*================================
  34. RESPONSIVE ADJUSTMENTS
=================================*/

@media (max-width: 768px) {
	.hero-area-modern {
		height: auto;
		padding: 60px 0;
	}

	.hero-modern-content h1 {
		font-size: 42px;
	}

	.hero-modern-content p {
		font-size: 16px;
	}

	.tech-stack-grid {
		grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
		gap: 20px;
	}

	.tech-icon {
		width: 70px;
		height: 70px;
		font-size: 30px;
	}

	.ai-card {
		min-height: 250px;
		padding: 25px 15px;
	}

	.btn-modern {
		padding: 12px 30px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.hero-modern-content h1 {
		font-size: 28px;
	}

	.hero-modern-content p {
		font-size: 14px;
	}

	.tech-stack-grid {
		grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
	}

	.ai-card-icon {
		width: 60px;
		height: 60px;
		font-size: 30px;
	}

	.modern-form-card {
		padding: 30px;
	}

	.modern-form-card h2 {
		font-size: 24px;
	}

	.form-modern .form-group {
		margin-bottom: 15px;
	}

	.form-modern input,
	.form-modern select {
		font-size: 14px;
		padding: 12px 15px;
	}
}

/*================================
  35. MODERN FORM STYLING
=================================*/

.modern-form-wrapper {
	position: relative;
	overflow: hidden;
}

.modern-form-card {
	position: relative;
	background: #fff;
	border-radius: 25px;
	padding: 50px 45px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	overflow: hidden;
}

.modern-form-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 70%;
	height: 100%;
	background: rgba(90, 110, 140, 0.7);
	clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
	z-index: 0;
	pointer-events: none;
}

.modern-form-card > * {
	position: relative;
	z-index: 2;
}

.modern-form-card h2 {
	font-size: 36px;
	font-weight: 800;
	color: #1a1a2e;
	margin-bottom: 40px;
	margin-top: 0;
}

.form-modern {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.form-modern .row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin-bottom: 25px;
}

.form-modern .row.full {
	grid-template-columns: 1fr;
}

.form-modern .form-group {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 0;
}

.form-modern .form-group i {
	position: absolute;
	left: 18px;
	font-size: 18px;
	color: #1BBC9B;
	z-index: 2;
}

.form-modern input,
.form-modern select {
	width: 100%;
	padding: 16px 18px 16px 50px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	font-size: 15px;
	font-family: inherit;
	background-color: rgba(255, 255, 255, 0.95);
	transition: all 0.3s ease;
	color: #282828;
}

.form-modern input::placeholder,
.form-modern select option {
	color: #999;
}

.form-modern input:focus,
.form-modern select:focus {
	outline: none;
	border-color: #1BBC9B;
	background-color: #fff;
	box-shadow: 0 0 0 3px rgba(27, 188, 155, 0.2);
}

.form-modern select {
	padding-right: 40px;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231BBC9B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 20px;
	padding-right: 45px;
}

.form-modern .form-group.button {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 15px;
}

.form-modern button {
	padding: 16px 50px;
	border-radius: 50px;
	background: linear-gradient(135deg, #1BBC9B 0%, #17a085 100%);
	color: #fff;
	border: none;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(27, 188, 155, 0.4);
}

.form-modern button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 45px rgba(27, 188, 155, 0.5);
}

.form-modern button:active {
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.modern-form-card {
		padding: 35px 30px;
	}

	.modern-form-card::before {
		display: none;
	}

	.modern-form-card h2 {
		font-size: 28px;
		color: #1a1a2e;
		margin-bottom: 30px;
	}

	.form-modern .row {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.form-modern input,
	.form-modern select {
		padding: 14px 16px 14px 45px;
		font-size: 14px;
		background-color: #f8f9fa;
		border-color: #e0e0e0;
	}

	.form-modern button {
		padding: 14px 40px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.modern-form-card {
		padding: 25px 20px;
	}

	.modern-form-card h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.form-modern .form-group i {
		font-size: 16px;
		left: 14px;
	}

	.form-modern input,
	.form-modern select {
		padding: 12px 14px 12px 40px;
		font-size: 14px;
	}

	.form-modern button {
		padding: 12px 30px;
		font-size: 13px;
		width: 100%;
	}
}

/* ===== END MODERN 2026 DESIGN ===== */
