:root {
	--primary-color: #ff6b35;
	--secondary-color: #1a1a2e;
	--accent-color: #16213e;
	--text-light: #ffffff;
	--text-dark: #333333;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', -webkit-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

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

.hero-title {
	font-family: 'Inter', 'Poppins', sans-serif;
	font-size: 4rem;
	font-weight: 800;
	color: var(--text-light);
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	opacity: 0.9;
	font-weight: 400;
}

.cta-button {
	background: linear-gradient(45deg, var(--primary-color), #ff8a50);
	border: none;
	padding: 15px 40px;
	font-size: 1.2rem;
	font-weight: 600;
	border-radius: 50px;
	color: white;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
	color: white;
}

/* Hero Images Gallery */
.hero-images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	max-width: 500px;
	margin: 0 auto;
}

.hero-image {
	width: 100%;
	height: 120px;
	border-radius: 15px;
	object-fit: cover;
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
	transition: all 0.3s ease;
	cursor: pointer;
}

.hero-image:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.hero-image.large {
	grid-column: span 2;
	height: 180px;
}

/* Navigation */
.navbar {
	background: rgba(26, 26, 46, 0.95) !important;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	padding: 1rem 0;
}

.navbar-brand {
	font-family: 'Inter', 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
	font-family: 'Poppins', sans-serif;
	color: var(--text-light) !important;
	font-weight: 500;
	margin: 0 5px;
	transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
	color: var(--primary-color) !important;
	transform: translateY(-2px);
}

/* Smooth scroll offset for fixed navbar */
html {
	scroll-behavior: smooth;
}

.section-offset {
	scroll-margin-top: 80px;
}

/* Section Styling */
.service-section {
	padding: 100px 0 80px;
	position: relative;
}


.service-section:nth-child(even) {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
	color: var(--secondary-color);
	position: relative;
}

.section-title::after {
	content: '';
	width: 80px;
	height: 4px;
	background: linear-gradient(45deg, var(--primary-color), #ff8a50);
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Service Cards */
.service-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	height: 100%;
	border: none;
	overflow: hidden;
	position: relative;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(45deg, var(--primary-color), #ff8a50);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-icon {
	font-size: 4rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	display: block;
}

.service-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.service-image:hover {
	transform: scale(1.05);
}

.service-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

.service-description {
	color: #666;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 2rem;
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.2rem;
}


/* Image Slider Styles */
.image-slider-container {
	position: relative;
	margin-bottom: 1.5rem;
	border-radius: 15px;
	overflow: hidden;
	height: 300px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
}

.slide.active {
	opacity: 1;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.slide img:hover {
	transform: scale(1.05);
}

/* Slider Navigation */
.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 107, 53, 0.8);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.slider-nav:hover {
	background: var(--primary-color);
	transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
	left: 15px;
}

.slider-nav.next {
	right: 15px;
}

/* Slider Dots */
.slider-dots {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: var(--primary-color);
	transform: scale(1.2);
}

.dot:hover {
	background: rgba(255, 107, 53, 0.8);
}

/* Lightbox Styles */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox img {
	max-width: 100%;
	max-height: 80vh;
	border-radius: 10px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: -50px;
	right: -20px;
	background: var(--primary-color);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.lightbox-close:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 107, 53, 0.8);
	color: white;
	border: none;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.lightbox-nav:hover {
	background: var(--primary-color);
	transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
	left: -80px;
}

.lightbox-nav.next {
	right: -80px;
}

/* Image counter */
.lightbox-counter {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 16px;
	background: rgba(0, 0, 0, 0.7);
	padding: 10px 20px;
	border-radius: 25px;
}


/* Contact Section */
.contact-section {
	/*background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);*/
	background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/bg2.jpg') no-repeat center center/cover;
	color: white;
	padding: 140px 0;
}

.contact-info {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
}

.contact-item {
	margin: 0rem 0;
}

.contact-icon {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

/* Animations */
.floating {
	animation: floating 3s ease-in-out infinite;
}

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

.pulse {
	animation: pulse 2s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {

	.hero-content {
		margin-top: 7em;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.2rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.service-card {
		margin-bottom: 2rem;
	}

	.hero-images {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.hero-image.large {
		grid-column: span 1;
		height: 150px;
	}

	.hero-image {
		height: 100px;
	}
	
	.me-3{
		margin-right: 0rem !important;
	}
	
	.cta-button {
		margin-bottom:2em;
	}
}

@media (max-width: 560px) {
	.py-4 {
		padding-bottom: 5.5rem !important;
	}
	footer.bg-dark.text-white.py-4{
		text-align: center;
	}
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #ff4500;
}