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

body {
	font-family: 'Inter', sans-serif;
	color: #1e293b;
	overflow-x: hidden;
}

/* Top Bar */
.top-bar {
   /* background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);*/
	background: #0050c6;
	color: #e2e8f0;
	font-size: 0.9rem;
	padding: 10px 0;
}
.top-bar a {
	color: #e2e8f0;
	text-decoration: none;
	transition: all 0.3s;
}
.top-bar a:hover {
	color: #ffffff;
	transform: translateY(-1px);
}
.social-icon {
	margin-left: 15px;
	display: inline-block;
	transition: all 0.3s;
}
.social-icon:hover {
	transform: translateY(-3px);
}

/* Navbar */
.navbar {
	padding: 15px 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 30px rgba(0,0,0,0.08);
	transition: all 0.3s;
}
.navbar-brand {
	font-weight: 800;
	font-size: 1.8rem;
	color: #0f172a;
}
.navbar-brand span {
	color: #0d6efd;
}
.nav-link {
	font-weight: 600;
	color: #334155 !important;
	margin: 0 8px;
	padding: 8px 16px !important;
	border-radius: 6px;
	transition: all 0.3s;
	position: relative;
}
.nav-link:hover {
	background: #f1f5f9;
	color: #0d6efd !important;
}
.nav-link.active {
	background: #0d6efd;
	color: white !important;
}
.btn-login-nav {
	background: transparent;
	border: 2px solid #0d6efd;
	color: #0d6efd;
	font-weight: 600;
	padding: 10px 24px;
	border-radius: 10px;
	transition: all 0.3s;
}
.btn-login-nav:hover {
	background: #0d6efd;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(13,110,253,0.2);
}
.btn-register-nav {
	background: #0d6efd;
	border: 2px solid #0d6efd;
	color: white;
	font-weight: 600;
	padding: 10px 24px;
	border-radius: 10px;
	transition: all 0.3s;
}
.btn-register-nav:hover {
	background: #0b5ed7;
	border-color: #0b5ed7;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(13,110,253,0.3);
}

/* Full Width Hero Banner */
.hero-section {
	position: relative;
	min-height: 100vh;
	background: url('https://images.pexels.com/photos/12599544/pexels-photo-12599544.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
	display: flex;
	align-items: center;
	margin-top: -76px;
	padding-top: 76px;
}
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(13,110,253,0.75) 100%);
}
.hero-content {
	position: relative;
	z-index: 2;
	color: white;
	padding: 60px 0;
}
.hero-title {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.2;
	text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}
.hero-title span {
	color: #ffc107;
	border-bottom: 4px solid #ffc107;
}
.hero-subtitle {
	font-size: 1.3rem;
	opacity: 0.95;
	text-shadow: 1px 1px 10px rgba(0,0,0,0.3);
}
.hero-btn {
	background: white;
	color: #0f172a;
	border: none;
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.hero-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.3);
	background: #ffc107;
}
.hero-btn-outline {
	background: transparent;
	border: 2px solid white;
	color: white;
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s;
}
.hero-btn-outline:hover {
	background: white;
	color: #0f172a;
	transform: translateY(-3px);
}

/* Section Styling */
section {
	padding: 80px 0;
	position: relative;
}
.section-bg-light {
	background: #f0f6fd;
}
.section-bg-gradient {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}
.section-bg-dark {
	background: #0f172a;
	color: white;
}

/* Section Title */
.section-title {
	font-weight: 800;
	font-size: 2.0rem;
	margin-bottom: 15px;
}
.section-subtitle {
	color: #0d6efd;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 0.9rem;
	margin-bottom: 10px;
}
.text-light .section-subtitle {
	color: #ffc107;
}


 /* Appointment Booking Section */
.appointment-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.booking-card {
	background: white;
	border-radius: 30px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.step-indicator {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	position: relative;
}

.step-indicator::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 40px;
	right: 40px;
	height: 2px;
	background: #e2e8f0;
	z-index: 1;
}

.step {
	position: relative;
	z-index: 2;
	text-align: center;
	flex: 1;
}

.step-number {
	width: 40px;
	height: 40px;
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	font-weight: 700;
	color: #94a3b8;
	transition: all 0.3s;
}

.step.active .step-number {
	background: #0d6efd;
	border-color: #0d6efd;
	color: white;
}

.step.completed .step-number {
	background: #10b981;
	border-color: #10b981;
	color: white;
}

.step-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: #64748b;
}

.step.active .step-label {
	color: #0f172a;
}

.booking-step {
	display: none;
	animation: fadeIn 0.5s ease-out;
	height: 650px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 15px;
}

.booking-step.active {
	display: block;
}

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

.department-card {
	cursor: pointer;
	transition: all 0.3s;
	background: #f8fafc;
	border-radius: 20px;
	padding: 30px 20px;
	text-align: center;
	border: 2px solid transparent;
	height: 100%;
}

.department-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.department-card.selected {
	border-color: #0d6efd;
	background: #eef2ff;
}

.department-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: white;
	font-size: 2rem;
}

.doctor-card-select {
	cursor: pointer;
	transition: all 0.3s;
	background: #f8fafc;
	border-radius: 20px;
	padding: 25px;
	border: 2px solid transparent;
	height: 100%;
}

.doctor-card-select:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.doctor-card-select.selected {
	border-color: #0d6efd;
	background: #eef2ff;
}

.doctor-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid white;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.calendar-container {
	background: #f8fafc;
	border-radius: 20px;
	padding: 20px;
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.calendar-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
	margin-bottom: 15px;
}

.calendar-day-header {
	text-align: center;
	font-weight: 600;
	color: #64748b;
	padding: 10px;
	font-size: 0.9rem;
}

.calendar-dates {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
}

.calendar-date {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #b3d9ff;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.2s;
	border: 2px solid transparent;
}

.calendar-date:hover:not(.disabled):not(.empty) {
	background: #eef2ff;
	border-color: #0d6efd;
}

.calendar-date.selected {
	background: #0d6efd;
	color: white;
}

.calendar-date.disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

.calendar-date.empty {
	background: transparent;
	cursor: default;
	pointer-events: none;
}

.time-slots {
	margin-top: 30px;
}

.time-slot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 10px;
	margin-top: 15px;
}

.time-slot-card {
	cursor: pointer;
	background: #f8fafc;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	padding: 10px;
	text-align: center;
	font-weight: 500;
	transition: all 0.2s;
	font-size: 14px;
}


.time-slot-card:hover:not(.booked) {
	border-color: #0d6efd;
	background: #eef2ff;
}

.time-slot-card.selected {
	background: #0d6efd;
	color: white;
	border-color: #0d6efd;
}

.time-slot-card.booked {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
	text-decoration: line-through;
}

.booking-summary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 10px;
	padding: 25px;
	color: white;
	margin-top: 30px;
}

.summary-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.summary-icon {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.btn-primary-custom {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 15px;
	padding: 14px 30px;
	font-weight: 600;
	border: none;
	transition: all 0.3s;
}

.btn-primary-custom:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 15px 30px rgba(102,126,234,0.4);
}

.btn-primary-custom:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.btn-outline-custom {
	background: #f8fafc;
	border: 2px solid #e2e8f0;
	color: #64748b;
	border-radius: 8px;
	padding: 6px 16px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-outline-custom:hover {
	border-color: #0d6efd;
	background: #f8fafc;
}
		
/* Doctor Cards */
.doctor-card {
	background: white;
	border-radius: 30px;
	padding: 30px 25px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.08);
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.4s;
	text-align: center;
	height: 100%;
}
.doctor-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 45px rgba(13,110,253,0.15);
}
.doctor-img {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 50%;
	border: 5px solid #eef2ff;
	margin-bottom: 20px;
	transition: all 0.3s;
}
.doctor-card:hover .doctor-img {
	border-color: #0d6efd;
	transform: scale(1.05);
}
.doctor-name {
	font-weight: 800;
	font-size: 1.3rem;
	margin-bottom: 5px;
}
.doctor-designation {
	color: #0d6efd;
	font-weight: 600;
	margin-bottom: 10px;
}
.exp-badge {
	background: #f1f5f9;
	padding: 6px 18px;
	border-radius: 40px;
	font-size: 0.85rem;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 20px;
}
.btn-book {
	background: #0f172a;
	color: white;
	border-radius: 40px;
	padding: 12px 30px;
	font-weight: 700;
	width: 100%;
	border: none;
	transition: all 0.3s;
}
.btn-book:hover {
	background: #0d6efd;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(13,110,253,0.3);
}

/* About Section */
.about-image-wrapper {
	position: relative;
}
.about-image {
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.experience-badge {
	display: none;
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: #0d6efd;
	color: white;
	padding: 25px 30px;
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(13,110,253,0.3);
}

/* FAQ Accordion */
.accordion-item {
	border: none;
	margin-bottom: 20px;
	border-radius: 20px !important;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.accordion-button {
	font-weight: 700;
	padding: 20px 25px;
	border-radius: 20px !important;
}
.accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	box-shadow: none;
}
.accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

/* Parallax Testimonials Section */
.testimonials-parallax {
	background: url('https://images.pexels.com/photos/4386466/pexels-photo-4386466.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
	position: relative;
}
.testimonials-parallax::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(13,110,253,0.85) 100%);
}
.testimonials-parallax .container {
	position: relative;
	z-index: 2;
}
.testimonial-card {
	background: white;
	border-radius: 30px;
	padding: 35px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	border: 1px solid rgba(255,255,255,0.1);
	height: 100%;
	transition: all 0.3s;
}
.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.testimonial-icon {
	font-size: 3rem;
	color: #0d6efd;
	opacity: 0.3;
	margin-bottom: 20px;
}

/* Contact Section */
.contact-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}
.contact-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	color: white;
	font-size: 1.5rem;
	flex-shrink: 0;
}
.contact-form input,
.contact-form textarea {
	border-radius: 15px;
	border: 2px solid #e2e8f0;
	padding: 12px 18px;
	transition: all 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #0d6efd;
	box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
}

/* Enhanced Modal Popups */
.modal-content {
	border-radius: 30px;
	border: none;
	box-shadow: 0 30px 60px rgba(0,0,0,0.3);
	overflow: hidden;
}
.modal-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-bottom: none;
	padding: 30px 30px 20px;
}
.modal-header .btn-close {
	filter: brightness(0) invert(1);
	opacity: 0.8;
}
.modal-body {
	padding: 30px;
}
.input-group-custom {
	position: relative;
	margin-bottom: 20px;
}
.input-group-custom .form-control {
	border-radius: 15px;
	border: 2px solid #e2e8f0;
	padding: 14px 20px 14px 50px;
	font-size: 1rem;
	transition: all 0.3s;
	background: #fafbfc;
}
.input-group-custom .form-control:focus {
	border-color: #0d6efd;
	box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
	background: white;
}
.input-group-custom i {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #0d6efd;
	font-size: 1.2rem;
	z-index: 10;
}
.password-toggle {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #64748b;
	z-index: 10;
	background: none;
	border: none;
	padding: 5px;
}
.password-toggle:hover {
	color: #0d6efd;
}
.btn-modal-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 15px;
	padding: 14px;
	font-weight: 700;
	font-size: 1.1rem;
	width: 100%;
	border: none;
	transition: all 0.3s;
	margin-top: 10px;
}
.btn-modal-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 30px rgba(102,126,234,0.4);
}
.btn-modal-outline {
	background: transparent;
	border: 2px solid #e2e8f0;
	color: #1e293b;
	border-radius: 15px;
	padding: 14px;
	font-weight: 700;
	width: 100%;
	transition: all 0.3s;
}
.btn-modal-outline:hover {
	border-color: #0d6efd;
	background: #f8fafc;
}
.error-message {
	color: #dc3545;
	font-size: 0.85rem;
	margin-top: 5px;
	margin-bottom: 10px;
	padding-left: 10px;
	display: none;
}
.form-control.is-invalid {
	border-color: #dc3545 !important;
}
.form-control.is-valid {
	border-color: #198754 !important;
}
.modal-link {
	color: #0d6efd;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
}
.modal-link:hover {
	color: #0b5ed7;
	text-decoration: underline;
}

/* Footer */
footer {
	background: #0f172a;
	color: #94a3b8;
	padding: 40px 0;
}

/* Smooth Scroll */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

/* Animations */
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
.floating {
	animation: float 3s ease-in-out infinite;
}

 .payment-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.payment-modal.show {
	display: flex;
}

.payment-content {
	background: white;
	border-radius: 30px;
	padding: 40px;
	max-width: 500px;
	width: 90%;
	text-align: center;
}

.payment-spinner {
	border: 5px solid #e2e8f0;
	border-top: 5px solid #0d6efd;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
	margin: 20px auto;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.user-profile-dropdown {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 8px 16px;
	border-radius: 40px;
	background: #f1f5f9;
	transition: all 0.3s;
}
.user-profile-dropdown:hover {
	background: #e2e8f0;
}
.user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #0d6efd;
}

/* Dashboard Layout */
.dashboard-container {
	padding: 40px 0;
	min-height: calc(100vh - 200px);
}
.dashboard-sidebar {
	background: white;
	border-radius: 30px;
	padding: 30px 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	position: sticky;
	top: 100px;
}
.dashboard-main {
	background: white;
	border-radius: 30px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.sidebar-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-menu li {
	margin-bottom: 10px;
}
.sidebar-menu a {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	color: #64748b;
	text-decoration: none;
	border-radius: 15px;
	transition: all 0.3s;
	font-weight: 500;
	cursor: pointer;
}
.sidebar-menu a i {
	margin-right: 15px;
	font-size: 1.2rem;
	width: 24px;
}
.sidebar-menu a:hover {
	background: #f1f5f9;
	color: #0f172a;
}
.sidebar-menu a.active {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

/* Stats Cards */
.stat-card {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 20px;
	padding: 25px;
	color: white;
	height: 100%;
}
.stat-card.green {
	background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.stat-card.orange {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.stat-card.blue {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Appointment Cards */
.appointment-card {
	background: #f8fafc;
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 20px;
	border-left: 5px solid #0d6efd;
	transition: all 0.3s;
}
.appointment-card.past {
	border-left-color: #94a3b8;
	opacity: 0.8;
}
.appointment-card:hover {
	transform: translateX(5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.appointment-badge {
	padding: 5px 15px;
	border-radius: 40px;
	font-size: 0.85rem;
	font-weight: 600;
}
.badge-upcoming {
	background: #dbeafe;
	color: #0d6efd;
}
.badge-completed {
	background: #e2e8f0;
	color: #64748b;
}
.badge-cancelled {
	background: #fee2e2;
	color: #dc2626;
}

/* Profile Form */
.profile-image-upload {
	position: relative;
	width: 150px;
	height: 150px;
	margin: 0 auto 20px;
}
.profile-image-upload img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #eef2ff;
}
.upload-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	background: #0d6efd;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
}
.upload-btn:hover {
	background: #0b5ed7;
	transform: scale(1.1);
}

/* Form Controls */
.form-control, .form-select {
	border-radius: 15px;
	border: 2px solid #e2e8f0;
	padding: 12px 18px;
	transition: all 0.3s;
}
.form-control:focus, .form-select:focus {
	border-color: #0d6efd;
	box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
}
.input-group .form-control {
	border-radius: 15px 0 0 15px;
}
.input-group .btn {
	border-radius: 0 15px 15px 0;
	border: 2px solid #e2e8f0;
	border-left: none;
}
.btn-primary-custom {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 15px;
	padding: 12px 30px;
	font-weight: 600;
	border: none;
	transition: all 0.3s;
}
.btn-primary-custom:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 30px rgba(102,126,234,0.4);
}
.btn-outline-custom {
	background: transparent;
	border: 2px solid #e2e8f0;
	color: #64748b;
	border-radius: 15px;
	padding: 12px 30px;
	font-weight: 600;
	transition: all 0.3s;
}
.btn-outline-custom:hover {
	border-color: #0d6efd;
	background: #f8fafc;
}

/* Modal Styling */
.modal-content {
	border-radius: 30px;
	border: none;
	box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-bottom: none;
	padding: 25px 30px 20px;
}
.modal-header .btn-close {
	filter: brightness(0) invert(1);
}

/* Tabs */
.nav-tabs {
	border-bottom: 2px solid #e2e8f0;
	gap: 10px;
}
.nav-tabs .nav-link {
	border: none;
	color: #64748b;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 40px;
	transition: all 0.3s;
}
.nav-tabs .nav-link:hover {
	background: #f1f5f9;
	color: #0f172a;
}
.nav-tabs .nav-link.active {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

/* Content Tabs */
.content-tab {
	display: none;
}
.content-tab.active {
	display: block;
	animation: slideIn 0.4s ease-out;
}

/* Animations */
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Footer */
footer {
	background: #0f172a;
	color: #94a3b8;
	padding: 30px 0;
	margin-top: 50px;
}

/* Alert Styling */
.alert {
	border-radius: 20px;
	border: none;
}

/* Progress Bar */
.progress {
	border-radius: 10px;
	background: #e2e8f0;
}
.progress-bar {
	border-radius: 10px;
	transition: width 0.3s ease;
}