
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
	background: linear-gradient(135deg, #fff5f0 0%, #fff0f5 100%);
}

/* Custom Colors - Vibrant & Playful */
:root {
	--primary-blue: #4a90e2;
	--primary-orange: #ff6b35;
	--primary-pink: #ff6b9d;
	--primary-yellow: #ffd93d;
	--primary-green: #6bcf7f;
	--primary-purple: #9b59b6;
	--dark-text: #2c3e50;
	--light-bg: #fff9f5;
}

/* Top Bar - Colorful */
.top-bar {
	background: #0066CC;
	color: white;
	padding: 10px 0;
	position: relative;
	z-index: 1002;
	overflow: hidden;
}

.top-bar::before {
	content: '★';
	position: absolute;
	top: -20px;
	left: -20px;
	font-size: 100px;
	opacity: 0.1;
	color: white;
	animation: rotate 20s linear infinite;
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.contact-info-simple {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.contact-info-simple a {
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 0.85rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.contact-info-simple a:hover {
	transform: translateY(-2px) scale(1.05);
	text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.contact-info-simple i {
	font-size: 0.9rem;
}

/* Main Navigation - Playful */
.main-nav {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 1001;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	border-bottom: 3px solid transparent;
	border-image: linear-gradient(90deg, var(--primary-orange), #0066CC, var(--primary-blue));
	border-image-slice: 1;
}

.logo-area {
	display: flex;
	align-items: baseline;
	cursor: pointer;
	transition: all 0.3s ease;
}

.logo-area:hover {
	transform: scale(1.05);
}

.logo-part1 {
	font-size: 32px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.logo-part2 {
	font-size: 32px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.logo-part3 {
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.logo-part4 {
	font-size: 22px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu li a {
	color: var(--dark-text);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 5px 0;
}

.nav-menu li a::before {
	content: '🎈';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: all 0.3s ease;
	font-size: 12px;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
	opacity: 1;
	bottom: -25px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.quote-btn-nav {
	background: #0066CC;
	color: white !important;
	padding: 10px 28px !important;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
 box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.quote-btn-nav:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Hero Section - Playful */
.hero {
	background: linear-gradient(135deg, #0066CC 0%, #3399FF 50%, #66CCFF 100%);
	padding: 120px 0 100px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '🎪';
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 80px;
	opacity: 0.2;
	animation: bounce 3s ease-in-out infinite;
}

.hero::after {
	content: '🎠';
	position: absolute;
	bottom: 20px;
	right: 20px;
	font-size: 80px;
	opacity: 0.2;
	animation: bounce 3s ease-in-out infinite reverse;
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: white;
	text-shadow: 3px 3px 0 rgba(0,0,0,0.1);
}

.hero h1 span {
	background: linear-gradient(135deg, #fff, #ffeb3b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	display: inline-block;
}

.hero p {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.95);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.floating-icon {
	animation: float 4s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Styles - Colorful */
.section {
	padding: 80px 0;
	position: relative;
}

.section-intro {
	background: #F6F7F0;
}

.section-why-us {
	background: linear-gradient(135deg, #e0f2fe, #fff0f5);
}

.section-about {
	background: linear-gradient(135deg, #e6f0ff, #66b2ff);
}

.section-packages {
	background: linear-gradient(135deg, #e6f7ff, #fff0e6);
}

.section-solutions {
	 background: linear-gradient(135deg, #e6f0ff, #cce0ff);
}

.section-projects {
	background: linear-gradient(135deg, #e6f0ff, #cce0ff);
}

.section-sourcing {
	background: linear-gradient(135deg, #e6ffe6, #fff0f5);
}

.section-contact {
	 background: linear-gradient(135deg, #e6f0ff, #cce0ff);
}

.section-newsletter {
	background: linear-gradient(135deg, #0066CC, #3399FF, #66CCFF);
	position: relative;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #0066CC, #3399FF, #66CCFF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}

.section-title:after {
	content: '✨';
	position: absolute;
	bottom: -15px;
	left: 0;
	font-size: 24px;
	animation: sparkle 1s ease-in-out infinite;
}

@keyframes sparkle {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.2); }
}

.text-center .section-title:after {
	left: 50%;
	transform: translateX(-50%);
}

.section-subtitle {
	color: #666;
	font-size: 1.1rem;
	margin-bottom: 3rem;
}

/* Colorful Cards */
.package-card, .feature-card {
	background: white;
	border-radius: 30px;
	padding: 2rem;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	height: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
}

.package-card::before, .feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
   background: linear-gradient(90deg, #0066CC, #3399FF, #66CCFF);
}

.package-card:hover, .feature-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border-image: linear-gradient(135deg, #003366, #0066CC, #66B2FF);
	border-image-slice: 1;
}

.package-card i, .feature-card i {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: inline-block;
	transition: all 0.3s ease;
}

.package-card:hover i, .feature-card:hover i {
	transform: scale(1.1) rotate(10deg);
}

.package-badge {
	display: inline-block;
   background: linear-gradient(135deg, #003366, #0066CC, #66B2FF);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1rem;
	box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

/* Stats Section - Colorful */
.stats-section {
  background: linear-gradient(135deg, #0066CC, #3399FF, #66CCFF);
	color: white;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: '🎉';
	position: absolute;
	top: -30px;
	left: -30px;
	font-size: 150px;
	opacity: 0.1;
	animation: rotate 30s linear infinite;
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

/* Contact Cards */
.contact-card {
	background: white;
	border-radius: 30px;
	padding: 2rem;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact-card::after {
	content: '🎈';
	position: absolute;
	bottom: -20px;
	right: -20px;
	font-size: 80px;
	opacity: 0.1;
	transition: all 0.3s ease;
}

.contact-card:hover::after {
	transform: scale(1.2);
	opacity: 0.2;
}

.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
	transform: rotateY(360deg);
}

.contact-icon i {
	font-size: 2rem;
	color: white;
}

/* Modern Footer CSS - New Added */
.modern-footer {
	background: #133062;
	position: relative;
	overflow: hidden;
}

.modern-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 200%;
	height: 100%;
	background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
	animation: shimmer 15s infinite linear;
	pointer-events: none;
}

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

.floating-shape {
	position: absolute;
	background: rgba(255,255,255,0.03);
	border-radius: 50%;
	animation: floatShape 20s infinite ease-in-out;
	pointer-events: none;
}

@keyframes floatShape {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-30px) rotate(5deg); }
}

.footer-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 70px 40px 30px;
	position: relative;
	z-index: 2;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 50px;
	margin-bottom: 50px;
}

.footer-brand {
	grid-column: span 1;
}

.brand-description {
	color: rgba(255,255,255,0.7);
	line-height: 1.6;
	margin-bottom: 25px;
	font-size: 0.95rem;
}

.social-links-modern {
	display: flex;
	gap: 15px;
}

.social-icon {
	width: 42px;
	height: 42px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
}

.social-icon:hover {
	transform: translateY(-5px) scale(1.1);
	background: linear-gradient(135deg, #ff6b35, #f4a261);
	box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

.footer-header {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 25px;
	position: relative;
	display: inline-block;
	background: linear-gradient(135deg, #ffd966, #ffaa33);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-header::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #ff6b35, #f4a261);
	border-radius: 3px;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 14px;
}

.footer-links a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
}

.footer-links a i {
	font-size: 0.8rem;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: #ff6b35;
	transform: translateX(8px);
}

.footer-links a:hover i {
	opacity: 1;
	transform: translateX(3px);
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	color: rgba(255,255,255,0.7);
	font-size: 0.95rem;
}

.contact-icon-footer {
	width: 40px;
	height: 40px;
	background: rgba(255,107,53,0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.contact-icon-footer i {
	font-size: 1.2rem;
	color: #ff6b35;
}

.contact-item:hover .contact-icon-footer {
	background: rgba(255,107,53,0.3);
	transform: scale(1.05);
}

.contact-item a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: #ff6b35;
}

.contact-item strong {
	color: white;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	color: rgba(255,255,255,0.7);
	font-size: 0.95rem;
	padding: 8px 0;
	border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.hours-day {
	font-weight: 500;
}

.hours-time {
	color: #ffd966;
}

.closed-badge {
	background: rgba(231, 76, 60, 0.2);
	padding: 2px 10px;
	border-radius: 20px;
	font-size: 0.75rem;
	color: #e74c3c;
}

.help-section {
	background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(244,162,97,0.1));
	border-radius: 20px;
	padding: 20px;
	margin-top: 20px;
	text-align: center;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.1);
}

.help-section h4 {
	color: white;
	font-size: 1rem;
	margin-bottom: 10px;
}

.help-section p {
	color: rgba(255,255,255,0.6);
	font-size: 0.85rem;
	margin-bottom: 15px;
}

.consult-btn {
	background: linear-gradient(135deg, #ff6b35, #f4a261);
	border: none;
	padding: 10px 25px;
	border-radius: 50px;
	color: white;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-family: 'Poppins', sans-serif;
}

.consult-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255,107,53,0.4);
	gap: 12px;
}

.newsletter-section-footer {
	background: #f6f7f0;
	border-radius: 20px;
	padding: 25px;
	margin-bottom: 40px;
	text-align: center;
	border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-section-footer h3 {
	color: #133062;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.newsletter-section-footer p {
	color: #133062;
	font-size: 0.85rem;
	margin-bottom: 20px;
}

.newsletter-form {
	display: flex;
	gap: 10px;
	max-width: 450px;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: center;
}

.newsletter-input {
	flex: 1;
	min-width: 200px;
	padding: 12px 20px;
	border: none;
	border-radius: 50px;
	background: #133062;
	color: white;
	font-family: 'Poppins', sans-serif;
}

.newsletter-input::placeholder {
	color: rgba(255,255,255,0.5);
}

.newsletter-input:focus {
	outline: none;
	background: #133062;
}

.newsletter-btn {
	background: linear-gradient(135deg, #ff6b35, #f4a261);
	border: none;
	padding: 12px 28px;
	border-radius: 50px;
	color: white;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Poppins', sans-serif;
}

.newsletter-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

.copyright {
	text-align: center;
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.5);
	font-size: 0.85rem;
}

.copyright a {
	color: #ff6b35;
	text-decoration: none;
}

.copyright a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.footer-container {
		padding: 50px 25px 25px;
	}
	.footer-grid {
		gap: 35px;
	}
	.newsletter-form {
		flex-direction: column;
	}
	.newsletter-input {
		width: 100%;
	}
	.hours-item {
		flex-direction: column;
		gap: 5px;
	}
}

/* Button Styles */
.btn-primary-custom {
	background: linear-gradient(135deg, #CC7400, #F39200, #FFB84D);
	color: white;
	border: none;
	padding: 12px 32px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-right: 1rem;
	display: inline-block;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.btn-primary-custom:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(255,107,53,0.4);
	color: white;
}

.btn-outline-custom {
	background: white;
	color: var(--primary-orange);
	border: 2px solid var(--primary-orange);
	padding: 12px 32px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.btn-outline-custom:hover {
	background: linear-gradient(135deg, #CC7400, #F39200, #FFB84D);
	color: white;
	transform: translateY(-3px);
	border-color: transparent;
}

/* Mobile Responsive */
.mobile-menu-btn {
	display: none;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
	border: none;
	font-size: 24px;
	color: white;
	cursor: pointer;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

@media (max-width: 991px) {
	.mobile-menu-btn {
		display: block;
	}
	
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 20px;
		gap: 1rem;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		border-radius: 0 0 30px 30px;
	}
	
	.nav-menu.active {
		display: flex;
		animation: slideDown 0.3s ease-out;
	}
	
	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	.hero h1 {
		font-size: 2.5rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2rem;
	}
	.contact-info-simple {
		justify-content: center;
		flex-direction: column;
		gap: 0.5rem;
	}
}

/* Back to top */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(255,107,53,0.3);
	font-size: 20px;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}
