* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	background: #fff;
	overflow-x: hidden;
	color: #333
}

#sriLankaModal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	padding: 20px
}

.modal-content {
	background: white;
	padding: 40px 30px;
	border-radius: 16px;
	max-width: 450px;
	width: 90%;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	border: 3px solid #FF9800;
	animation: modalSlide .5s ease-out
}

@keyframes modalSlide {
	from {
		opacity: 0;
		transform: translateY(-30px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.modal-icon {
	font-size: 3.5rem;
	color: #FF9800;
	margin-bottom: 20px
}

.modal-title {
	font-size: 1.8rem;
	color: #1E40AF;
	margin-bottom: 15px;
	font-weight: 800
}

.modal-text {
	color: #555;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 25px
}

.modal-buttons {
	display: flex;
	gap: 15px;
	flex-direction: column
}

.modal-btn {
	padding: 14px;
	font-size: 1rem;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: all .3s;
	border: none;
	width: 100%
}

.modal-agree {
	background: #FF9800;
	color: white
}

.modal-agree:hover {
	background: #F57C00;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3)
}

.modal-disagree {
	background: #f1f5f9;
	color: #64748b;
	border: 2px solid #e2e8f0
}

.modal-disagree:hover {
	background: #e2e8f0;
	transform: translateY(-2px)
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99998;
    transition: opacity .5s;
}

.loader-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
}

.loader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

.loader-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FF9800;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
	0% {
		transform: rotate(0deg)
	}

	100% {
		transform: rotate(360deg)
	}
}

.main-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url('gif/sl-flag.gif') center/cover no-repeat;
	z-index: -1
}

.content-section {
	background: white;
	position: relative;
	z-index: 1
}

header {
	background: rgba(255, 255, 255, 0.98);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 152, 0, 0.1)
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none
}

.logo-img {
	height: 45px;
	width: auto;
	filter: drop-shadow(0 2px 4px rgba(255, 152, 0, 0.2))
}

.logo-text {
	font-size: 1.6rem;
	font-weight: 800;
	background: linear-gradient(135deg, #1E40AF, #1E40AF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

.nav-menu {
	display: flex;
	gap: 2rem;
	align-items: center
}

.nav-menu a {
	text-decoration: none;
	color: #334155;
	font-weight: 600;
	padding: .6rem 1.2rem;
	border-radius: 10px;
	transition: all .3s;
	font-size: 1rem;
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px
}

.nav-menu a:hover {
	color: #FF9800;
	background: rgba(255, 152, 0, 0.08);
	transform: translateY(-2px)
}

.nav-menu a.active {
	color: #FF9800;
	background: rgba(255, 152, 0, 0.1);
	font-weight: 700
}

.nav-menu a i {
	font-size: 1.1rem
}

.contact-btn {
	background: linear-gradient(135deg, #FF9800, #FF5722);
	color: white;
	padding: .8rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
	transition: all .3s;
	box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
	display: flex;
	align-items: center;
	gap: 8px
}

.contact-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3)
}

.mobile-menu-btn {
	display: none;
	background: linear-gradient(135deg, #FF9800, #FF5722);
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: white;
	padding: 12px;
	border-radius: 10px;
	transition: all .3s;
	box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center
}

.mobile-menu-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3)
}

.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	backdrop-filter: blur(10px)
}

.mobile-menu-overlay.active {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn .3s ease
}

.mobile-menu-content {
	background: white;
	width: 90%;
	max-width: 400px;
	padding: 3rem 2rem 2rem;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	position: relative;
	transform: translateY(20px);
	opacity: 0;
	transition: all .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.mobile-menu-overlay.active .mobile-menu-content {
	transform: translateY(0);
	opacity: 1
}

.mobile-menu-content a {
	text-decoration: none;
	color: #334155;
	font-weight: 600;
	padding: 1.2rem 1.5rem;
	border-radius: 12px;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	gap: 15px;
	border: 2px solid transparent;
	transition: all .3s;
	background: #f8fafc
}

.mobile-menu-content a i {
	font-size: 1.3rem;
	width: 30px;
	color: #FF9800
}

.mobile-menu-content a:hover {
	background: linear-gradient(135deg, #FF9800, #FF5722);
	color: white;
	transform: translateX(10px)
}

.mobile-menu-content a:hover i {
	color: white
}

.mobile-menu-content a.active {
	background: linear-gradient(135deg, #FF9800, #FF5722);
	color: white
}

.mobile-menu-content a.active i {
	color: white
}

.mobile-contact-btn {
	background: linear-gradient(135deg, #FF9800, #FF5722) !important;
	color: white !important;
	margin-top: 1rem;
	font-weight: 700 !important
}

.mobile-contact-btn i {
	color: white !important
}

.close-menu-btn {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: #f1f5f9;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #64748b;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;
	z-index: 10000
}

.close-menu-btn:hover {
	background: #FF9800;
	color: white;
	transform: rotate(90deg)
}

@keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.hero-section {
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	padding: 100px 1rem 60px;
	background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(255, 152, 0, 0.05))
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}

.flag-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('gif/sl-flag.gif') center/cover no-repeat;
	opacity: .1;
	filter: brightness(1.2)
}

.flag-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(255, 152, 0, 0.08) 50%, rgba(30, 64, 175, 0.08) 100%)
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 1;
	text-align: center
}

.hero-content {
	background: rgba(255, 255, 255, 0.95);
	padding: 3rem 2rem;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2)
}

.hero-logo-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem
}

.hero-logo {
	width: 100px;
	height: 100px;
	object-fit: contain;
	filter: drop-shadow(0 4px 12px rgba(255, 152, 0, 0.3));
	animation: floatLogo 3s ease-in-out infinite
}

@keyframes floatLogo {

	0%,
	100% {
		transform: translateY(0) rotate(0deg)
	}

	50% {
		transform: translateY(-10px) rotate(5deg)
	}
}

.hero-title {
	font-size: 4rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -1px
}

.title-lanka {
	color: #1E40AF
}

.title-web {
	background: linear-gradient(135deg, #FF9800, #FF5722);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

.hero-tagline {
	font-size: 1.8rem;
	color: #334155;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.3
}

.hero-description {
	font-size: 1.2rem;
	color: #64748b;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto 2.5rem
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin: 3rem 0;
	flex-wrap: wrap
}

.stat-item {
	text-align: center;
	min-width: 120px
}

.stat-number {
	font-size: 3rem;
	font-weight: 900;
	background: linear-gradient(135deg, #FF9800, #1E40AF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: .5rem
}

.stat-label {
	font-size: 1rem;
	color: #64748b;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px
}

.hero-services {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin: 2.5rem 0
}

.service-badge {
	display: flex;
	align-items: center;
	gap: .8rem;
	padding: 1rem 1.5rem;
	background: #f8fafc;
	border-radius: 50px;
	border: 2px solid #e2e8f0;
	transition: all .3s
}

.service-badge:hover {
	transform: translateY(-3px);
	background: white;
	border-color: #FF9800;
	box-shadow: 0 5px 15px rgba(255, 152, 0, 0.1)
}

.service-badge i {
	color: #FF9800;
	font-size: 1.4rem
}

.service-badge span {
	color: #334155;
	font-weight: 600;
	font-size: 1rem
}

.hero-cta {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 3rem
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .8rem;
	padding: 1rem 2.5rem;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all .3s;
	font-size: 1.1rem;
	border: 2px solid transparent;
	cursor: pointer;
	min-width: 200px
}

.btn-primary {
	background: linear-gradient(135deg, #FF9800, #FF5722);
	color: white;
	box-shadow: 0 6px 20px rgba(255, 152, 0, 0.2)
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 25px rgba(255, 152, 0, 0.3)
}

.btn-secondary {
	background: transparent;
	color: #1E40AF;
	border-color: #1E40AF
}

.btn-secondary:hover {
	background: #1E40AF;
	color: white;
	transform: translateY(-3px)
}

@media (max-width:768px) {
	.hero-content {
		padding: 2rem 1.5rem
	}

	.hero-title {
		font-size: 2.5rem
	}

	.hero-tagline {
		font-size: 1.4rem
	}

	.hero-description {
		font-size: 1.1rem
	}

	.stat-number {
		font-size: 2.5rem
	}

	.hero-stats {
		gap: 2rem
	}

	.hero-cta {
		flex-direction: column;
		align-items: center
	}

	.btn {
		width: 100%;
		max-width: 300px
	}
}

.code-panel {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
	width: 100%;
	border: 1px solid #334155;
	position: relative
}

.code-panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #FF9800, transparent)
}

.code-header {
	background: #0a0f1a;
	padding: 1.2rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #334155
}

.code-dots {
	display: flex;
	gap: .8rem
}

.dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	transition: all .3s;
	cursor: pointer
}

.dot:hover {
	transform: scale(1.2)
}

.dot.red {
	background: #ef4444;
	box-shadow: 0 0 10px rgba(239, 68, 68, 0.5)
}

.dot.yellow {
	background: #f59e0b;
	box-shadow: 0 0 10px rgba(245, 158, 11, 0.5)
}

.dot.green {
	background: #10b981;
	box-shadow: 0 0 10px rgba(16, 185, 129, 0.5)
}

.code-title {
	color: #94a3b8;
	font-family: 'JetBrains Mono', 'Monaco', 'Menlo', monospace;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 1px
}

.code-content {
	padding: 2.5rem;
	max-height: 400px;
	overflow-y: auto;
	position: relative
}

.code-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(to bottom, #FF9800, #1E40AF);
	opacity: .5
}

.code-content::-webkit-scrollbar {
	width: 8px
}

.code-content::-webkit-scrollbar-track {
	background: #1e293b;
	border-radius: 4px
}

.code-content::-webkit-scrollbar-thumb {
	background: linear-gradient(to bottom, #FF9800, #1E40AF);
	border-radius: 4px
}

.code-content::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(to bottom, #FF5722, #1E40AF)
}

.code-content pre {
	margin: 0;
	overflow: visible;
	font-family: 'JetBrains Mono', 'Monaco', 'Menlo', monospace
}

.code-content code {
	font-size: .95rem;
	line-height: 1.8;
	color: #e2e8f0;
	display: block
}

.code-line {
	padding: 2px 0;
	transition: all .3s;
	border-left: 2px solid transparent;
	padding-left: 10px
}

.code-line:hover {
	background: rgba(255, 152, 0, 0.1);
	border-left-color: #FF9800;
	transform: translateX(5px)
}

.code-keyword {
	color: #f472b6
}

.code-string {
	color: #86efac
}

.code-comment {
	color: #94a3b8;
	font-style: italic
}

.code-function {
	color: #60a5fa
}

.code-variable {
	color: #c084fc
}

.code-number {
	color: #fbbf24
}

.code-console {
	color: #34d399
}

.code-operator {
	color: #f472b6
}

.code-bracket {
	color: #f472b6
}

.code-object {
	color: #60a5fa
}

.code-footer {
	background: #0a0f1a;
	padding: 1.8rem;
	border-top: 1px solid #334155
}

.tech-stack {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	justify-content: center
}

.tech-item {
	background: rgba(255, 152, 0, 0.15);
	color: #FF9800;
	padding: .6rem 1.2rem;
	border-radius: 25px;
	font-size: .9rem;
	font-weight: 700;
	border: 2px solid rgba(255, 152, 0, 0.3);
	transition: all .3s ease;
	letter-spacing: .5px
}

.tech-item:hover {
	background: rgba(255, 152, 0, 0.3);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
	border-color: #FF9800
}

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	color: #1E40AF;
	font-size: 2rem;
	animation: bounce 2s infinite;
	background: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
	border: 2px solid rgba(30, 64, 175, 0.1)
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0) translateX(-50%)
	}

	40% {
		transform: translateY(-15px) translateX(-50%)
	}

	60% {
		transform: translateY(-7px) translateX(-50%)
	}
}

.screenshot-container {
	position: relative;
	width: 100%;
	height: 200px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transition: all .3s;
	border: 2px solid #e2e8f0
}

.screenshot-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	border-color: #FF9800
}

.screenshot {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s
}

.screenshot-container:hover .screenshot {
	transform: scale(1.05)
}

.screenshot-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(30, 64, 175, 0.9), rgba(255, 152, 0, 0.9));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .3s
}

.screenshot-container:hover .screenshot-overlay {
	opacity: 1
}

.screenshot-overlay i {
	color: white;
	font-size: 2.5rem
}

.section {
	padding: 8rem 2rem;
	max-width: 1200px;
	margin: 0 auto
}

.section-title {
	font-size: 3rem;
	color: #1E40AF;
	margin-bottom: 2rem;
	text-align: center;
	font-weight: 900;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%)
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(135deg, #FF9800, #FF5722);
	border-radius: 2px
}

.section-subtitle {
	text-align: center;
	color: #64748b;
	font-size: 1.3rem;
	margin-bottom: 5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	font-weight: 500
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center
}

.about-text {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #475569
}

.about-text p {
	margin-bottom: 1.8rem
}

.about-highlight {
	background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(30, 64, 175, 0.1));
	border-left: 5px solid #FF9800;
	padding: 2rem;
	border-radius: 12px;
	margin: 2.5rem 0;
	position: relative;
	overflow: hidden
}

.about-highlight::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: translateX(-100%);
	animation: shimmer 3s infinite
}

@keyframes shimmer {
	100% {
		transform: translateX(100%)
	}
}

.about-image {
	text-align: center;
	position: relative
}

.about-image-main {
	max-width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	border: 2px solid #e2e8f0;
	transition: all .3s
}

.about-image-main:hover {
	transform: scale(1.02);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
	border-color: #FF9800
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem
}

.service-card {
	background: white;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	transition: all .4s;
	border: 2px solid transparent;
	text-align: center;
	position: relative;
	overflow: hidden
}

.service-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
	border-color: #FF9800
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #FF9800, #FF5722)
}

.service-icon {
	font-size: 3.5rem;
	color: #FF9800;
	margin-bottom: 2rem;
	transition: all .3s
}

.service-card:hover .service-icon {
	transform: scale(1.2) rotate(5deg)
}

.service-card h3 {
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
	color: #1e293b;
	font-weight: 800
}

.service-card p {
	color: #64748b;
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 2rem
}

.service-tech {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	justify-content: center;
	margin-top: 1.5rem
}

.tech-tag {
	background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(30, 64, 175, 0.1));
	color: #92400e;
	padding: .6rem 1.2rem;
	border-radius: 25px;
	font-size: .9rem;
	font-weight: 700;
	border: 1px solid rgba(255, 152, 0, 0.2);
	transition: all .3s
}

.tech-tag:hover {
	background: linear-gradient(135deg, #FF9800, #FF5722);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 152, 0, 0.2)
}

.tabs-container {
	margin-top: 4rem
}

.tabs-header {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 4rem
}

.tab-btn {
	padding: 1.2rem 2.5rem;
	background: white;
	border: 2px solid #e2e8f0;
	color: #64748b;
	border-radius: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: all .3s;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden
}

.tab-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.2), transparent);
	transition: left .5s
}

.tab-btn:hover::before {
	left: 100%
}

.tab-btn.active {
	background: linear-gradient(135deg, #FF9800, #FF5722);
	color: white;
	border-color: #FF9800;
	box-shadow: 0 10px 25px rgba(255, 152, 0, 0.2);
	transform: translateY(-3px)
}

.tab-btn:hover:not(.active) {
	background: #f8fafc;
	border-color: #cbd5e1;
	transform: translateY(-2px)
}

.tab-content {
	display: none;
	animation: fadeIn .5s ease
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.tab-content.active {
	display: block
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem
}

.project-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all .3s;
	border: 2px solid transparent
}

.project-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	border-color: #FF9800
}

.project-header {
	background: linear-gradient(135deg, #1E40AF, #3B82F6);
	color: white;
	padding: 2rem;
	text-align: center;
	position: relative;
	overflow: hidden
}

.project-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: translateX(-100%);
	animation: shimmer 3s infinite
}

.project-client {
	font-size: 1rem;
	opacity: .9;
	margin-bottom: 8px;
	font-weight: 600
}

.project-title {
	font-size: 1.5rem;
	margin-bottom: .8rem;
	font-weight: 800
}

.project-content {
	padding: 2rem;
	text-align: center
}

.project-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 1rem;
	color: #FF9800;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	background: rgba(255, 152, 0, 0.1);
	padding: .8rem 1.5rem;
	border-radius: 10px;
	transition: all .3s;
	border: 2px solid transparent
}

.project-link:hover {
	background: linear-gradient(135deg, #FF9800, #FF5722);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 152, 0, 0.2);
	border-color: #FF9800
}

.api-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all .3s;
	border: 2px solid transparent;
	text-align: center
}

.api-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	border-color: #FF9800
}

.api-icon {
	font-size: 3rem;
	color: #FF9800;
	margin-bottom: 1.5rem;
	transition: all .3s
}

.api-card:hover .api-icon {
	transform: scale(1.2) rotate(10deg)
}

.api-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: #1e293b;
	font-weight: 800
}

.api-endpoint {
	font-size: .9rem;
	color: #64748b;
	margin-bottom: 1.5rem;
	word-break: break-all;
	background: #f8fafc;
	padding: 1rem;
	border-radius: 8px;
	font-family: 'JetBrains Mono', monospace;
	border: 1px solid #e2e8f0;
	transition: all .3s
}

.api-card:hover .api-endpoint {
	background: rgba(255, 152, 0, 0.05);
	border-color: #FF9800
}

.contact-section {
	background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
	padding: 6rem 2rem;
	border-radius: 30px;
	margin: 6rem auto;
	max-width: 1000px;
	position: relative;
	overflow: hidden
}

.contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(135deg, #FF9800, #1E40AF)
}

.contact-form {
	background: white;
	padding: 3.5rem;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	margin-top: 3rem;
	border: 2px solid #e2e8f0
}

.form-group {
	margin-bottom: 2rem
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem
}

#contact.section {
    padding-bottom: 2rem !important;
}

.contact-section {
    margin-bottom: 2rem !important;
}

.footer {
    margin-top: 2rem !important;
}

.footer {
	background: linear-gradient(135deg, #1e293b, #0f172a);
	color: white;
	padding: 5rem 2rem 3rem;
	margin-top: 8rem;
	position: relative;
	overflow: hidden
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(135deg, #FF9800, #1E40AF)
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 4rem
}

.footer-section h3 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: #FF9800;
	font-weight: 800;
	position: relative;
	display: inline-block
}

.footer-section h3::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 50px;
	height: 3px;
	background: #FF9800;
	border-radius: 2px
}

.footer-links {
	list-style: none
}

.footer-links li {
	margin-bottom: 1.2rem
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all .3s;
	font-size: 1.05rem;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: .5rem;
	border-radius: 6px
}

.footer-links a:hover {
	color: #FF9800;
	background: rgba(255, 152, 0, 0.1);
	transform: translateX(10px)
}

.footer-links a i {
	font-size: 1.1rem;
	width: 24px
}

.copyright {
	text-align: center;
	padding-top: 4rem;
	margin-top: 4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 2rem
}

.footer-logo-img {
	width: 50px;
	height: 50px;
	filter: drop-shadow(0 4px 8px rgba(255, 152, 0, 0.3))
}

.footer-logo-text {
	font-size: 1.8rem;
	font-weight: 800;
	background: linear-gradient(135deg, #1E40AF, #1E40AF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

@media (min-width:992px) {
	.hero-columns {
		grid-template-columns: 1fr 1fr;
		gap: 5rem
	}

	.scroll-indicator {
		display: block
	}
}

@media (min-width:768px) {
	.hero-features {
		grid-template-columns: 1fr 1fr
	}

	.hero-buttons {
		flex-direction: row
	}

	.mobile-menu-btn {
		display: none
	}
}

@media (max-width:991px) {
	.hero-main-box {
		padding: 3rem
	}

	.logo-wrapper {
		flex-direction: column;
		gap: 1.5rem
	}

	.hero-main-title {
		font-size: 3rem
	}

	.hero-tagline {
		flex-direction: column;
		gap: 1rem
	}

	.tagline-dot {
		display: none
	}

	.hero-stats {
		flex-direction: column;
		gap: 2rem
	}

	.hero-features {
		gap: 1.5rem
	}

	.code-content {
		padding: 2rem
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 4rem
	}

	.contact-form {
		padding: 2.5rem
	}
}

@media (max-width:767px) {
	.nav-menu {
		display: none
	}

	.mobile-menu-btn {
		display: flex;
		align-items: center;
		justify-content: center
	}

	.hero-main-box {
		padding: 2rem
	}

	.hero-main-title {
		font-size: 2.5rem
	}

	.hero-subtitle {
		font-size: 1.4rem
	}

	.hero-features {
		grid-template-columns: 1fr
	}

	.btn {
		padding: 1rem 2rem;
		font-size: 1rem
	}

	.section {
		padding: 6rem 1.5rem
	}

	.section-title {
		font-size: 2.5rem
	}

	.section-subtitle {
		font-size: 1.1rem;
		margin-bottom: 4rem
	}

	.tabs-header {
		gap: 1rem;
		flex-direction: column;
		align-items: stretch
	}

	.tab-btn {
		padding: 1rem;
		justify-content: center
	}

	.form-row {
		grid-template-columns: 1fr
	}

	.contact-form {
		padding: 2rem
	}

	.projects-grid {
		grid-template-columns: 1fr
	}

	.services-grid {
		grid-template-columns: 1fr
	}
}

@media (max-width:480px) {
	.hero-main-title {
		font-size: 2rem
	}

	.hero-tagline {
		font-size: 1rem
	}

	.feature-item span {
		font-size: 1rem
	}

	.stat-number {
		font-size: 2rem
	}

	.hero-buttons {
		flex-direction: column
	}

	.section-title {
		font-size: 2rem
	}

	.logo-text {
		font-size: 1.3rem
	}

	.service-card {
		padding: 2rem
	}

	.contact-form {
		padding: 1.5rem
	}

	.code-content code {
		font-size: .85rem
	}

	.tech-item {
		padding: .5rem 1rem;
		font-size: .8rem
	}

	.mobile-menu-content {
		width: 95%;
		padding: 2.5rem 1.5rem
	}

	.mobile-menu-content a {
		padding: 1rem 1.2rem;
		font-size: 1.1rem
	}

	.logo-text {
		font-size: 1.3rem
	}
}

* {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2)
}
.form-submit {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .form-submit {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .form-submit {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-input, .form-textarea {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
}

.contact-section {
    background: #f8fafc;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 20px;
    max-width: 1200px;
    margin: 0 auto 6rem;
}

.whatsapp-container {
    margin-bottom: 3rem;
}

.whatsapp-icon-container {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.whatsapp-title {
    font-size: 2rem;
    color: #1E40AF;
    margin-bottom: 1rem;
    font-weight: 800;
}

.whatsapp-description {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.whatsapp-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 90%;
    border: 2px solid rgba(37, 211, 102, 0.1);
}

.whatsapp-card-header {
    margin-bottom: 2rem;
}

.whatsapp-card-title {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.whatsapp-card-subtitle {
    color: #64748b;
    font-size: 0.95rem;
}

.whatsapp-contact-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f0fff4;
    border-radius: 10px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.whatsapp-number i {
    color: #25D366;
    font-size: 1.5rem;
}

.whatsapp-hours {
    color: #4a5568;
    font-size: 0.9rem;
    opacity: 0.8;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem 2.5rem;
    background: #25D366;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid #25D366;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.whatsapp-btn:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
        margin: 4rem auto;
    }
    
    .whatsapp-icon-container {
        font-size: 3.5rem;
    }
    
    .whatsapp-title {
        font-size: 1.8rem;
    }
    
    .whatsapp-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .whatsapp-card {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .whatsapp-card-title {
        font-size: 1.3rem;
    }
    
    .whatsapp-number {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .whatsapp-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2.5rem 1rem;
        margin: 3rem auto;
    }
    
    .whatsapp-icon-container {
        font-size: 3rem;
    }
    
    .whatsapp-title {
        font-size: 1.6rem;
    }
    
    .whatsapp-card {
        padding: 1.5rem 1rem;
        width: 100%;
    }
    
    .whatsapp-contact-info {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .whatsapp-number {
        font-size: 1.1rem;
    }
    
    .whatsapp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 280px;
    }
    
    .whatsapp-card-title {
        font-size: 1.2rem;
    }
    
    .whatsapp-card-subtitle {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-section {
        padding: 3.5rem 2rem;
    }
    
    .whatsapp-btn {
        max-width: 320px;
    }
}

@media (min-width: 1200px) {
    .contact-section {
        padding: 5rem 3rem;
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: floatAnimation 3s ease-in-out infinite;
}

.floating-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.floating-whatsapp-btn:hover::before {
    transform: scale(1);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp-tooltip {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseEffect {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulseEffect 2s infinite;
}


@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .floating-whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

.floating-whatsapp.scrolling {
    opacity: 0.7;
    transform: scale(0.95);
}
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF5722;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 5px rgba(255, 87, 34, 0);
    }
}

.floating-whatsapp-tooltip {
    background: linear-gradient(135deg, #1E40AF, #25D366);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(20px) scale(0.9);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.tooltip-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #1E40AF, #25D366);
}

.tooltip-text {
    position: relative;
    z-index: 2;
}

@media (min-width: 769px) {
    .floating-whatsapp:hover .floating-whatsapp-tooltip {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 360px) {
    .floating-whatsapp {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Privacy Policy & Terms of Service Shared Styling */
.privacy-container,
.terms-container {
    max-width: 1000px;
    margin: 0 auto 120px;
    padding: 6rem 3rem 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 120px;
}

.privacy-header,
.terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-header h1,
.terms-header h1 {
    font-size: 3rem;
    color: #1E40AF;
    margin-bottom: 1rem;
    font-weight: 900;
}

.privacy-header .last-updated,
.terms-header .last-updated {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.privacy-content,
.terms-content {
    line-height: 1.8;
}

.privacy-section,
.terms-section {
    margin-bottom: 3rem;
}

.privacy-section h2,
.terms-section h2 {
    font-size: 1.8rem;
    color: #1E40AF;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FF9800;
}

.privacy-section h3,
.terms-section h3 {
    font-size: 1.3rem;
    color: #334155;
    margin: 1.5rem 0 1rem;
}

.privacy-section p,
.terms-section p {
    margin-bottom: 1rem;
    color: #475569;
}

.privacy-section ul,
.terms-section ul,
.privacy-section ol,
.terms-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 0.8rem;
    color: #475569;
}

/* Privacy-specific styles */
.privacy-highlight {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(30, 64, 175, 0.1));
    border-left: 4px solid #FF9800;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-privacy {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    border: 1px solid #e2e8f0;
}

.contact-privacy h3 {
    color: #1E40AF;
    margin-bottom: 1rem;
}

/* Terms-specific styles */
.terms-highlight,
.terms-warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(30, 64, 175, 0.1));
    border-left: 4px solid #FF9800;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.terms-warning {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(255, 152, 0, 0.1));
    border-left: 4px solid #ef4444;
}

.contact-terms {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    border: 1px solid #e2e8f0;
}

.contact-terms h3 {
    color: #1E40AF;
    margin-bottom: 1rem;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-table th {
    background: linear-gradient(135deg, #1E40AF, #3B82F6);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.service-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.service-table tr:last-child td {
    border-bottom: none;
}

.service-table tr:hover {
    background: #f8fafc;
}

/* Terms Notice Section */
.terms-notice {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
    border-left: 4px solid #1E40AF;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.terms-notice h3 {
    color: #1E40AF;
    margin-bottom: 1rem;
}

.terms-notice p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.terms-notice strong {
    color: #1E40AF;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .privacy-container,
    .terms-container {
        margin: 80px auto 40px;
        padding: 2rem 1.5rem;
    }
    
    .privacy-header h1,
    .terms-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-privacy,
    .contact-terms {
        padding: 1.5rem;
    }
    
    .service-table {
        display: block;
        overflow-x: auto;
    }
    
    .terms-notice {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-container,
    .terms-container {
        margin: 70px auto 30px;
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .privacy-header h1,
    .terms-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section ul,
    .terms-section ul,
    .privacy-section ol,
    .terms-section ol {
        margin-left: 1.5rem;
    }
}
