@charset "utf-8";
/*------------------------------------------------------------------
[Master Stylesheet]

Project:        CharityFund
Version:        2.0
Last change:    02.20.2016
Primary use:    Attorney & Lawyer Business Template
Author:         ThemeMascot
URL:            http://themeforest.net/user/ThemeMascot
-------------------------------------------------------------------*/
@import "font-awesome.min.css";
@import "font-awesome-animation.min.css";
@import "pe-icon-7-stroke.css";
/* @import "../css/elegant-icons.css"; */
/* @import "../css/stroke-gap-icons.css"; */
@import "flaticon-set-charity.css";
/* @import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700,800); */
@import url(http://fonts.googleapis.com/css?family=Playfair+Display:400,400italic,700,700italic);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,300,200,500,700,600,800);
/*
This file contains the common styles of this theme.
*/
/*------------------------------------------------------------------
[Table of contents]

		* Typography.less
		* Common.less
		* Extra.less
		* Header.less
		* Nav.less
		* Inner-Header-Title.less
		* Vertical-Nav.less
		* Boxed-layout.less
		* Form.less
		* Side-Push-Panel.less
		* Box-Hover-Effect.less
		* gallery-isotope.less
		* Slider.less
		* Home.less
		* About.less
		* Contact.less
		* Event.less
		* Practice-Area.less
		* Services.less
		* Job.less
		* Shop.less
		* Blog.less
		* Shortcode.less 
			* Alerts.less
			* Buttons.less
			* Blockquote.less
			* Clients.less
			* Countdown.less
			* Countdown-Timer.less
			* Dividers.less
			* Facebook-Disqus-Comments.less
			* Faqs.less
			* Flexslider.less
			* Flip-Box.less
			* Font-Icons-Style.less
			* Funfacts.less
			* Icon-Boxes.less
			* Infinitescroll.less
			* Instagram.less
			* Light-Box.less
			* Map.less
			* Pegination.less
			* Pricing.less
			* Process-Steps.less
			* Progress-Bar.less
			* Promo.less
			* Section-Title.less
			* Separators.less
			* styled-icons.less
			* Tabs.less
			* Teams.less
			* Testimonials.less
			* Toggles-Accordions.less
			* Vertical-Timeline.less
			* Working-Process.less
			* Widgets.less
	* Footer
* ===============================================
*/
/*
 * Typography.less
 * -----------------------------------------------
*/

/* ---------------------------------------------
	<!-- That is For Heading Title -->
------------------------------------------------*/

 
.photo-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: bold;
}

.photo-title span {
	color: #d63384;
	/* magenta for "Photo" */
}

	.photo-title span:last-child {
		color: #254475;
		/* purple for "Gallery" */
	}

/* ---------------------------------------------
	<!-- That Is For Special Guiest -->
------------------------------------------------*/
 
.page-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0px 20px;
	background: #fff8f3;
	/* optional background */
	font-family: Arial, sans-serif;
}

.crew-carousel {
	width: 100%;
	max-width: 1200px;
	height: 450px;
	position: relative;
	perspective: 1000px;
	margin-top: 1px;
}

.crew-track {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s ease;
}

.crew-card {
	position: absolute;
	width: 280px;
	height: 380px;
	border-radius: 20px;
	overflow: hidden;
	background: white;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s ease;
	cursor: pointer;
}

	.crew-card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.crew-card.center {
		z-index: 10;
		transform: scale(1.1);
	}

	.crew-card.left-1 {
		transform: translateX(-200px) scale(0.9);
		opacity: 0.8;
		filter: grayscale(80%);
	}

	.crew-card.left-2 {
		transform: translateX(-400px) scale(0.8);
		opacity: 0.6;
		filter: grayscale(100%);
	}

	.crew-card.right-1 {
		transform: translateX(200px) scale(0.9);
		opacity: 0.8;
		filter: grayscale(80%);
	}

	.crew-card.right-2 {
		transform: translateX(400px) scale(0.8);
		opacity: 0.6;
		filter: grayscale(100%);
	}

	.crew-card.hidden {
		opacity: 0;
		pointer-events: none;
	}

.crew-info {
	text-align: center;
	margin-top: 40px;
}

.crew-name {
	font-size: 18px;
	color: #254475;
	text-transform:uppercase;
	font-weight:700;
	/* deep orange */
}

.crew-role {
	font-size: 1.2rem;
	text-transform: uppercase;
	color: #254475;
	letter-spacing: 0.1em;
	font-weight: 700;
}

.crew-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 0px;
}

.crew-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(204, 85, 0, 0.2);
	/* orange tint */
	cursor: pointer;
}

	.crew-dot.active {
		background: #254475;
	}

.crew-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #254475;
	/* orange base */
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

	.crew-arrow:hover {
		background: rgba(170, 68, 0, 0.9);
		/* deeper orange hover */
	}

.crew-left {
	left: 20px;
}

.crew-right {
	right: 20px;
}

@media (max-width: 768px) {
	.crew-carousel {
		height: 400px;
		margin-top: 0px;
	}

	.crew-card {
		width: 220px;
		height: 320px;
		border-radius: 15px;
	}

		.crew-card.center {
			transform: scale(1.05);
		}

		.crew-card.left-1,
		.crew-card.right-1 {
			transform: translateX(-120px) scale(0.9);
			opacity: 0.7;
		}

		.crew-card.left-2,
		.crew-card.right-2 {
			display: none;
		}

	.crew-arrow {
		width: 35px;
		height: 35px;
		font-size: 1.2rem;
	}

	.crew-left {
		left: 10px;
	}

	.crew-right {
		right: 10px;
	}

	.crew-name {
		font-size: 1.8rem;
	}

	.crew-role {
		font-size: 1rem;
	}

	.crew-dots {
		gap: 6px;
		margin-top: 10px;
	}

	.crew-dot {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 480px) {
	.crew-card {
		width: 180px;
		height: 260px;
	}

		.crew-card.left-1,
		.crew-card.right-1 {
			transform: translateX(-90px) scale(0.85);
		}

	.crew-name {
		font-size: 1.4rem;
	}

	.crew-role {
		font-size: 0.9rem;
	}

	.crew-dot {
		width: 8px;
		height: 8px;
	}
}


/* ---------------------------------------------
	<!-- for nav bar -->
------------------------------------------------*/

 
nav {
	background-color: #1f3a63;
	box-shadow: 0 2px 6px rgba(31, 58, 99, 0.3);
	position: relative;
}

/* Hamburger Button */
.menu-toggle {
	display: none;
	position: relative;
	top: 50%;
	margin-left: 150px;
	bottom: -17px;
	transform: translateY(-50%);
	font-size: 26px;
	color: #f0f4f8;
	cursor: pointer;
	user-select: none;
	z-index: 20;
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: normal;
	align-items: center;
	gap: 15px;
	transition: max-height 0.3s ease;
	overflow: visible;
}

nav li {
	position: relative;
}

nav a {
	text-decoration: none;
	color: #f0f4f8;
	padding: 8px 0px;
	display: flex;
	align-items: center;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	transition: color 0.3s ease;
	border-radius: 4px;
	user-select: none;
	position: relative;
	z-index: 2;
}

	nav a i {
		margin-right: 8px;
		font-size: 18px;
		transition: transform 0.3s ease;
	}

/* Remove hover effect on main menu links */
nav > ul > li > a:hover,
nav > ul > li > a:active {
	color: #f0f4f8;
	background: none;
	box-shadow: none;
	transform: none;
	cursor: default;
}

nav > ul > li > a i {
	transform: none !important;
}

/* Dropdown styles */
nav li:hover > ul {
	display: block;
}

nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #2a4a82;
	border-radius: 6px;
	min-width: 200px;
	box-shadow: 0 6px 12px rgba(31, 58, 99, 0.4);
	padding: 10px 0;
	z-index: 999;
}

	nav ul ul ul {
		left: 100%;
		top: 0;
		border-radius: 6px;
		box-shadow: 0 6px 15px rgba(31, 58, 99, 0.4);
	}

	nav ul ul li a {
		padding: 10px 20px;
		font-size: 14px;
		font-weight: 400;
		text-transform: none;
		color: #dbe5f7;
		letter-spacing: 0.4px;
		transition: background-color 0.25s ease, color 0.25s ease;
		border-radius: 4px;
		display: block;
		white-space: nowrap;
	}

		nav ul ul li a:hover,
		nav ul ul li a:focus {
			background-color: #3e6bb9;
			color: #fff;
			cursor: pointer;
		}

		nav ul ul li a:active {
			background-color: #335ea0;
		}

/* Arrow indicators */
li.dropdown > a::after {
	content: "\f078";
	/* FontAwesome down arrow */
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-left: 6px;
	font-size: 11px;
	transition: transform 0.3s ease;
	display: inline-block;
	vertical-align: middle;
	color: #cbd6e8;
	user-select: none;
}

li.dropdown:hover > a::after {
	transform: rotate(180deg);
	color: #f0f4f8;
}

li.dropdown ul li.dropdown > a::after {
	content: "\f054";
	/* FontAwesome right arrow */
	color: #cbd6e8;
}

li.dropdown ul li.dropdown:hover > a::after {
	transform: rotate(90deg);
	color: #f0f4f8;
}

/* ========== Responsive Styles ========== */

/* Tablet: reduce gap a bit */
@media (max-width: 991px) {
	nav ul {
		gap: 20px;
	}
}

/* Mobile */
@media (max-width: 767px) {

	/* Show hamburger */
	.menu-toggle {
		display: block;
	}

	nav ul {
		flex-direction: column;
		align-items: flex-start;
		max-height: 0;
		overflow: hidden;
		width: 100%;
		gap: 0;
		background-color: #1f3a63;
		border-radius: 0 0 8px 8px;
		transition: max-height 0.4s ease;
	}

		nav ul.open {
			max-height: 1000px;
		}

	nav li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	nav a {
		padding: 14px 20px;
		width: 100%;
		font-size: 16px;
	}

	/* Dropdown */
	nav ul ul {
		position: static;
		background-color: #2a4a82;
		box-shadow: none;
		border-radius: 0;
		padding-left: 10px;
		display: none;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

		nav ul ul.open {
			display: block;
			max-height: 1000px;
		}

		nav ul ul ul {
			padding-left: 15px;
		}

	/* On mobile, clicking dropdown parent toggles submenu */
	li.dropdown > a::after {
		float: right;
		margin-left: 0;
	}

	li.dropdown:hover > a::after {
		transform: none;
		color: #cbd6e8;
	}
}
 
 
/* ---------------------------------------------
	for footer bar
------------------------------------------------*/
/* Footer Base */
footer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px 20px;
	background: linear-gradient(135deg, #1c2b4a, #254475);
	color: #fff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	border-top: 6px solid #00b4d8;
}

/* Left Section */
.footer-left {
	width: 35%;
	min-width: 280px;
	margin-left: 20px;
}

.footer-title {
	font-size: 1.7em;
	margin-bottom: 25px;
	text-transform: uppercase;
	color: #00b4d8;
}

.footer-left p {
	margin: 25px 0;
	font-size: 1.05em;
	line-height: 1.6;
}

.footer-left i {
	color: #00b4d8;
	margin-right: 10px;
}

.footer-left a {
	color: #00b4d8;
	text-decoration: none;
	transition: color 0.3s ease;
}

	.footer-left a:hover {
		color: #ffffff;
		text-decoration: underline;
	}

/* Social Icons Under Email */
.social-media-icons.under-email {
	margin-top: 20px;
}

.social-icon {
	margin: 0 10px;
	font-size: 24px;
	color: #00b4d8;
	display: inline-block;
	transition: transform 0.3s ease, color 0.3s ease;
}

	.social-icon:hover {
		color: #ffffff;
		transform: scale(1.2) rotate(5deg);
	}

/* Right Section (Map) */
.footer-right {
	width: 60%;
	min-width: 300px;
	text-align: center;
}

.google-map iframe {
	width: 100%;
	height: 300px;
	border-radius: 12px;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
	footer {
		flex-direction: column;
		align-items: center;
		padding: 40px 15px;
	}

	.footer-left,
	.footer-right {
		width: 100%;
		margin: 0 auto 30px;
		text-align: center;
	}

	.footer-title {
		font-size: 1.5em;
	}

	.footer-left p {
		font-size: 1em;
	}

	.social-media-icons.under-email {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 15px;
		margin-top: 15px;
	}

	.social-icon {
		font-size: 22px;
		margin: 0;
	}

	.google-map iframe {
		width: 100%;
		height: 250px;
		border-radius: 10px;
	}

	.footer-bottom {
		font-size: 0.9em;
		padding: 10px;
	}

		.footer-bottom a {
			flex-direction: row;
			justify-content: center;
		}
}

/*---------------------------------------
	Footer Bottom Section 
-----------------------------------------*/
            .footer-bottom {
                background-color: #0f1c33;
                text-align: center;
                padding: 5px 20px;
                font-size: 0.95em;
                color: #ccc;
                border-top: 1px solid #1c2b4a;
            }

                .footer-bottom a {
                    color: #00b4d8;
                    text-decoration: none;
                    font-weight: 400;
                    display: inline-flex;
                    align-items: center;
                    gap: 2px;
                    transition: color 0.3s ease;
                }

                    .footer-bottom a:hover {
                        color: #fff;
                    }

                .footer-bottom i {
                    color: #00b4d8;
                    transition: transform 0.3s ease, color 0.3s ease;
                }

                .footer-bottom a:hover i {
                    transform: scale(1.2) rotate(10deg);
                    color: #fff;
                }

            /* Icon spacing (optional fine-tune) */
            .icon-left {
                margin-right: 5px;
            }

            .icon-right {
                margin-left: 5px;
            }


/*---------------------------------------
<!--
for banners-- >
-----------------------------------------*/
.banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 70px;
	background: linear-gradient(90deg, #ffffff, #e6f0ff);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-bottom: 4px solid #d3646a;
	border-top: 4px solid #d3646a;
	min-height: 100px;
}

.logo,
.naac-badge {
	width: 120px;
	height: auto;
	object-fit: contain;
}

.center-content {
	text-align: center;
	flex: 1;
	padding: 0 20px;
}

	.center-content h1 {
		margin: 5px 0;
		font-size: 26px;
		font-weight: 700;
		color: #0423B6;
		text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
		line-height: 1.2;
	}

	.center-content p {
		margin: -5px 0;
		font-size: 16px;
	}

.subtext-red {
	color: #b30000;
	font-weight: 700;
	text-transform:uppercase;
}

.subtext-black {
	color: #333;
	font-weight: 500;
}


/* Search bar styling */
.search-container {
	margin: 1px;
	text-align: center;
}

	.search-container input[type="text"] {
		width: 100px;
		padding: 10px 15px;
		font-size: 16px;
		border: 2px solid #004080;
		border-radius: 25px 0 0 25px;
		outline: none;
	}

	.search-container button {
		padding: 10px 20px;
		font-size: 16px;
		border: 2px solid #004080;
		border-left: none;
		background-color: #004080;
		color: white;
		cursor: pointer;
		border-radius: 0 25px 25px 0;
		transition: background-color 0.3s;
	}

		.search-container button:hover {
			background-color: #002a55;
		}

@media (max-width: 768px) {
	.banner {
		flex-direction: column;
		padding: 0px 5px;
		text-align: center;
		gap: 2px;
		min-height: auto;
	}

	.logo,
	.naac-badge {
		width: 80px;
		margin: 0 auto;
	}

	.center-content {
		padding: 0;
		margin: 0;
	}

		.center-content h1 {
			font-size: 20px;
		}

		.center-content p {
			font-size: 14px;
			margin: 2px 0;
		}



	/* Optional: search input width on mobile */
	.search-container input[type="text"] {
		width: 80%;
		max-width: 250px;
	}



	.ugc-registration {
		display: block;
		text-align: left;
		margin-left: 20px;
		color: #000000;
		margin-left: 5%; /* relative margin for responsiveness */
		width: 90%; /* use relative width */
		font-size: 1rem; /* scalable font size */
		line-height: 1.4;
	}

	@media (max-width: 600px) {
		.ugc-registration {
			font-size:10px; /* slightly smaller font for small screens */
			margin-left: 4%;
			width: 92%;
		}
	}

}

/* MOBILE MEDIA QUERIES */
@media (max-width: 768px) {
	.center-content h1 {
		font-size: 1.4rem;
	}

	.center-content h4 {
		font-size: 1rem;
	}

	.center-content p,
	.center-content span {
		font-size: 0.9rem;
	}
}

@media (max-width: 400px) {
	.center-content h1 {
		font-size: 1.2rem;
	}

	.center-content h4 {
		font-size: 0.9rem;
	}

	.center-content p,
	.center-content span {
		font-size: 10px;
	}
}

/* Extra small devices */
@media (max-width: 400px) {
	.center-content h1 {
		font-size: 18px;
	}

	.center-content p {
		font-size: 12px;
	}

	.logo,
	.naac-badge {
		width: 60px;
	}
}



/* 🔁 That is For carousel styles */




/* 🔁 Tablet view adjustments (≤ 991px) */
@media (max-width: 991px) {
	.carousel-inner {
		height: 400px;
	}

	.carousel-item {
		height: 100%;
	}

	.carousel-item img {
		width: 300px !important;
		height: 300px !important;
	}
}

/* 🔁 Mobile view adjustments (≤ 767px) */
@media (max-width: 767px) {
	.carousel-inner {
		height: 415px;
	}

	.carousel-item {
		height: 100%;
	}

	.carousel-item img {
		width: 423px !important;
		height: 300px !important;
		transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
	}

	.carousel-item.active img {
		transform: scale(1.05);
		opacity: 1;
	}

	/* Smaller indicators */
	.carousel-indicators button {
		width: 8px;
		height: 8px;
	}

	/* Smaller control icons */
	.carousel-control-prev-icon,
	.carousel-control-next-icon {
		padding: 6px;
	}
}

/* ✅ Stylish indicators */
.carousel-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.6;
	transition: opacity 0.3s;
}

.carousel-indicators .active {
	opacity: 1;
	background-color: #007bff;
}

/* ✅ Stylish next/prev buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	padding: 10px;
}



<!-- That is For Notification Styles -->

/* Section Background */
.styled-section {
	background: linear-gradient(145deg, #f8f9fa 0%, #ffe6e9 100%);
	padding: 20px 0;
	color: #333;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Title */
.section-title h2 {
	font-size: 26px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
	border-left: 6px solid #254475;
	padding-left: 12px;
}

.section-title span {
	color: #254475;
}

/* Custom Card */
.custom-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid #eee;
	display: flex;
	flex-direction: column;
}

	.custom-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	}

	.custom-card img {
		height: 250px;
		width: 100%;
		object-fit: cover;
	}

/* Card Body */
.card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.card-text {
	font-size: 15px;
	line-height: 1.7;
	text-align: justify;
	flex-grow: 1;
}

/* Read More Button */
.read-more-btn {
	background-color: #254475;
	color: #fff;
	font-size: 14px;
	padding: 8px 20px;
	border: none;
	border-radius: 4px;
	text-transform: uppercase;
	transition: 0.3s ease;
	display: inline-block;
	text-decoration: none;
	align-self: flex-start;
}

	.read-more-btn:hover {
		background-color: #c0392b;
	}

/* Notifications Box */
.notifications-box {
	background: #ffffffb3;
	border-left: 5px solid #254475;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	height: 100%;
}



/* Scroll Wrapper - defines height excluding heading and button */
.scroll-wrapper {
	position: relative;
	overflow: hidden;
	height: calc(100% - 110px);
}

/* Scrolling content: continuous upward scroll */
.scrolling-content {
	display: flex;
	flex-direction: column;
	animation: scroll-up-continuous 30s linear infinite;
}

.notifications-box:hover .scrolling-content {
	animation-play-state: paused;
}

.notification-item {
	display: flex;
	flex-direction: column;
	padding: 15px;
	margin-bottom: 10px;
	border-radius: 6px;
	background: #fdfdfd;
	border: 1px solid #eee;
	transition: all 0.3s ease;
}

	.notification-item:hover {
		background-color: #ffefef;
		color: #c0392b;
		cursor: pointer;
		transform: translateX(5px);
	}

.notification-date {
	background-color: #ff4b5c;
	color: #fff;
	font-weight: 700;
	display: inline-block;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 14px;
	margin-bottom: 8px;
	width: fit-content;
	user-select: none;
}

.notification-message {
	font-size: 15px;
	color: #0423b6;
	font-weight:700;
	line-height: 1.5;
}

/* NEW Badge */
.new-badge {
	background-color: #ff4b5c;
	color: white;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 6px;
	margin-left: 8px;
	border-radius: 4px;
	text-transform: uppercase;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes scroll-up-continuous {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-50%);
	}
}

.show-more-container {
	padding: 15px 0 10px;
	text-align: center;
}

.show-more-btn {
	background-color: #254475;
	color: white;
	font-weight: 700;
	border: none;
	padding: 10px 28px;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(255, 75, 92, 0.5);
	transition: background-color 0.3s ease, transform 0.2s ease;
}

	.show-more-btn:hover {
		background-color: #c0392b;
		transform: scale(1.05);
	}

@media (max-width: 767px) {
	.crew-carousel {
		position: relative;
		overflow: hidden;
		padding: 0 20px;
	}

	.crew-track {
		display: flex;
		transition: transform 0.5s ease;
		width: 100%;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 10px;
		padding: 20px 0;
	}

	.crew-card {
		flex: 0 0 80%;
		scroll-snap-align: center;
		border-radius: 10px;
		overflow: hidden;
	}

		.crew-card img {
			width: 100%;
			height: auto;
		}

	.crew-arrow {
		display: none; /* Hide arrows on small screens */
	}

	.crew-info {
		text-align: center;
		margin-top: 15px;
	}

	.crew-name {
		font-size: 18px;
	}

	.crew-role {
		font-size: 14px;
		color: #777;
	}

	.crew-dots {
		display: flex;
		justify-content: center;
		margin-top: 10px;
		gap: 6px;
	}

	.crew-dot {
		width: 10px;
		height: 10px;
		background: #ccc;
		border-radius: 50%;
		cursor: pointer;
	}

		.crew-dot.active {
			background-color: #254475;
		}
}


/* That is For Links */


<!-- That is For Important Links -->
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.glass-section {
	min-height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 25px 10px;
	background: linear-gradient(135deg, #b9b9ee, #ffe9f47e);
}

/* Title styles */
.photo-title {
	font-size: 3.5rem;
	font-weight: 900;
	color: #fff;
	letter-spacing: 6px;
	text-transform: uppercase;
	user-select: none;
	text-align: center;
	background: rgba(255, 255, 255, 0.08);
	padding: 20px 50px;
	border-radius: 40px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(30px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 50px rgba(255, 255, 255, 0.15);
}

	.photo-title span {
		color: #ffd700;
		text-shadow: 0 0 10px #ffd700aa;
	}

.glass-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 25px 40px;
	width: 100%;
	padding: 0 20px;
}

.glass-btn {
	padding: 18px 25px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	color: #1f3a63;
	cursor: pointer;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
	backdrop-filter: blur(25px);
	border: 0px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(255, 255, 255, 0.15);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
	user-select: none;
	font-size: 1.1rem;
}

	/* Hover Effects */
	.glass-btn::before {
		content: '';
		position: absolute;
		top: -60%;
		left: -60%;
		width: 220%;
		height: 220%;
		background: linear-gradient(270deg, transparent, rgba(255, 255, 255, 0.45), transparent);
		opacity: 0;
		transition: opacity 0.6s ease;
		filter: blur(40px);
		pointer-events: none;
	}

	.glass-btn:hover::before {
		opacity: 1;
	}

	.glass-btn:hover {
		transform: translateY(-10px) scale(1.05);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px 6px rgba(255, 255, 255, 0.5), inset 0 0 70px rgba(255, 255, 255, 0.2);
	}

/* Subject-specific vibrant background tints */
.biotech {
	background: linear-gradient(145deg, rgba(19, 115, 107, 0.55), rgba(19, 115, 107, 0.25));
	border-color: rgba(19, 115, 107, 0.8);
}

.botany {
	background: linear-gradient(145deg, rgba(46, 204, 113, 0.55), rgba(46, 204, 113, 0.25));
	border-color: rgba(46, 204, 113, 0.8);
}

.chemistry {
	background: linear-gradient(145deg, rgba(155, 89, 182, 0.55), rgba(155, 89, 182, 0.25));
	border-color: rgba(155, 89, 182, 0.8);
}

.dance {
	background: linear-gradient(145deg, rgba(173, 92, 232, 0.55), rgba(173, 92, 232, 0.25));
	border-color: rgba(173, 92, 232, 0.8);
}

.economics {
	background: linear-gradient(145deg, rgba(52, 152, 219, 0.55), rgba(52, 152, 219, 0.25));
	border-color: rgba(52, 152, 219, 0.8);
}

.english {
	background: linear-gradient(145deg, rgba(110, 44, 0, 0.65), rgba(110, 44, 0, 0.4));
	border-color: rgba(110, 44, 0, 0.9);
}

.history {
	background: linear-gradient(145deg, rgba(240, 98, 146, 0.55), rgba(240, 98, 146, 0.25));
	border-color: rgba(240, 98, 146, 0.8);
}

.home-science {
	background: linear-gradient(145deg, rgba(0, 26, 255, 0.55), rgba(0, 26, 255, 0.25));
	border-color: rgba(0, 26, 255, 0.8);
}

.political-science {
	background: linear-gradient(145deg, rgba(231, 76, 60, 0.55), rgba(231, 76, 60, 0.25));
	border-color: rgba(231, 76, 60, 0.8);
}

.physics {
	background: linear-gradient(145deg, rgba(236, 64, 122, 0.55), rgba(236, 64, 122, 0.25));
	border-color: rgba(236, 64, 122, 0.8);
}

.sociology {
	background: linear-gradient(145deg, rgba(245, 0, 87, 0.55), rgba(245, 0, 87, 0.25));
	border-color: rgba(245, 0, 87, 0.8);
}

.zoology {
	background: linear-gradient(145deg, rgba(39, 174, 96, 0.55), rgba(39, 174, 96, 0.25));
	border-color: rgba(39, 174, 96, 0.8);
}

/* Responsive tweaks */
@media (max-width: 650px) {
	.glass-container {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
		gap: 20px 25px;
	}

	.glass-btn {
		font-size: 1rem;
		padding: 15px 20px;
	}

	.photo-title {
		font-size: 2.5rem;
		padding: 15px 35px;
	}

}



/* That Is For Special Guiest (Seprate)*/



/* Styling for Principal’s image to maintain aspect ratio */
.principal-img {
	width: 100%;
	height: 257px; /* or adjust to what you want */
	object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 480px) {
	#verticalCarousel {
		width: 90%;
		height: 420px;
	}
}



/* Smooth carousel fade & zoom-in effect */
.soft-carousel .carousel-item {
	transition: transform 1.2s ease, opacity 1.2s ease-in-out;
}

.soft-carousel .carousel-img-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* subtle shadow */
	max-height: 500px; /* adjust based on layout */
}

	.soft-carousel .carousel-img-wrapper img {
		width: 100%;
		height: auto;
		object-fit: cover;
		transition: transform 3s ease;
		display: block;
	}

/* Zoom effect when active */
.soft-carousel .carousel-item.active .carousel-img-wrapper img {
	transform: scale(1.05);
}

/* Optional: Light overlay effect on image */
.soft-carousel .carousel-img-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
	pointer-events: none;
	transition: opacity 0.6s;
	border-radius: 10px;
}

