/* Global button rounding override */
button, .btn, .cta-primary, .contact-btn {
    border-radius: 50px !important;
}
/* Mobile App Services page specific styles. Reuses global tokens from style.css */

/* CSS Variables - Use same palette for consistency */
.leanweave_logo {
	opacity: 1;
	transition: 10s;
}

.hero-section {
	min-height: 60vh;
	background:
		radial-gradient(ellipse at top left, #ff4500 0%, transparent 60%),
		radial-gradient(ellipse at bottom right, #ff8c00 0%, transparent 60%),
		linear-gradient(135deg, #1a1a1a 0%, #2d1b0e 50%, #1a1a1a 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 5% 0 5%;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="weave" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none"/><path d="M0 10h20M10 0v20" stroke="%23ff6b35" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23weave)"/></svg>');
	background-repeat: repeat;
	background-size: 20px 20px;
	opacity: 0.4;
	animation: geometricShift 15s ease-in-out infinite alternate;
}

@keyframes geometricShift {
	0% { transform: translateX(-2%) rotate(0.5deg); }
	100% { transform: translateX(2%) rotate(-0.5deg); }
}

.hero-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	width: 100%;
	gap: 4rem;
	z-index: 2;
	position: relative;
}

.hero-content {
	flex: 1;
	max-width: 600px;
}

.hero-title {
	font-family: 'Cabin', sans-serif;
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 800;
	color: white;
	line-height: 1.05;
	margin-bottom: 1rem;
	position: relative;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title .word {
	display: inline-block;
	animation: titleReveal 1.2s ease-out forwards;
	opacity: 0;
	transform: translateY(100px);
}

.hero-title .word:nth-child(1) { animation-delay: 0.2s; }
.hero-title .word:nth-child(2) {
	animation-delay: 0.4s;
	background: linear-gradient(45deg, #ff6b35, #ff8c00, #ffa500);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@keyframes titleReveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin-bottom: 2rem;
	animation: slideInLeft 1s ease-out 0.8s both;
	font-weight: 500;
}

@keyframes slideInLeft {
	0% { transform: translateX(-50px); opacity: 0; }
	100% { transform: translateX(0); opacity: 1; }
}

.hero-buttons { 
	display: flex; 
	gap: 1rem; 
	align-items: center; 
}

.hero-buttons .btn--primary {
	background: linear-gradient(135deg, var(--primary-color), #ff8c00);
	color: white;
	border: 2px solid var(--primary-color);
	padding: 12px 28px;
	border-radius: 5px;
	font-family: 'Inter', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.hero-buttons .btn--primary:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #d44d1c, #e67a00);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero-buttons .btn--secondary {
	color: #ff6b35;
	font-family: 'Inter', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
	background: none;
	border: none;
	cursor: pointer;
}

.hero-buttons .btn--secondary::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #ff6b35;
	transition: width 0.3s ease;
}

.hero-buttons .btn--secondary:hover::after { 
	width: 100%; 
}

.hero-image { flex: 0 0 360px; }

/* Statistics Section */
.statistics-section {
	padding: 64px;
}

.statistics-grid {
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--light-color);
	padding: 5rem 0;
	border-radius: 30px;
	border: 1px solid #eee;
	display: flex;
	justify-content: space-around;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}

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

.stat-number {
	font-family: 'Cabin', sans-serif;
	font-size: 3.5rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	line-height: 1;
}

.stat-label {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	color: var(--text-color);
	font-weight: 500;
}

/* App Types Section */
.app-types-section {
	padding: 5rem 0;
	background: white;
}

.app-types-section .section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem auto;
}

.app-types-section .section-header h2 {
	font-family: 'Cabin', sans-serif;
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 1.5rem;
}

.app-types-section .section-header p {
	font-family: 'Inter', sans-serif;
	font-size: 1.2rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

.app-types-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.app-type-card {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 16px;
	padding: 2.5rem;
	border: 2px solid transparent;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.app-type-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), #ff8c00);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.app-type-card:hover::before {
	transform: scaleX(1);
}

.app-type-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
	border-color: rgba(255, 107, 53, 0.2);
	background: white;
}

.card-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--primary-color), #ff8c00);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.app-type-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.card-icon svg {
	width: 32px;
	height: 32px;
	transition: all 0.3s ease;
}

.card-icon svg path {
	fill: white;
}

.app-type-card h3 {
	font-family: 'Cabin', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
}

.app-type-card:hover h3 {
	color: var(--primary-color);
}

.app-type-card p {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.type-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.type-features li {
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	color: var(--text-secondary);
	padding: 0.4rem 0;
	position: relative;
	padding-left: 1.5rem;
	transition: color 0.3s ease;
}

.type-features li::before {
	content: '◆';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-size: 0.8rem;
	top: 0.5rem;
}

.app-type-card:hover .type-features li {
	color: var(--text-color);
}

/* Responsive adjustments for app types */
@media (max-width: 768px) {
	.app-types-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.app-type-card {
		padding: 2rem;
	}
	
	.card-icon {
		width: 56px;
		height: 56px;
	}
	
	.card-icon svg {
		width: 28px;
		height: 28px;
	}
}

/* Mobile Services Section */
.mobile-services-section {
	padding: 5rem 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem auto;
}

.services-header h2 {
	font-family: 'Cabin', sans-serif;
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 1.5rem;
}

.services-header p {
	font-family: 'Inter', sans-serif;
	font-size: 1.2rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: white;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
}

.service-card h3 {
	font-family: 'Cabin', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.service-card p {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.service-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
}

.service-features li {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	color: var(--text-secondary);
	padding: 0.5rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ff6b35;
	font-weight: bold;
}

.service-btn {
	background: linear-gradient(135deg, #ff6b35, #ff8c00);
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.service-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* Scope Section */
.scope-section {
	padding: 5rem 0;
	background: var(--bg-primary);
}

.scope-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem auto;
}

.scope-header h2 {
	font-family: 'Cabin', sans-serif;
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 1.5rem;
}

.scope-header p {
	font-family: 'Inter', sans-serif;
	font-size: 1.2rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

.scope-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 1rem;
}

.scope-tab {
	background: none;
	border: none;
	padding: 12px 24px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	color: var(--text-light);
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.scope-tab.active,
.scope-tab:hover {
	color: var(--primary-color);
	background: rgba(255, 107, 53, 0.1);
}

.scope-content {
	max-width: 1200px;
	margin: 0 auto;
}

.scope-panel {
	display: none;
}

.scope-panel.active {
	display: block;
}

.panel-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.panel-left {
	background: white;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.framework-content h3 {
	font-family: 'Cabin', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.framework-content p {
	font-family: 'Inter', sans-serif;
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.framework-content h4 {
	font-family: 'Cabin', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
}

.benefits-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
}

.benefits-list li {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	color: var(--text-secondary);
	padding: 0.5rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.benefits-list li::before {
	content: '●';
	position: absolute;
	left: 0;
	color: #ff6b35;
}

.request-services-btn {
	background: linear-gradient(135deg, #ff6b35, #ff8c00);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.request-services-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(255, 107, 53, 0.3);
}

.panel-right {
	background: white;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tech-logos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.tech-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.tech-logo:hover {
	background: rgba(255, 107, 53, 0.05);
	transform: translateY(-5px);
}

.logo-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #ff6b35, #ff8c00);
	border-radius: 8px;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.8rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}

.logo-icon::before {
	content: attr(data-fallback);
	font-size: 0.7rem;
}

.tech-logo span {
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-color);
}

/* Client Feedback Section */
.client-feedback {
  max-width: 1100px;
  margin: 80px auto;
  padding: 20px;
  text-align: center;
}

.feedback-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-header {
    margin-bottom: 60px;
}

.feedback-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
}

.feedback-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    font-family: var(--font-paragraph);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.star {
    width: 20px;
    height: 20px;
    color: #ffd700;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 32px;
    font-style: italic;
    font-family: var(--font-paragraph);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    font-family: var(--font-heading);
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.client-title {
    font-size: 14px;
    color: #666;
    font-family: var(--font-paragraph);
}

.company-logo {
    height: 32px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--text-color);
}

.nav-arrows {
    display: flex;
    gap: 12px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.nav-arrow:hover {
    border-color: var(--text-color);
    background-color: var(--text-color);
    color: white;
}

.nav-arrow svg {
    width: 16px;
    height: 16px;
}

/* Clients Section */
.clients {
	padding: 3rem 0;
	background: var(--bg-primary);
}

.section-header {
	text-align: center;
	margin-bottom: 2rem;
}

.section-header h3 {
	font-family: 'Cabin', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--text-color);
}

.clients__logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
	opacity: 0.7;
}

.clients__logos img {
	height: 40px;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}

.clients__logos img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-container {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
	}

	.statistics-grid {
		flex-direction: column;
		gap: 2rem;
		padding: 3rem 2rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
		padding: 0 1rem;
	}

	.panel-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.scope-tabs {
		padding: 0 1rem;
	}

	.scope-tab {
		font-size: 0.9rem;
		padding: 0.6rem 1rem;
	}

	.tech-logos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.feedback-title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial {
        padding: 30px;
    }
}

@media (max-width: 480px) {
	.hero-buttons {
		flex-direction: column;
		gap: 1rem;
		width: 100%;
	}

	.hero-buttons .btn--primary,
	.hero-buttons .btn--secondary {
		width: 100%;
		text-align: center;
	}

	.services-grid {
		padding: 0 0.5rem;
	}

	.service-card {
		padding: 1.5rem;
	}

	.tech-logos-grid {
		grid-template-columns: 1fr;
	}
}

/* Techset Section Styles */
.techset {
	padding: 48px 0;
	background: var(--section-bg-light);
	position: relative;
	overflow: hidden;
}

.techset::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="weave" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none"/><path d="M0 10h20M10 0v20" stroke="%23ce422b" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23weave)"/></svg>');
	background-repeat: repeat;
	background-size: 20px 20px;
	opacity: 0.3;
}

.techset::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 1;
}

.techset .container { 
	max-width: 1200px; 
	margin: 0 auto; 
	position: relative;
	z-index: 2;
}

.techset__header { 
	max-width: 100%; 
	margin: 0 0 2rem 0; 
	text-align: left; 
}

.techset__header h2 { 
	font-family: 'Cabin', sans-serif; 
	font-size: 2.5rem; 
	font-weight: 800; 
	color: var(--text-color); 
	margin-bottom: 1rem; 
	position: relative; 
}

.techset__header h2::after { 
	content: ''; 
	position: absolute; 
	bottom: -10px; 
	left: 0; 
	width: 60px; 
	height: 4px; 
	background: linear-gradient(90deg, #ff6b35, #ff8c00); 
	border-radius: 2px; 
}

.techset__header p { 
	color: #666; 
	line-height: 1.7; 
}

.techset__tabs { 
	display: flex; 
	gap: 1rem; 
	flex-wrap: wrap; 
	margin-bottom: 3rem; 
	position: relative; 
}

.techset__tabs::after { 
	content: ''; 
	position: absolute; 
	bottom: -10px; 
	left: 0; 
	right: 0; 
	height: 1px; 
	background: linear-gradient(90deg, transparent, #e0e0e0, transparent); 
}

/* Use global Android-style techset tabs from style.css */

.techset__tab:focus-visible { 
	outline: 3px solid rgba(255, 107, 53, 0.35); 
	outline-offset: 2px; 
}

.techset__carousel { 
	position: relative; 
}

.techset__nav { 
	position: absolute; 
	top: 50%; 
	transform: translateY(-50%); 
	background: #fff; 
	border: 1px solid #e5e7eb; 
	width: 40px; 
	height: 40px; 
	border-radius: 50%; 
	display: grid; 
	place-items: center;
	cursor: pointer;
	transition: all .3s ease;
	z-index: 3;
	font-size: 1.4rem;
	color: #666;
	user-select: none;
}

.techset__nav:hover { 
	transform: translateY(-50%) scale(1.05); 
	box-shadow: 0 8px 20px rgba(0,0,0,.12); 
	border-color: #ff6b35; 
	color: var(--primary-color);
}

.techset__nav:active {
	transform: translateY(-50%) scale(0.95);
}

.techset__nav:focus {
	outline: 2px solid #ff6b35;
	outline-offset: 2px;
}

.techset__nav--prev { 
	left: -10px; 
}

.techset__nav--next { 
	right: -10px; 
}

.techset__track { 
	overflow: hidden; 
}

.techset__panel { 
	display: none; 
}

.techset__panel.active { 
	display: block; 
}

.techset__items { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
	gap: 2rem; 
	padding: 1rem 2rem; 
}

.techset__item { 
	display: flex; 
	flex-direction: column; 
	align-items: center; 
	gap: .75rem; 
	padding: 1rem; 
	border: 1px solid #eee; 
	border-radius: 12px; 
	background: #fff; 
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.techset__item img { 
	width: 56px; 
	height: 56px; 
	object-fit: contain; 
	filter: grayscale(10%); 
}

.techset__item span { 
	font-family: 'Inter', sans-serif; 
	color: #444; 
	font-weight: 600; 
	font-size: .95rem; 
}

.techset__item:hover { 
	transform: translateY(-4px); 
	box-shadow: 0 10px 24px rgba(0,0,0,.08); 
	border-color: #ff6b35; 
}

.techset__icon {
	width: 56px;
	height: 56px;
	/* background: linear-gradient(135deg, #ff6b35, #ff8c00); */
	background: linear-gradient(45deg, #ff6b35, #ff8c00, #ffa500);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.8rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}

.techset__icon::before {
	content: attr(data-fallback);
	font-size: 0.7rem;
}

/* Responsive adjustments for techset */
@media (max-width: 768px) {
	.techset { 
		padding: 32px 0; 
	}
	
	.techset__header h2 { 
		font-size: 2rem; 
	}
	
	.techset__items { 
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
		gap: 1rem; 
		padding: 0; 
	}
	
	.techset__tabs {
		justify-content: center;
		gap: 0.5rem;
	}
	
	.techset__tab {
		padding: 0.8rem 1.5rem;
		font-size: 0.85rem;
	}
	
	.techset__nav {
		width: 35px;
		height: 35px;
		font-size: 1.2rem;
	}
	
	.techset__nav--prev { 
		left: -5px; 
	}
	
	.techset__nav--next { 
		right: -5px; 
	}
	
	.techset__item {
		padding: 0.8rem;
	}
	
	.techset__icon {
		width: 48px;
		height: 48px;
		font-size: 0.7rem;
	}
}

@media (max-width: 640px) {
	.techset__tabs {
		flex-direction: column;
		gap: 0.5rem;
		align-items: center;
	}
	
	.techset__tab {
		width: 80%;
		max-width: 200px;
		text-align: center;
	}
	
	.techset__items {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	
	.techset__nav {
		width: 30px;
		height: 30px;
		font-size: 1rem;
	}
	
	.techset__nav--prev { 
		left: 0px; 
	}
	
	.techset__nav--next { 
		right: 0px; 
	}
}

/* Mobile App Development Cycle Section */
.development-cycle-section {
    background: 
        linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.development-cycle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), #ff8c00, transparent);
}

.development-cycle-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.2), transparent);
}

.development-cycle-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.development-cycle-header h2 {
    font-family: 'Cabin', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
}

.development-cycle-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c00);
    border-radius: 2px;
}

.development-cycle-header p {
    font-family: 'Inter', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.development-cycle-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.development-cycle-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 33.33%;
    width: 1px;
    background: linear-gradient(180deg, transparent, #e0e0e0, transparent);
    transform: translateX(-50%);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    background: var(--light-color);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.step-item:hover::before {
    left: 100%;
}

.step-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.step-item.active {
    background: linear-gradient(135deg, var(--primary-color), #ff8c00);
    color: var(--light-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}

.step-item.active::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-color);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.step-item h3 {
    font-family: 'Cabin', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.step-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.step-item.active h3,
.step-item.active p {
    color: var(--light-color);
}

.step-details {
    background: var(--light-color);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    position: relative;
}

.detail-panel {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.detail-panel.active {
    display: block;
}

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

.detail-panel h3 {
    font-family: 'Cabin', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
}

.detail-panel h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c00);
    border-radius: 2px;
}

.detail-panel p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.deliverables-list {
    margin-bottom: 2rem;
}

.deliverables-list h4 {
    font-family: 'Cabin', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.deliverables-list ul {
    list-style: none;
    padding: 0;
}

.deliverables-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.checkmark {
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Responsive Design for Development Cycle */
@media (max-width: 1024px) {
    .development-cycle-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .development-cycle-content::before {
        display: none;
    }
    
    .steps-list {
        order: 2;
    }
    
    .step-details {
        order: 1;
    }
}

@media (max-width: 768px) {
    .development-cycle-section {
        padding: 4rem 1rem;
    }
    
    .development-cycle-header h2 {
        font-size: 2rem;
    }
    
    .development-cycle-header p {
        font-size: 1rem;
    }
    
    .step-item {
        padding: 1.2rem;
    }
    
    .step-details {
        padding: 1.5rem;
    }
    
    .detail-panel h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .development-cycle-header h2 {
        font-size: 1.8rem;
    }
    
    .step-item h3 {
        font-size: 1rem;
    }
    
    .step-item p {
        font-size: 0.85rem;
    }
    
    .detail-panel h3 {
        font-size: 1.3rem;
    }
}