/* ==========================================
   Abhima Projects - Construction Company
   Custom Stylesheet - Modern Design System
   
   Features:
   - Modern color palette with gradients
   - Smooth animations and transitions
   - Custom shadows and depth
   - Responsive design patterns
   - Glassmorphism effects
   - Modern card designs  
   - Interactive hover states
   - Custom scrollbar
   - Accessibility-focused
   ========================================== */

/* ========== Global Styles ========== */
:root {
	/* Modern Construction Theme - Orange/Yellow Accents */
	--primary-color: #FFB800;
	--primary-dark: #FF9800;
	--primary-light: #FFC947;
	--secondary-color: #1E3A8A;
	--secondary-dark: #1E293B;
	--success-color: #10b981;
	--warning-color: #FFB800;
	--warning-light: #FFC947;
	--danger-color: #ef4444;
	
	/* Dark Theme Backgrounds */
	--dark-bg-primary: #0a0e1a;
	--dark-bg-secondary: #111827;
	--dark-bg-card: #1e293b;
	--dark-bg-card-hover: #2d3748;
	--dark-border: #334155;
	--dark-border-light: #475569;
	
	/* Light Theme (for contrast sections) */
	--light-color: #f8fafc;
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-800: #1e293b;
	--gray-900: #0f172a;
	
	/* Modern Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
	
	/* Card Shadow - Dark Theme */
	--card-shadow: 0 4px 6px rgba(0, 0, 0, 0.4), 0 0 1px rgba(255, 184, 0, 0.1);
	--card-shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 184, 0, 0.3);
	
	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;
	
	/* Border Radius */
	--radius-sm: 0.375rem;
	--radius-md: 0.75rem;
	--radius-lg: 1rem;
	--radius-xl: 1.25rem;
	--radius-2xl: 1.5rem;
	--radius-3xl: 2rem;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: #e2e8f0;
	overflow-x: hidden;
	background: var(--dark-bg-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--dark-bg-secondary);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--primary-light), var(--primary-color));
	box-shadow: 0 0 8px rgba(255, 184, 0, 0.6);
}

/* ========== Global Element Styles ========== */

/* Modern Cards */
.card {
	border: none;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	background: var(--dark-bg-card);
	color: #e2e8f0;
}

.card:hover {
	box-shadow: var(--shadow-xl);
	transform: translateY(-4px);
}

.card-img-top {
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	transition: all 0.4s ease;
}

.card:hover .card-img-top {
	transform: scale(1.05);
}

/* Modern Images */
img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-md);
}

.img-fluid {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
}

.img-fluid:hover {
	box-shadow: var(--shadow-xl);
	transform: scale(1.02);
}

/* Badges */
.badge {
	border-radius: var(--radius-md);
	padding: 0.5rem 1rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* List Group */
.list-group-item {
	border: 1px solid var(--dark-border);
	border-radius: var(--radius-md);
	margin-bottom: 0.5rem;
	transition: all 0.3s ease;
	background: var(--dark-bg-card);
	color: #e2e8f0;
}

.list-group-item:hover {
	background: var(--dark-bg-card-hover);
	border-color: var(--primary-color);
	transform: translateX(5px);
	box-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
}

/* Check Marks and Icons */
.fa-check-circle,
.fas.fa-check-circle {
	color: var(--success-color);
	filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

/* ========== Navigation ========== */
.navbar {
	padding: 0.5rem 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(135deg, #0a0e1a 0%, #111827 100%) !important;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

.navbar.scrolled {
	padding: 0.3rem 0;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
	background: linear-gradient(135deg, rgba(10, 14, 26, 0.98) 0%, rgba(17, 24, 39, 0.98) 100%) !important;
	border-bottom-color: rgba(255, 184, 0, 0.2);
}

/* Brand/Logo Styles */
.navbar-brand {
	display: flex;
	align-items: center;
	padding: 5px 0;
	transition: all 0.3s ease;
}

.navbar-brand:hover {
	transform: scale(1.05);
}

.navbar-logo {
	height: 45px;
	width: auto;
	max-width: 180px;
	transition: all 0.3s ease;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-logo:hover {
	filter: drop-shadow(2px 4px 8px rgba(255, 193, 7, 0.5));
}

/* Navigation Links */
.navbar-nav {
	gap: 0.5rem;
}

.nav-link {
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.6rem 1rem !important;
	margin: 0 0.2rem;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: var(--radius-lg);
	color: rgba(226, 232, 240, 0.9) !important;
}

.nav-link i {
	font-size: 0.85rem;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.nav-link:hover {
	color: var(--primary-light) !important;
	background: rgba(255, 184, 0, 0.15);
	transform: translateY(-2px);
}

.nav-link:hover i {
	opacity: 1;
	transform: scale(1.1);
}

.nav-link.active {
	color: var(--primary-light) !important;
	background: rgba(255, 184, 0, 0.2);
	box-shadow: 0 0 20px rgba(255, 184, 0, 0.35);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 70%;
}

/* CTA Button */
.btn-warning {
	font-weight: 600;
	padding: 0.5rem 1.5rem;
	border-radius: var(--radius-2xl);
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	box-shadow: 0 4px 15px rgba(255, 184, 0, 0.5);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	position: relative;
	overflow: hidden;
	color: white !important;
}

.btn-warning::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.btn-warning:hover::before {
	left: 100%;
}

.btn-warning:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(255, 184, 0, 0.7);
	background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

/* Mobile Menu Toggle */
.navbar-toggler {
	border: 2px solid var(--primary-color);
	padding: 0.4rem 0.6rem;
	border-radius: var(--radius-md);
	background: rgba(255, 184, 0, 0.12);
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 184, 0, 0.35);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 201, 71, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== Hero Section ========== */
.hero-section {
	position: relative;
	height: 100vh;
	min-height: 700px;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
		url('../images/banners/hero-construction.jpg') center/cover no-repeat fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 56px;
	overflow: hidden;
	padding: 20px;
}

/* Hero Section - Ensure background works on mobile */
@media (max-width: 768px) {
	.hero-section {
		background-attachment: scroll !important;
		background-position: center center;
	}
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in {
	animation: fadeIn 1s ease;
}

.animate-fade-in-delay {
	animation: fadeIn 1.5s ease;
}

.animate-fade-in-delay-2 {
	animation: fadeIn 2s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ========== Modern Utility Classes ========== */

/* Hover glow effect */
.hover-glow {
	transition: all 0.3s ease;
}

.hover-glow:hover {
	box-shadow: 0 0 20px rgba(255, 184, 0, 0.6), var(--card-shadow-hover);
}

/* Gradient text */
.gradient-text {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Modern Card */
.modern-card {
	background: var(--dark-bg-card);
	border-radius: var(--radius-xl);
	box-shadow: var(--card-shadow);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--dark-border);
	color: #e2e8f0;
}

.modern-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--card-shadow-hover);
	border-color: rgba(255, 184, 0, 0.5);
	background: var(--dark-bg-card-hover);
}

/* Pulse Animation */
@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.pulse-hover:hover {
	animation: pulse 1s infinite;
}

/* Smooth transitions */
.smooth-transition {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Page Header / Banner ========== */
.page-header {
	padding: 100px 0 60px;
	margin-top: 56px;
}

.page-banner {
	position: relative;
	margin-top: 56px;
	min-height: 400px;
	background-attachment: fixed !important;
	background-size: cover !important;
	background-position: center !important;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.page-banner::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(to top, var(--dark-bg-primary), transparent);
	pointer-events: none;
}

/* Fix background attachment for mobile */
@media (max-width: 768px) {
	.page-banner {
		background-attachment: scroll !important;
		min-height: 350px;
	}
}

.page-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(10, 14, 26, 0.85), rgba(255, 184, 0, 0.35));
	animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
	0%, 100% {
		background: linear-gradient(135deg, rgba(10, 14, 26, 0.85), rgba(255, 184, 0, 0.35));
	}
	50% {
		background: linear-gradient(135deg, rgba(255, 184, 0, 0.35), rgba(255, 201, 71, 0.45));
	}
}
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

.page-banner .container {
	position: relative;
	z-index: 2;
}

.page-banner h1 {
	font-size: 3.5rem;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	margin-bottom: 1rem;
}

.page-banner p.lead {
	font-size: 1.5rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-banner .breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
}

.page-banner .breadcrumb-item {
	font-size: 1rem;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.7);
	content: ">";
}

.page-banner .breadcrumb-item a {
	color: white;
	transition: all 0.3s ease;
}

.page-banner .breadcrumb-item a:hover {
	color: var(--primary-light);
	text-decoration: none;
}

.breadcrumb-item a {
	text-decoration: none;
}

/* ========== Feature Boxes ========== */
.feature-box {
	background: linear-gradient(135deg, var(--dark-bg-card) 0%, rgba(30, 41, 59, 0.8) 100%);
	border-radius: var(--radius-xl);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--card-shadow);
	border: 1px solid var(--dark-border);
	position: relative;
	overflow: hidden;
}

.feature-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.feature-box:hover::before {
	transform: scaleX(1);
}

.feature-box:hover {
	transform: translateY(-10px);
	box-shadow: var(--card-shadow-hover);
	border-color: rgba(255, 184, 0, 0.4);
	background: linear-gradient(135deg, var(--dark-bg-card-hover) 0%, rgba(45, 55, 72, 0.9) 100%);
}

.feature-icon {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover .feature-icon i {
	transform: scale(1.2) rotate(5deg);
	filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.6));
}

/* ========== Service Cards ========== */
.service-card {
	border: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--card-shadow);
	border-radius: var(--radius-xl);
	background: linear-gradient(135deg, var(--dark-bg-card) 0%, rgba(30, 41, 59, 0.9) 100%);
	overflow: hidden;
	position: relative;
	border: 1px solid var(--dark-border);
}

.service-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(135deg, rgba(255, 184, 0, 0.12), rgba(255, 201, 71, 0.06));
	transition: height 0.4s ease;
	z-index: 0;
}

.service-card:hover::after {
	height: 100%;
}

.service-card:hover {
	transform: translateY(-12px);
	box-shadow: var(--card-shadow-hover);
	border-color: rgba(255, 184, 0, 0.5);
}

.service-card .card-body {
	position: relative;
	z-index: 1;
	color: #e2e8f0;
}

.service-card .card-title {
	color: #f1f5f9;
}

.service-icon i {
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-card:hover .service-icon i {
	transform: rotate(360deg) scale(1.1);
	filter: drop-shadow(0 0 15px rgba(255, 184, 0, 0.7));
}

/* ========== Testimonial Cards ========== */
.testimonial-card {
	border: none;
	border-left: 4px solid var(--primary-color);
	background: linear-gradient(135deg, var(--dark-bg-card) 0%, rgba(30, 41, 59, 0.9) 100%);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: var(--radius-lg);
	box-shadow: var(--card-shadow);
	position: relative;
	overflow: hidden;
	color: #e2e8f0;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: -10px;
	right: 20px;
	font-size: 80px;
	color: rgba(255, 184, 0, 0.12);
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-card:hover {
	transform: translateX(10px);
	box-shadow: var(--card-shadow-hover);
	background: linear-gradient(135deg, var(--dark-bg-card-hover) 0%, rgba(45, 55, 72, 0.95) 100%);
	border-left-color: var(--primary-light);
}

/* ========== Project Cards ========== */
.project-card {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	border-radius: var(--radius-xl);
	box-shadow: var(--card-shadow);
	background: var(--dark-bg-card);
	border: 1px solid var(--dark-border);
}

.project-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--card-shadow-hover);
	border-color: rgba(255, 184, 0, 0.4);
}

.project-image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.project-image-wrapper img {
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.project-card:hover .project-image-wrapper img {
	transform: scale(1.15) rotate(2deg);
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 184, 0, 0.9), rgba(255, 201, 71, 0.85));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card .card-body {
	background: var(--dark-bg-card);
	color: #e2e8f0;
}

.project-card .card-title {
	color: #f1f5f9;
}

.project-card:hover .project-overlay {
	opacity: 1;
}

/* ========== Filter Buttons ========== */
.filter-btn {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: var(--radius-lg);
	border: 2px solid var(--dark-border);
	background: var(--dark-bg-card);
	color: #cbd5e1;
	font-weight: 500;
	box-shadow: var(--card-shadow);
}

.filter-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-light);
	background: rgba(255, 184, 0, 0.1);
	transform: translateY(-2px);
	box-shadow: var(--card-shadow-hover);
}

.filter-btn.active {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	color: white;
	border-color: var(--primary-color);
	box-shadow: 0 4px 15px rgba(255, 184, 0, 0.6);
	transform: translateY(-2px);
}

/* ========== Value Cards ========== */
.value-card {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: var(--radius-xl);
	background: var(--dark-bg-card);
	box-shadow: var(--card-shadow);
	border: 1px solid var(--dark-border);
	position: relative;
	overflow: hidden;
	color: #e2e8f0;
}

.value-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(255, 201, 71, 0.06));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.value-card:hover::before {
	opacity: 1;
}

.value-card:hover {
	background: var(--dark-bg-card-hover);
	box-shadow: var(--card-shadow-hover);
	transform: translateY(-5px);
	border-color: rgba(255, 184, 0, 0.4);
}

.value-card h3,
.value-card h4 {
	color: #f1f5f9;
}

/* ========== Team Cards ========== */
.team-card {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: var(--radius-xl);
	background: var(--dark-bg-card);
	box-shadow: var(--card-shadow);
	overflow: hidden;
	border: 1px solid var(--dark-border);
	color: #e2e8f0;
}

.team-card:hover {
	transform: translateY(-12px);
	box-shadow: var(--card-shadow-hover);
	border-color: rgba(255, 184, 0, 0.5);
	background: var(--dark-bg-card-hover);
}

.team-image {
	position: relative;
	overflow: hidden;
}

.team-image img {
	border: 5px solid var(--dark-bg-secondary);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.team-card:hover .team-image img {
	transform: scale(1.05);
	box-shadow: 0 12px 30px rgba(255, 184, 0, 0.5);
	border-color: var(--primary-color);
}

.team-card h5,
.team-card h4 {
	color: #f1f5f9;
}

.team-card:hover .team-image img {
	border-color: var(--primary-color);
}

/* ========== Contact Info Box ========== */
.contact-info-box {
	background: var(--dark-bg-card);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: var(--card-shadow);
	border: 1px solid var(--dark-border);
	color: #e2e8f0;
}

.info-item {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--dark-border);
	color: #cbd5e1;
}

.info-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* ========== Mission & Vision Boxes ========== */
.mission-box,
.vision-box {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: var(--radius-xl);
	background: linear-gradient(135deg, var(--dark-bg-card) 0%, rgba(30, 41, 59, 0.9) 100%);
	border: 2px solid var(--dark-border);
	box-shadow: var(--card-shadow);
	position: relative;
	overflow: hidden;
	color: #e2e8f0;
}

.mission-box::before,
.vision-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
	transform: scaleY(0);
	transition: transform 0.4s ease;
}

.mission-box:hover::before,
.vision-box:hover::before {
	transform: scaleY(1);
}

.mission-box:hover,
.vision-box:hover {
	transform: translateY(-8px);
	box-shadow: var(--card-shadow-hover) !important;
	border-color: rgba(255, 184, 0, 0.5);
	background: linear-gradient(135deg, var(--dark-bg-card-hover) 0%, rgba(45, 55, 72, 0.95) 100%);
}

.mission-box h3,
.mission-box h4,
.vision-box h3,
.vision-box h4 {
	color: #f1f5f9;
}

/* ========== Statistics Section ========== */
.stat-box,
.stat-item {
	padding: 1rem;
}

/* ========== Process Steps ========== */
.process-step {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	background: var(--dark-bg-card);
	border: 2px solid var(--dark-border);
	color: #e2e8f0;
}

.process-step:hover {
	background: var(--dark-bg-card-hover);
	border-color: rgba(255, 184, 0, 0.5);
	box-shadow: var(--card-shadow-hover);
	transform: scale(1.02);
}

.step-number .badge {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	box-shadow: 0 4px 15px rgba(255, 184, 0, 0.5);
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: var(--radius-md);
	transition: all 0.3s ease;
}

.process-step:hover .step-number .badge {
	transform: rotate(360deg) scale(1.1);
	box-shadow: 0 8px 25px rgba(255, 184, 0, 0.7);
}

/* ========== Buttons ========== */
.btn {
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-lg);
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.875rem;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--card-shadow-hover);
}

.btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1rem;
	border-radius: var(--radius-2xl);
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border: none;
	box-shadow: 0 4px 15px rgba(255, 184, 0, 0.5);
	color: white;
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
	box-shadow: 0 8px 25px rgba(255, 184, 0, 0.7);
}

.btn-outline-primary {
	border: 2px solid var(--primary-color);
	color: var(--primary-light);
	background: transparent;
}

.btn-outline-primary:hover {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
	box-shadow: 0 8px 20px rgba(255, 184, 0, 0.6);
}

.btn-outline-light {
	border: 2px solid white;
	color: white;
	background: transparent;
	backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
	background: white;
	color: var(--dark-bg-primary);
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* ========== Forms ========== */
.form-control,
.form-select {
	padding: 0.875rem 1rem;
	border: 2px solid var(--dark-border);
	border-radius: var(--radius-lg);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--dark-bg-card);
	font-size: 0.95rem;
	box-shadow: var(--card-shadow);
	color: #e2e8f0;
}

.form-control::placeholder {
	color: #64748b;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.25), var(--card-shadow-hover);
	outline: none;
	background: var(--dark-bg-card-hover);
	color: #f1f5f9;
}

.form-label {
	font-weight: 600;
	color: #e2e8f0;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	letter-spacing: 0.3px;
}

.contact-form {
	background: var(--dark-bg-card);
	padding: 2.5rem;
	border-radius: var(--radius-xl);
	box-shadow: var(--card-shadow-hover);
	border: 1px solid var(--dark-border);
}

textarea.form-control {
	min-height: 150px;
	resize: vertical;
}

/* ========== Sections ========== */
section {
	position: relative;
	background: var(--dark-bg-primary);
	color: #e2e8f0;
}

section.bg-light {
	background: linear-gradient(135deg, var(--dark-bg-secondary) 0%, rgba(17, 24, 39, 0.95) 100%) !important;
}

section.py-5 {
	padding: 4rem 0 !important;
}

/* Modern Section Titles */
.section-title {
	position: relative;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(255, 184, 0, 0.6);
}

h2.fw-bold, h2 {
	color: #f1f5f9;
	font-weight: 700;
	letter-spacing: -0.5px;
}

h3, h4 {
	color: #e2e8f0;
	font-weight: 600;
}

.lead {
	color: #cbd5e1;
	font-weight: 400;
}

/* Info Items */
.info-item {
	padding: 1rem;
	border-radius: var(--radius-md);
	transition: all 0.3s ease;
	border-bottom: 2px solid var(--dark-border);
	color: #cbd5e1;
}

.info-item:hover {
	background: rgba(255, 184, 0, 0.1);
	border-bottom-color: var(--primary-color);
	transform: translateX(5px);
}

.info-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.info-item i {
	color: var(--primary-light);
	transition: all 0.3s ease;
}

.info-item:hover i {
	transform: scale(1.1);
	filter: drop-shadow(0 0 8px rgba(255, 184, 0, 0.7));
}

/* ========== Footer ========== */
footer {
	margin-top: 3rem;
	background: linear-gradient(135deg, #0a0e1a 0%, #111827 100%);
	color: #cbd5e1;
	position: relative;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-light), var(--primary-color), transparent);
	box-shadow: 0 0 10px rgba(255, 184, 0, 0.6);
}

footer a {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: #94a3b8;
}

footer a:hover {
	color: var(--primary-light) !important;
	padding-left: 8px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--dark-bg-card);
	border: 1px solid var(--dark-border);
	margin: 0 5px;
	transition: all 0.3s ease;
}

.social-links a:hover {
	transform: translateY(-5px) scale(1.1);
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	box-shadow: 0 8px 20px rgba(255, 184, 0, 0.6);
	color: white !important;
	border-color: var(--primary-color);
}

/* ========== Map Container ========== */
.map-container {
	width: 100%;
	height: 450px;
}

/* ========== Accordion ========== */
.accordion-button {
	border-radius: var(--radius-lg);
	font-weight: 600;
	color: #e2e8f0;
	background: var(--dark-bg-card);
	border: 2px solid var(--dark-border);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	color: white;
	border-color: var(--primary-color);
	box-shadow: 0 4px 15px rgba(255, 184, 0, 0.5);
}

.accordion-button:focus {
	box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.25);
	border-color: var(--primary-color);
}

.accordion-button:hover {
	background: rgba(255, 184, 0, 0.1);
	border-color: var(--primary-color);
}

.accordion-item {
	border: none;
	margin-bottom: 1rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--card-shadow);
}

.accordion-body {
	background: var(--dark-bg-card);
	border: 2px solid var(--dark-border);
	border-top: none;
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
	color: #cbd5e1;
}

/* ========== Responsive Styles ========== */

/* Extra Large Devices (1400px and up) */
@media (max-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

/* Large Devices (1200px and up) */
@media (max-width: 1200px) {
	.container {
		max-width: 1140px;
	}
	
	.hero-section h1 {
		font-size: 3rem;
	}
	
	.page-banner h1 {
		font-size: 2.5rem;
	}
}

/* Medium Devices (992px and up - Tablets) */
@media (max-width: 992px) {
	.container {
		max-width: 960px;
	}
	
	/* Hero Section */
	.hero-section {
		height: 80vh;
		min-height: 600px;
	}
	
	.hero-section h1 {
		font-size: 2.5rem;
	}
	
	.hero-section .lead {
		font-size: 1.1rem;
	}
	
	.hero-section .btn {
		padding: 12px 30px;
		font-size: 0.95rem;
	}
	
	/* Page Banners */
	.page-banner {
		height: 350px !important;
	}
	
	.page-banner h1 {
		font-size: 2.2rem;
	}
	
	/* Cards */
	.service-card,
	.project-card,
	.team-card {
		margin-bottom: 30px;
	}
	
	/* Mission & Vision boxes */
	.mission-box,
	.vision-box {
		padding: 30px !important;
	}
	
	/* Team images */
	.team-image img {
		width: 180px !important;
		height: 180px !important;
	}
	
	/* Feature boxes */
	.feature-box {
		padding: 25px !important;
	}
}

/* Small Medium Devices (768px and down - Small Tablets & Large Phones) */
@media (max-width: 768px) {
	/* Hero Section */
	.hero-section {
		height: 70vh;
		min-height: 500px;
		margin-top: 56px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 2rem !important;
		margin-bottom: 1rem !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 1rem !important;
		margin-bottom: 1.5rem !important;
	}
	
	.hero-section .btn-lg {
		padding: 10px 25px;
		font-size: 0.9rem;
		margin: 5px;
	}
	
	.hero-section .display-6 {
		font-size: 1.5rem !important;
	}
	
	/* Page Banners */
	.page-banner {
		height: 300px !important;
		padding: 20px 0;
	}
	
	.page-banner h1,
	.page-banner .display-3 {
		font-size: 1.8rem !important;
	}
	
	.page-banner .lead {
		font-size: 0.95rem;
	}

	/* Typography */
	.display-3 {
		font-size: 2rem;
	}

	.display-4 {
		font-size: 1.8rem;
	}

	.lead {
		font-size: 1rem;
	}
	
	h2 {
		font-size: 1.75rem;
	}
	
	h3 {
		font-size: 1.5rem;
	}
	
	h4 {
		font-size: 1.25rem;
	}

	/* Sections */
	.page-header {
		padding: 80px 0 40px;
	}
	
	section.py-5 {
		padding: 40px 0 !important;
	}
	
	/* Cards & Boxes */
	.service-card,
	.project-card,
	.team-card,
	.value-card {
		margin-bottom: 20px;
	}
	
	.mission-box,
	.vision-box {
		padding: 25px !important;
		margin-bottom: 20px;
	}
	
	/* Team Section */
	.team-image img,
	.team-card img {
		width: 150px !important;
		height: 150px !important;
	}
	
	/* Feature boxes */
	.feature-box {
		padding: 20px !important;
		margin-bottom: 15px;
	}
	
	/* Icons */
	.fa-3x {
		font-size: 2.5rem !important;
	}
	
	/* Spacing */
	.mb-5 {
		margin-bottom: 2rem !important;
	}
	
	.mb-4 {
		margin-bottom: 1.5rem !important;
	}
	
	/* Grid adjustments */
	.row {
		margin-left: -10px;
		margin-right: -10px;
	}
	
	.row > * {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	/* Contact Form */
	.contact-form .form-label {
		font-size: 0.9rem;
	}
	
	/* Map */
	.map-container {
		height: 300px;
	}
	
	/* Buttons */
	.btn-lg {
		padding: 10px 25px;
		font-size: 0.95rem;
	}
	
	/* Navbar */
	.navbar-nav {
		padding: 15px 0;
	}
	
	.nav-link {
		padding: 10px 15px;
	}
	
	/* Footer */
	footer .col-lg-3,
	footer .col-md-6 {
		margin-bottom: 30px;
	}
	
	/* Project Filters */
	.filter-buttons .btn {
		margin: 5px;
		padding: 8px 15px;
		font-size: 0.85rem;
	}
}

/* Extra Small Devices (576px and down - Phones) */
@media (max-width: 576px) {
	/* Hero Section */
	.hero-section {
		height: 60vh;
		min-height: 450px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 1.5rem !important;
		line-height: 1.3;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 0.9rem !important;
	}
	
	.hero-section .btn {
		display: block;
		width: 100%;
		margin: 8px 0;
		padding: 12px;
	}
	
	.hero-section .row .col-md-3,
	.hero-section .row .col-sm-6 {
		margin-bottom: 15px;
	}
	
	/* Page Banner */
	.page-banner {
		height: 250px !important;
	}
	
	.page-banner h1,
	.page-banner .display-3 {
		font-size: 1.5rem !important;
	}
	
	.page-banner .lead {
		font-size: 0.85rem;
	}
	
	/* Typography */
	h2 {
		font-size: 1.5rem;
	}
	
	h3 {
		font-size: 1.3rem;
	}
	
	h4 {
		font-size: 1.15rem;
	}
	
	.lead {
		font-size: 0.95rem;
	}
	
	/* Sections */
	section.py-5 {
		padding: 30px 0 !important;
	}
	
	/* Cards */
	.service-card,
	.project-card,
	.team-card {
		padding: 15px;
	}
	
	.mission-box,
	.vision-box {
		padding: 20px !important;
	}
	
	/* Team Images */
	.team-image img,
	.team-card img {
		width: 120px !important;
		height: 120px !important;
	}
	
	/* Icons */
	.fa-3x {
		font-size: 2rem !important;
	}
	
	/* Feature boxes */
	.feature-box {
		padding: 15px !important;
	}
	
	/* Buttons */
	.btn {
		padding: 10px 20px;
		font-size: 0.85rem;
	}
	
	.btn-lg {
		padding: 12px 25px;
		font-size: 0.9rem;
	}
	
	/* Images */
	img {
		max-width: 100%;
		height: auto;
	}
	
	/* Contact Form */
	.contact-form {
		padding: 20px;
	}
	
	.form-control {
		font-size: 0.9rem;
	}
	
	/* Map */
	.map-container {
		height: 250px;
	}
	
	/* Footer */
	footer {
		text-align: center;
		padding: 30px 0 20px;
	}
	
	footer .col-lg-3 {
		margin-bottom: 25px;
	}
	
	/* Breadcrumb */
	.breadcrumb {
		font-size: 0.85rem;
	}
	
	/* Stats on hero */
	.hero-section .row .p-3 {
		padding: 15px !important;
	}
	
	/* Why Choose items */
	.why-choose-item {
		flex-direction: column;
		text-align: center;
	}
	
	.why-choose-item .icon-box {
		margin: 0 auto 15px;
	}
	
	/* Project Grid */
	.project-item {
		margin-bottom: 15px;
	}
	
	/* Value cards */
	.value-card {
		padding: 20px !important;
	}
	
	/* Spacing utilities */
	.p-5 {
		padding: 25px !important;
	}
	
	.p-4 {
		padding: 20px !important;
	}
	
	.mb-5 {
		margin-bottom: 1.5rem !important;
	}
}

/* Very Small Devices (400px and down) */
@media (max-width: 400px) {
	/* Navbar - Ultra Mobile */
	.brand-logo {
		width: 35px;
		height: 35px;
	}
	
	.brand-logo i {
		font-size: 16px;
	}
	
	.brand-name {
		font-size: 1rem;
		letter-spacing: 1px;
	}
	
	.brand-tagline {
		font-size: 0.55rem;
		letter-spacing: 1.5px;
	}
	
	.navbar-toggler {
		padding: 0.3rem 0.4rem;
		font-size: 0.9rem;
	}
	
	.nav-link {
		font-size: 0.9rem;
		padding: 0.7rem 0.8rem !important;
	}
	
	.navbar-collapse {
		padding: 0.8rem;
	}
	
	/* Other elements */
	.hero-section h1 {
		font-size: 1.3rem !important;
	}
	
	.page-banner h1 {
		font-size: 1.3rem !important;
	}
	
	.btn {
		font-size: 0.8rem;
		padding: 8px 15px;
	}
	
	.feature-box h4 {
		font-size: 1rem;
	}
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
	.hero-section {
		height: 100vh;
		min-height: 400px;
	}
	
	.page-banner {
		height: 250px !important;
	}
}

/* Print Styles */
@media print {
	.navbar,
	.page-banner,
	footer,
	.btn,
	#scrollTopBtn {
		display: none !important;
	}
	
	body {
		font-size: 12pt;
	}
	
	.container {
		max-width: 100%;
	}
}

/* ========== Animations ========== */
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

.pulse-animation {
	animation: pulse 2s infinite;
}

/* ========== Utility Classes ========== */
.section-spacing {
	padding: 80px 0;
}

.shadow-custom {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.border-radius-custom {
	border-radius: 10px;
}

/* ========== Loading Animation ========== */
.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ========== Scroll to Top Button ========== */
#scrollTopBtn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: white;
	border: none;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	z-index: 1000;
}

#scrollTopBtn:hover {
	background-color: var(--warning-color);
	transform: translateY(-5px);
}

#scrollTopBtn.show {
	display: flex;
}

/* Mobile Scroll Button */
@media (max-width: 768px) {
	#scrollTopBtn {
		bottom: 20px;
		right: 20px;
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 400px) {
	#scrollTopBtn {
		bottom: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
		font-size: 0.85rem;
	}
}

/* ========== Responsive Utilities ========== */

/* Text responsive helpers */
@media (max-width: 576px) {
	.small-text-mobile {
		font-size: 0.85rem !important;
	}
	
	.hide-text-mobile {
		display: none;
	}
	
	/* Ensure buttons don't overflow on small screens */
	.btn {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 100%;
	}
	
	/* Stack hero buttons on extra small screens */
	.hero-section .btn-lg {
		display: inline-block;
		min-width: 140px;
	}
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
	body {
		overflow-x: hidden;
	}
	
	.container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	/* Ensure images don't cause overflow */
	img {
		max-width: 100%;
		height: auto;
	}
}

/* ========== Navbar Responsive Enhancements ========== */

/* Large Desktop (1400px - 1200px) */
@media (max-width: 1400px) {
	.navbar-nav {
		gap: 0.3rem;
	}
	
	.nav-link {
		padding: 0.5rem 0.8rem !important;
		font-size: 0.9rem;
	}
	
	.navbar-logo {
		height: 42px;
		max-width: 170px;
	}
}

/* Desktop (1200px - 992px) */
@media (max-width: 1200px) {
	.navbar-nav {
		gap: 0.2rem;
	}
	
	.nav-link {
		padding: 0.5rem 0.7rem !important;
		font-size: 0.88rem;
	}
	
	.navbar-logo {
		height: 40px;
		max-width: 160px;
	}
	
	.btn-warning.btn-sm {
		padding: 0.4rem 1.2rem;
		font-size: 0.85rem;
	}
	
	/* Hero adjustments */
	.hero-section {
		min-height: 650px;
	}
}

/* Tablets (992px and down - Mobile Menu Activation) */
@media (max-width: 992px) {
	.navbar-collapse {
		background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
		padding: 1rem;
		margin-top: 1rem;
		border-radius: 10px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	}
	
	.navbar-nav {
		gap: 0;
		align-items: stretch !important;
	}
	
	.nav-link {
		padding: 0.8rem 1rem !important;
		margin: 0.2rem 0;
		border-radius: 8px;
		text-align: center;
	}
	
	.nav-link i {
		margin-right: 8px !important;
		font-size: 1rem;
	}
	
	.btn-warning.btn-sm {
		margin-top: 1rem;
		display: block !important;
		text-align: center;
	}
	
	.navbar-logo {
		height: 38px;
		max-width: 150px;
	}
	
	/* Hero Section */
	.hero-section {
		height: 80vh;
		min-height: 600px;
		padding: 30px 15px;
		margin-top: 56px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 2.2rem !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 1.1rem !important;
	}
	
	.hero-section .btn-lg {
		padding: 10px 25px;
		font-size: 0.95rem;
	}
	
	.hero-section .display-6 {
		font-size: 1.8rem !important;
	}
}

/* Mobile Landscape (768px and down) */
@media (max-width: 768px) {
	.navbar {
		padding: 0.3rem 0;
	}
	
	.navbar-logo {
		height: 35px;
		max-width: 140px;
	}
	
	.navbar-toggler {
		padding: 0.35rem 0.5rem;
	}
	
	.nav-link {
		font-size: 0.95rem;
		padding: 0.75rem 1rem !important;
	}
	
	/* Hero Section - Mobile Portrait */
	.hero-section {
		height: 75vh;
		min-height: 550px;
		padding: 25px 15px;
		margin-top: 54px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 1.8rem !important;
		line-height: 1.3 !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 1rem !important;
		max-width: 95% !important;
	}
	
	.hero-section .btn-lg {
		padding: 10px 20px;
		font-size: 0.9rem;
		margin: 5px 3px !important;
		border-radius: 30px !important;
	}
	
	.hero-section .display-6 {
		font-size: 1.5rem !important;
	}
	
	.hero-section .row .col-md-3,
	.hero-section .row .col-sm-6 {
		margin-bottom: 10px;
	}
	
	.hero-section .row .p-3 {
		padding: 15px !important;
	}
}

/* Mobile Portrait (576px and down) */
@media (max-width: 576px) {
	.navbar .container-fluid {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	
	.navbar-logo {
		height: 32px;
		max-width: 130px;
	}
	
	.nav-link {
		font-size: 0.92rem;
		padding: 0.7rem 0.9rem !important;
	}
	
	.navbar-collapse {
		padding: 0.8rem;
		margin-top: 0.8rem;
	}
	
	/* Hero Section - Small Mobile */
	.hero-section {
		height: 70vh;
		min-height: 500px;
		padding: 20px 10px;
		margin-top: 52px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 1.5rem !important;
		line-height: 1.3 !important;
		margin-bottom: 1rem !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 0.9rem !important;
		max-width: 100% !important;
		margin-bottom: 1.5rem !important;
	}
	
	.hero-section .btn-lg {
		padding: 10px 20px;
		font-size: 0.85rem;
		margin: 5px 2px !important;
		display: inline-block;
		width: auto;
	}
	
	.hero-section .display-6 {
		font-size: 1.3rem !important;
	}
	
	.hero-section .col-md-3,
	.hero-section .col-sm-6 {
		margin-bottom: 15px;
	}
}

/* Small Mobile (400px and down) */
@media (max-width: 400px) {
	.navbar-logo {
		height: 28px;
		max-width: 115px;
	}
	
	.navbar-toggler {
		padding: 0.3rem 0.4rem;
		font-size: 0.9rem;
	}
	
	.nav-link {
		font-size: 0.9rem;
		padding: 0.7rem 0.8rem !important;
	}
	
	.navbar-collapse {
		padding: 0.8rem;
	}
	
	.navbar .container-fluid {
		padding-left: 0.8rem;
		padding-right: 0.8rem;
	}
	
	/* Hero Section - Extra Small */
	.hero-section {
		height: 65vh;
		min-height: 450px;
		padding: 15px 8px;
		margin-top: 46px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 1.3rem !important;
		line-height: 1.3 !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 0.85rem !important;
	}
	
	.hero-section .btn-lg {
		padding: 8px 15px;
		font-size: 0.8rem;
		margin: 4px 2px !important;
		border-radius: 25px !important;
	}
	
	.hero-section .display-6 {
		font-size: 1.1rem !important;
	}
}

/* Landscape Mobile Devices */
@media (max-width: 768px) and (orientation: landscape) {
	.navbar {
		padding: 0.2rem 0;
	}
	
	.navbar-logo {
		height: 30px;
		max-width: 125px;
	}
	
	/* Hero Section - Landscape */
	.hero-section {
		height: 100vh;
		min-height: 400px;
		padding: 15px;
	}
	
	.hero-section h1,
	.hero-section .display-2 {
		font-size: 1.6rem !important;
	}
	
	.hero-section .lead,
	.hero-section .fs-3 {
		font-size: 0.9rem !important;
	}
	
	.hero-section .btn-lg {
		padding: 8px 18px;
		font-size: 0.85rem;
	}
	
	.hero-section .display-6 {
		font-size: 1.2rem !important;
	}
	
	.hero-section .mt-5 {
		margin-top: 1.5rem !important;
	}
}

/* ========== Modern Utility Classes ========== */

/* Glass Morphism Effect */
.glass-effect {
	background: rgba(30, 41, 59, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 184, 0, 0.2);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.bg-gradient-dark {
	background: linear-gradient(135deg, var(--dark-bg-primary), var(--dark-bg-secondary));
}

/* Text Glow Effect */
.text-glow {
	text-shadow: 0 0 20px rgba(255, 184, 0, 0.6);
}

/* Border Glow */
.border-glow {
	border: 1px solid var(--primary-color);
	box-shadow: 0 0 15px rgba(255, 184, 0, 0.4);
}

/* Pulse Animation */
@keyframes pulse-glow {
	0%, 100% {
		box-shadow: 0 0 5px rgba(255, 184, 0, 0.4);
	}
	50% {
		box-shadow: 0 0 20px rgba(255, 184, 0, 0.8);
	}
}

.pulse-glow {
	animation: pulse-glow 2s infinite;
}

/* Floating Animation */
@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.float-animation {
	animation: float 3s ease-in-out infinite;
}

/* Modern Card Variants */
.card-hover-lift:hover {
	transform: translateY(-15px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-glow:hover {
	box-shadow: 0 0 30px rgba(255, 184, 0, 0.6);
}

/* Text Utilities for Dark Theme */
.text-white-50 {
	color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-75 {
	color: rgba(255, 255, 255, 0.75) !important;
}

.text-muted {
	color: #94a3b8 !important;
}

/* Spacing Utilities */
.gap-3 {
	gap: 1rem !important;
}

.gap-4 {
	gap: 1.5rem !important;
}

.gap-5 {
	gap: 3rem !important;
}

/* Modern Divider */
.divider {
	height: 3px;
	width: 80px;
	background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
	margin: 0 auto 2rem;
	border-radius: 2px;
}

/* Icon Styles */
.icon-box {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border-radius: var(--radius-xl);
	color: white;
	font-size: 2rem;
	box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

/* Performance Optimization */
.will-change-transform {
	will-change: transform;
}

.will-change-opacity {
	will-change: opacity;
}

/* Scroll Reveal Animation */
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slide-in-up {
	animation: slideInUp 0.6s ease-out;
}

/* Custom Scrollbar for Elements */
.custom-scrollbar::-webkit-scrollbar {
	width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
	background: var(--dark-bg-secondary);
	border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
	background: var(--primary-light);
}
