/* Taxashila College of BBA and BCA - Global Styling 
   Theme: Professional, Academic & Modern
*/

:root {
	--primary-color: #312651;
	/* Dark Purple / Primary */
	--secondary-red: #891623;
	/* Deep Red / Accent 1 */
	--accent-gold: #996207;
	/* Gold / Accent 2 */
	--white-color: #ffffff;
	--light-bg: #f8f9fa;
	--dark-text: #212529;
	--footer-bg: #1a142b;
	/* Darker shade of primary for footer */
}

/* Global Reset & Body */
body {
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	color: var(--dark-text);
	line-height: 1.6;
	overflow-x: hidden;
	padding-top: 80px;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Navbar Styling */
.taxashila-navbar {
	background-color: var(--white-color);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	padding: 10px 0;
	transition: all 0.3s ease-in-out;
}

/* Logo Text */
.taxashila-navbar .navbar-brand {
	color: var(--primary-color);
	font-weight: 800;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Center Menu Links */
.taxashila-navbar .nav-link {
	color: var(--primary-color);
	font-weight: 600;
	font-size: 1rem;
	margin: 0 8px;
	padding: 8px 15px;
	transition: color 0.3s ease;
}

.taxashila-navbar .nav-link:hover,
.taxashila-navbar .nav-link.active {
	color: var(--secondary-red);
}

/* Dropdown Styling */
.taxashila-navbar .dropdown-menu {
	border: none;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-top: 3px solid var(--secondary-red);
}

.taxashila-navbar .dropdown-item {
	font-weight: 500;
	color: var(--primary-color);
	transition: 0.3s;
}

.taxashila-navbar .dropdown-item:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

/* Desktop Hover Dropdown Effect */
@media all and (min-width: 992px) {
	.taxashila-navbar .nav-item .dropdown-menu {
		display: none;
		margin-top: 0;
	}

	.taxashila-navbar .nav-item:hover .dropdown-menu {
		display: block;
	}
}

/* --- Navbar Fixes --- */
.taxashila-navbar.sticky-top {
    position: fixed !important; /* Force fixed position */
    top: 0;
    width: 100%;
    z-index: 1100 !important; /* Content ke upar rahe */
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Active State Design (Top Bar) */
.taxashila-navbar .nav-link.active {
    color: #A02421 !important;
    border-top: 4px solid #A02421 !important;
    background-color: rgba(49, 38, 81, 0.05);
}

/* Dropdown item active style */
.dropdown-item.active {
    background-color: #A02421 !important;
    color: white !important;
}

/* Inquiry Button Styling */
.btn-inquiry {
	background-color: var(--secondary-red);
	color: var(--white-color);
	font-weight: 600;
	padding: 10px 25px;
	border-radius: 30px;
	/* Rounded button for modern look */
	border: 2px solid var(--secondary-red);
	transition: all 0.3s ease;
}

.btn-inquiry:hover {
	background-color: var(--accent-gold);
	border-color: var(--accent-gold);
	color: var(--white-color);
	box-shadow: 0 4px 10px rgba(153, 98, 7, 0.4);
}

/* --- Footer Styling --- */
.main-footer {
	background-color: var(--footer-bg);
	color: var(--white-color);
	padding: 70px 0 20px;
}

.footer-top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 40px;
	margin-bottom: 20px;
}

.footer-logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--white-color);
	margin-bottom: 20px;
	display: block;
	text-decoration: none;
}

.footer-logo span {
	color: var(--accent-gold);
}

.footer-heading {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
	color: var(--white-color);
}

.footer-heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background-color: var(--secondary-red);
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: 0.3s;
	font-size: 0.95rem;
}

.footer-links li a:hover {
	color: var(--accent-gold);
	padding-left: 8px;
}

.contact-info {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.contact-info i {
	color: var(--secondary-red);
	margin-right: 12px;
	margin-top: 5px;
}

.social-icons a {
	display: inline-block;
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.05);
	color: white;
	text-align: center;
	line-height: 38px;
	border-radius: 50%;
	margin-right: 10px;
	transition: 0.3s;
}

.social-icons a:hover {
	background: var(--secondary-red);
	transform: scale(1.1);
}

.footer-bottom {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
}

/* Helper Classes */
.section-padding {
	padding: 80px 0;
}

.bg-light-gray {
	background-color: var(--light-bg);
}

.text-primary-color {
	color: var(--primary-color);
}

/* --- Hero Slider Styling --- */
.hero-slider .carousel-item {
	height: 85vh;
	/* Desktop par screen ki 85% height */
	min-height: 400px;
	background-color: var(--primary-color);
}

.hero-slider .carousel-item img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	filter: brightness(0.6);
	/* Text clear dikhne ke liye image thodi dark */
}

.hero-caption {
	bottom: 30%;
	text-align: left;
}

.hero-caption h1 {
	font-size: 3.5rem;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 20px;
	animation: fadeInUp 1s both;
}

.hero-caption p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	max-width: 600px;
	animation: fadeInUp 1s 0.3s both;
}

.slider-btn {
	padding: 12px 35px;
	font-weight: 600;
	border-radius: 5px;
	transition: 0.3s;
	animation: fadeInUp 1s 0.6s both;
}

.carousel-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the 0.5 to make it darker (0.7) or lighter (0.3) */
}

.carousel-image-overlay img {
    position: relative;
    z-index: -1;
    object-fit: cover;
    height: 80vh; /* Keeps a consistent height */
}

/* Optional: Adding a soft shadow to text for extra clarity */
.hero-caption h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 800;
}

.hero-caption p {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    font-size: 1.2rem;
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.hero-caption h1 {
		font-size: 2.2rem;
	}

	.hero-slider .carousel-item {
		height: 60vh;
	}
}

/* Card aur Image par Hover Effect */
.about-img-container img {
	transition: transform 0.5s ease;
}

.about-img-container:hover img {
	transform: scale(1.03);
	/* Chota sa zoom effect */
}

/* Button Pulse Animation */
.btn-inquiry {
	position: relative;
	overflow: hidden;
}

.btn-inquiry::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300%;
	height: 300%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%) rotate(45deg) scale(0);
	transition: transform 0.6s ease-out;
}

.btn-inquiry:hover::after {
	transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

/* Custom Scrollbar for Premium Look */
::-webkit-scrollbar {
	width: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
	background: var(--secondary-red);
}

/* --- Courses Section Styling --- */
.course-card {
	border: none;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.4s ease;
	background: var(--white-color);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	height: 100%;
}

.course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(49, 38, 81, 0.2);
	/* Using Primary Color for shadow */
}

.course-img-wrapper {
	overflow: hidden;
	height: 430px;
}

.course-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.course-card:hover img {
	transform: scale(1.1);
}

.course-content {
	padding: 30px;
	border-top: 4px solid var(--accent-gold);
}

.course-title {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.course-text {
	color: #666;
	font-size: 0.95rem;
	margin-bottom: 20px;
}

.course-link {
	color: var(--secondary-red);
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
}

.course-link i {
	transition: margin-left 0.3s ease;
}

.course-link:hover i {
	margin-left: 8px;
}

/* --- Stats Counter Styling --- */
.stats-section {
	background-color: var(--primary-color);
	/* Dark Purple Theme */
	padding: 60px 0;
	color: var(--white-color);
}

.stat-item {
	text-align: center;
	padding: 20px;
}

.stat-icon {
	font-size: 2.5rem;
	color: var(--accent-gold);
	/* Gold Accent */
	margin-bottom: 15px;
	display: block;
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 5px;
	display: block;
}

.stat-label {
	font-size: 1.1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.8);
}

/* Border between items on desktop */
@media (min-width: 992px) {
	.stat-item:not(:last-child) {
		border-right: 1px solid rgba(255, 255, 255, 0.1);
	}
}

/* --- Why Choose Us Styling --- */
.feature-box {
	padding: 40px 30px;
	background: var(--white-color);
	border-radius: 15px;
	text-align: center;
	transition: all 0.4s ease;
	border-bottom: 5px solid transparent;
	height: 100%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
	transform: translateY(-10px);
	border-color: var(--secondary-red);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon-circle {
	width: 80px;
	height: 80px;
	line-height: 80px;
	background: rgba(49, 38, 81, 0.1);
	/* Light Primary */
	color: var(--primary-color);
	font-size: 2rem;
	border-radius: 50%;
	margin: 0 auto 25px;
	transition: 0.4s;
}

.feature-box:hover .feature-icon-circle {
	background: var(--primary-color);
	color: var(--white-color);
	transform: rotateY(360deg);
}

.feature-box h4 {
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 15px;
}

.feature-box p {
	color: #666;
	font-size: 0.95rem;
	margin-bottom: 0;
}

/* --- Admission Process Styling --- */
.admission-step {
	text-align: center;
	position: relative;
	padding: 20px;
}

.step-icon-wrapper {
	width: 100px;
	height: 100px;
	line-height: 100px;
	background: var(--white-color);
	border: 2px dashed var(--accent-gold);
	color: var(--primary-color);
	font-size: 2.2rem;
	border-radius: 50%;
	margin: 0 auto 25px;
	position: relative;
	z-index: 2;
	transition: 0.4s;
}

.admission-step:hover .step-icon-wrapper {
	background: var(--primary-color);
	color: var(--white-color);
	border-style: solid;
	transform: scale(1.1);
}

.step-number {
	position: absolute;
	top: 0;
	right: 0;
	width: 35px;
	height: 35px;
	background: var(--secondary-red);
	color: var(--white-color);
	border-radius: 50%;
	line-height: 35px;
	font-size: 1rem;
	font-weight: bold;
}

/* Connecting line for desktop */
@media (min-width: 992px) {
	.admission-step:not(:last-child)::after {
		content: '';
		position: absolute;
		top: 50px;
		left: 60%;
		width: 80%;
		height: 2px;
		background: rgba(153, 98, 7, 0.2);
		z-index: 1;
	}
}

.admission-step h5 {
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 10px;
}

.admission-step p {
	font-size: 0.9rem;
	color: #666;
}

/* --- Parallax Partition --- */
.parallax-partition {
	background-image: linear-gradient(rgba(49, 38, 81, 0.8), rgba(49, 38, 81, 0.8)),
		url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=2070');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 0;
	color: var(--white-color);
	text-align: center;
}

.parallax-partition h2 {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 20px;
}

.parallax-partition p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto 30px;
	opacity: 0.9;
}

/* --- Infrastructure Split Layout --- */
.infra-content {
	padding: 40px;
}

.infra-tag {
	color: var(--secondary-red);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 10px;
}

.infra-title {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 2.2rem;
	margin-bottom: 20px;
}

.infra-image-wrapper {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.infra-image-wrapper img {
	transition: transform 0.5s ease;
}

.infra-image-wrapper:hover img {
	transform: scale(1.05);
}

.news-event-card {
	background: var(--white-color);
	border-radius: 15px;
	border-left: 5px solid var(--secondary-red);
	transition: 0.3s;
}

.news-event-card:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transform: translateX(10px);
}

.event-date {
	background: var(--primary-color);
	color: var(--white-color);
	padding: 10px;
	border-radius: 8px;
	text-align: center;
	font-weight: bold;
	min-width: 70px;
}

/* --- About Page Specifics --- */
.page-header {
	background: linear-gradient(rgba(49, 38, 81, 0.9), rgba(49, 38, 81, 0.9)),
		url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=2070');
	padding: 80px 0;
	text-align: center;
	color: var(--white-color);
}

.breadcrumb-item+.breadcrumb-item::before {
	color: var(--accent-gold);
}

.mission-card {
	border: none;
	border-top: 5px solid var(--accent-gold);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: 0.3s;
	height: 100%;
}

.mission-card:hover {
	transform: translateY(-5px);
	border-top-color: var(--secondary-red);
}

.vision-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

/* --- Slanted Partition --- */
.slanted-bg {
	position: relative;
	background: var(--primary-color);
	color: var(--white-color);
	padding: 100px 0;
	clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
	margin: 50px 0;
}

/* --- Counter Box --- */
.counter-box {
	text-align: center;
	padding: 30px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: 0.3s;
}

.counter-box:hover {
	background: var(--secondary-red);
	transform: translateY(-10px);
}

.counter-number {
	font-size: 3rem;
	font-weight: 800;
	display: block;
	color: var(--accent-gold);
}

/* --- Vision Mission Specifics --- */
.glass-icon-box {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(49, 38, 81, 0.1);
	border-radius: 20px;
	padding: 40px;
	height: 100%;
	transition: 0.4s;
}

.glass-icon-box:hover {
	background: var(--primary-color);
	color: var(--white-color) !important;
}

.glass-icon-box:hover i,
.glass-icon-box:hover h3 {
	color: var(--accent-gold) !important;
}

.mission-icon-large {
	font-size: 3.5rem;
	color: var(--secondary-red);
	margin-bottom: 25px;
}

/* --- Course Page Styles --- */
.course-hero {
	background: linear-gradient(rgba(49, 38, 81, 0.8), rgba(49, 38, 81, 0.8)),
		url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2071');
	padding: 100px 0;
	color: white;
}

.nav-pills .nav-link.active {
	background-color: var(--secondary-red);
	color: white;
}

.nav-pills .nav-link {
	color: var(--primary-color);
	font-weight: 600;
	border: 1px solid #dee2e6;
	margin: 5px;
}

.career-box {
	border-radius: 15px;
	padding: 25px;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	border-bottom: 4px solid var(--accent-gold);
	height: 100%;
}

/* --- Gallery Specifics --- */
.filter-btn {
	border: 2px solid #312651;
	background: transparent;
	color: #312651;
	padding: 8px 25px;
	border-radius: 50px;
	font-weight: 600;
	transition: 0.3s;
	margin: 5px;
}

.filter-btn.active,
.filter-btn:hover {
	background: #312651;
	color: #fff;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	margin-bottom: 24px;
	cursor: pointer;
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(49, 38, 81, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-item img {
	transition: 0.5s;
	width: 100%;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

/* --- Video Tour Styles --- */
.video-tour-section {
	background: linear-gradient(rgba(49, 38, 81, 0.95), rgba(49, 38, 81, 0.95)),
		url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=2070');
	background-size: cover;
	background-attachment: fixed;
	padding: 100px 0;
}

.video-container {
	position: relative;
	border: 8px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.play-btn-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.play-btn {
	width: 90px;
	height: 90px;
	background: #A02421;
	/* Secondary Maroon */
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	text-decoration: none;
	transition: 0.4s;
	box-shadow: 0 0 0 0 rgba(160, 36, 33, 0.5);
	animation: pulse-red 2s infinite;
}

.play-btn:hover {
	background: #996207;
	/* Accent Gold */
	color: #fff;
	transform: scale(1.1);
}

@keyframes pulse-red {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(160, 36, 33, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 20px rgba(160, 36, 33, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(160, 36, 33, 0);
	}
}

/* --- Lightbox / Full-Screen Image View --- */
.lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(49, 38, 81, 0.9);
	/* Your Primary Purple */
	backdrop-filter: blur(10px);
	/* Blurry Background Effect */
	display: none;
	z-index: 9999;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.lightbox-content {
	max-width: 85%;
	max-height: 80%;
	border: 5px solid #fff;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
	transition: 0.3s ease-in-out;
}

.lightbox-overlay.active {
	display: flex;
}

.lightbox-overlay.active .lightbox-content {
	transform: scale(1);
}

/* Navigation Buttons */
.lb-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #A02421;
	/* Your Maroon color */
	color: white;
	border: none;
	padding: 15px 20px;
	cursor: pointer;
	border-radius: 50%;
	font-size: 20px;
	transition: 0.3s;
}

.lb-nav:hover {
	background: #996207;
	/* Your Gold color */
}

.lb-prev {
	left: 30px;
}

.lb-next {
	right: 30px;
}

.lb-close {
	position: absolute;
	top: 30px;
	right: 40px;
	color: white;
	font-size: 40px;
	cursor: pointer;
}

.lb-nav:active {
	transform: translateY(-50%) scale(0.9);
	background: #996207;
	/* Gold feedback when key is pressed */
}

/* --- Event Card Styles --- */
.card-img-top {
	height: 220px;
	object-fit: cover;
	transition: 0.5s;
}

.card:hover .card-img-top {
	transform: scale(1.1);
}

.card {
	transition: 0.3s;
}

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

.badge {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Admission Step Cards --- */
.bg-light .p-4 {
	transition: 0.3s;
	border-bottom: 4px solid transparent;
}

.bg-light .p-4:hover {
	transform: translateY(-5px);
	border-bottom: 4px solid #996207;
	/* Gold Highlight */
}

.table thead {
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

/* --- Floating WhatsApp Icon --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e; /* Darker green on hover */
    color: #fff;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px rgba(153, 98, 7, 0.3); /* Gold shadow on hover */
}

/* Pulse Animation to attract attention */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.7;
    z-index: -1;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Mobile responsive adjustment */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* --- Mission Cards Design --- */
.mission-card {
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(49, 38, 81, 0.15) !important;
}

.mission-card i {
    transition: 0.3s;
}

.mission-card:hover i {
    transform: scale(1.1);
}

/* Page Header Overlay Adjustments */
.page-header h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}