:root {
	--primary-color: #771D1D;
	--primary-bg: #FFEECC;
	--accent: #6C1340;
	--maroon-dark: #6C1340;
	--white: #ffffff;
	--gray: #F6F6EF;
}

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

.container-box {
	max-width: 95%;
	margin: 0 auto;
}

html {
	scroll-behavior: smooth;
	font-size: 1rem;
	line-height: 1.4;
}

body,
* {
	font-family: 'Noto Sans', sans-serif !important;
	font-size: 1rem;
}

/* Top Header */
.top-header {
	background: var(--white);
	border-bottom: 1px solid #e0e0e0;
	padding: 7px 0;
}

.logo-section {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.search-box {
	position: relative;
	width: 320px;
}

.search-box input {
	width: 100%;
	padding: 5px 48px 5px 12px;
	border: 1px solid #C6C6C6;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom: 2px solid #6C1340;
	font-size: 16px;

}

.search-box svg {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: none;
	cursor: pointer;
	border-left: 1px solid #C6C6C6;
	padding-left: 0px;
	width: 15%;
}

.icon-group {
	display: flex;
	gap: 8px;
	align-items: center;
}


.icon-divider {
	width: 1px;
	height: 30px;
	background-color: #6C1340;
	display: inline-block;
}


.icon-btn {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 14px;
	color: var(--accent);
	transition: all 0.3s;
}

.icon-btn:hover {
	background: #f5f5f5;
	transform: scale(1.05);
}

/* Main Navigation - Exact Match */
.main-nav {
	background: var(--primary-bg);
	padding: 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.main-nav .navbar-toggler {
	border: none;
	padding: 8px;
}

.main-nav .navbar-toggler:focus {
	box-shadow: none;
}

.main-nav .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%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-nav .nav-container {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.main-nav .nav-item {
	position: relative;
	border-right: 2px solid #fff;
}

.main-nav .nav-link {
	display: block;
	font-size: 20px;
	padding: 8px 50px;
	color: #000;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.3s;
	white-space: nowrap;
	text-transform: capitalize !important; 
}

.main-nav .nav-link:hover {
	background: rgba(123, 27, 33, 0.1);
}

.main-nav .dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	box-shadow: 0 4px 12px rgb(0, 0, 0);
	z-index: 1000;
	list-style: none;
	padding: 8px 0;
	margin: 0;
	border-radius: 0;
    width: 100%;
    min-width: max-content;
    right: auto;
    width: fit-content;
    min-width: 100%;
}

.main-nav .dropdown-menu a {
	display: block;
	padding: 10px 20px;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.2s;
	font-weight: 400;
}

.main-nav .dropdown-menu a:hover {
	background: #ffeecc;
	padding-left: 20px;
	color: #000;
}

.main-nav .nav-item:hover>.dropdown-menu,
.main-nav .nav-item:focus-within>.dropdown-menu {
	display: block;
	background: rgba(0, 0, 0, .7);
	backdrop-filter: blur(5px);
}

.main-nav .dropdown-submenu {
	position: relative;
}

.main-nav .nav-link {
    font-size: 20px;
    padding: 8px 24px;        /* reduced from 50px */
    white-space: nowrap;
}
 
/* Large screens only */
@media (min-width: 1400px) {
    .main-nav .nav-link {
        padding: 8px 32px;
    }
}
 
/* Laptop + zoom safe */
@media (max-width: 1200px) {
    .main-nav .nav-link {
        padding: 8px 16px;
        font-size: 18px;
    }
}


.main-nav .dropdown-submenu>a::after {
	content: '›';
	float: right;
	margin-left: 10px;
}

.main-nav .dropdown-submenu .dropdown-menu {
	top: 0;
	left: 100%;
	margin-left: 2px;
}

.main-nav .dropdown-submenu:hover>.dropdown-menu,
.main-nav .dropdown-submenu:focus-within>.dropdown-menu {
	display: block;
	background: rgba(0, 0, 0, .7);
	backdrop-filter: blur(5px);
}

.section-title {
	font-size: 2rem !important;
	font-weight: 700 !important;
	margin-bottom: 30px !important;
}

.innerpageTitle {
	font-size: 2rem;
}

.section-subtitle {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
}

/* Hero Slider - Full Image */
/* Hero Section */
.hero-section {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Swiper full area */
.swiper {
	width: 100%;
	height: 100%;
}


/* Navigation Arrows  */
.swiper-button-next,
.swiper-button-prev {
	width: 30px;
	height: 30px;
	background: #771D1D;
}

.swiper-button-next img,
.swiper-button-prev img {
	width: 20%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 20px;
	color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none !important;
}


/* Pagination bullets EXACT Figma style */
.swiper-pagination {
	bottom: 15px !important;
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #EBADCC;
	opacity: 0.4;
	border: 1.5px solid #771D1D;
	border-radius: 50%;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #771D1D;
	transform: scale(1.2);
}

/* Pause Button */
.swiper-pause-btn {
	position: absolute;
	bottom: 12px;
	left: 53%;
	transform: translateX(20px);
	width: 32px;
	height: 32px;
	background: #701313;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 9999;
	border: none;
}


/* Recent Updates Ticker */
.recent-updates {
	background: #EFEEEE;
	border-bottom: 1px solid #EFEEEE;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.updates-label {
	position: relative;
	background: #771D1D;
	color: white;
	height: 36px;
	padding: 11px 28px 10px 20px;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	margin-left: 20px;
	gap: 15px;
	flex-shrink: 0;
}


/* Arrow shape */
.updates-label::after {
	content: "";
	position: absolute;
	right: -14px;
	top: 0;
	width: 0;
	height: 0;
	border-top: 19px solid transparent;
	border-bottom: 18px solid transparent;
	border-left: 15px solid #771D1D;
}

/* Icon inside */
.label-icon {
	width: 22px;
	height: 22px;
}

.ticker-content {
	flex: 1;
	overflow: hidden;
	margin: 0 20px;
}

.ticker-text {
	display: inline-block;
	white-space: nowrap;
	animation: scroll 30s linear infinite;
	font-size: 14px;
	color: #000;
}

.ticker-text span {
	text-decoration: underline;

}

.ticker-control {

	width: 24px;
	height: 24px;
	background: #701313;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	margin-right: 20px;
	cursor: pointer;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}


@keyframes scroll {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}

.notification-icon {
	margin-right: 20px;
	font-size: 18px;
	color: #666;
	flex-shrink: 0;
}

/* Content Section */
.main-content {
	padding: 40px 0;
}

.content-card {
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
}

.content-card h5 {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 15px;
	color: var(--accent);
}

.content-card p {
	line-height: 1.6;
	color: #555;
	margin-bottom: 15px;
}

.sidebar-card {
	background: white;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-card h6 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
	color: var(--accent);
	border-bottom: 2px solid var(--accent);
	padding-bottom: 10px;
}

.sidebar-card ul {
	list-style: none;
	padding: 0;
}

.sidebar-card li {
	margin-bottom: 10px;
}

.sidebar-card a {
	color: #555;
	text-decoration: none;
	transition: all 0.2s;
	display: block;
	padding: 8px 0;
}

.sidebar-card a:hover {
	color: var(--accent);
	padding-left: 10px;
}


@media (min-width: 991px) {

	#mobile-top-header,
	#mobile-search {
		display: none;
	}
}

/* Mobile Responsive */
@media (max-width: 991px) {
	#desktop-top-header {
		display: none;
	}

	.search-box {
		width: 150px;
	}

	.search-box input {
		font-size: 12px;
		padding: 6px 30px 6px 10px;
	}

	.logo-text h1 {
		font-size: 14px;
	}

	.logo-text p {
		font-size: 9px;
	}

	.logo-placeholder {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.gov-logo {
		width: 80px;
		height: 50px;
		font-size: 8px;
	}

	.icon-btn {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}

	.slide-text h1 {
		font-size: 32px;
	}

	.slide-text p {
		font-size: 14px;
	}

	.slide-overlay {
		padding: 0 30px;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
	}

	/* Mobile Navigation */
	.navbar-collapse {
		background: var(--primary-bg);
		margin-top: 10px;
		border-radius: 8px;
	}

	.nav-container {
		flex-direction: column;
	}

	.nav-link {
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

	.dropdown-menu {
		position: static;
		box-shadow: none;
		background: rgba(255, 255, 255, 0.95);
		margin-left: 20px;
		border-left: 3px solid var(--accent);
	}

	.dropdown-submenu .dropdown-menu {
		margin-left: 40px;
	}

	.nav-item:hover>.dropdown-menu {
		display: none;
	}

	.dropdown-toggle::after {
		content: '▼';
		float: right;
		font-size: 10px;
	}

	.stats-section {
		position: relative;
		bottom: 1rem;
	}
}

@media (max-width: 767px) {
	.top-header {
		padding: 10px 0;
	}

	.logo-section {
		gap: 10px;
	}

	.search-box {
		width: 150px;
	}

	.icon-group {
		gap: 5px;
	}

	.slide-text h1 {
		font-size: 24px;
	}

	.slide-text p {
		font-size: 12px;
	}

	.slide-overlay {
		padding: 0 20px;
	}

	.updates-label {
		padding: 6px 12px;
		font-size: 12px;
		margin-left: 10px;
	}

	.ticker-text {
		font-size: 12px;
	}

	.notification-icon {
		margin-right: 10px;
	}

	.stats-section {
		position: relative;
		bottom: 1rem;
	}
}

@media (max-width: 575px) {
	.logo-text {
		display: none;
	}

	.gov-logo {
		width: 60px;
		height: 40px;
	}

	.swiper-button-next,
	.swiper-button-prev {
		width: 40px;
		height: 40px;
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 16px;
	}

	.stats-section {
		position: relative;
		bottom: 1rem;
	}
}


/* Testimonial Section */
.testimonial-section {
	background: url('../images/testimonial-bg.png') center/cover no-repeat;
	padding: 60px 20px;
	position: relative;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	padding: 20px;
	max-width: 900px;
	/* margin: 0 auto; */
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	position: relative;
	border: 1px solid #771D1D;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
	overflow: hidden;

}

.testimonial-card:hover {
	transform: scale(1.03);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16),
		0 3px 6px rgba(0, 0, 0, 0.23);
}


.testimonial-text {
	flex: 1;
}

.testimonial-text p {

	color: #000;
	margin-bottom: 20px;
	font-weight: 500;
}

.testimonial-text em {
	font-style: italic;
	font-weight: 500;
}

.testimonial-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.event-info {
	font-size: 14px;
	color: #000;
}

.view-event-btn {
	background: #fff;
	border: 1px solid #771D1D;
	padding: 10px 25px;
	border-radius: 25px;
	text-decoration: none;
	color: #771D1D;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.view-event-btn:hover {
	background: #FFF8E7;
	color: #000;
}

.speaker-image {
	width: 250px;
	height: 250px;
	border-radius: 50%;
	overflow: hidden;
	border: 8px solid #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	margin: 0 auto;
}

.speaker-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* About Section */

.backbtn {
	background: var(--color-primary);
	border-color: var(--color-primary);
	padding: .5rem 1rem;
}


/* breadcrumb */

/* Breadcrumb Section */
        .cusbreadcurum {
            position: relative;
            overflow: hidden;
        }

        /* Breadcrumb Navigation */
        .breadcrumb {
            display: flex;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0 0 4px 0;
            font-size: 14px;
            max-width: 1200px;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.9);
			padding: 0!important;
        }

        .breadcrumb-item a {
            color: rgb(255 255 255 / 90%);
            text-decoration: underline;
            transition: all 0.3s ease;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .breadcrumb-item a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        .breadcrumb-item.active span {
            color: #fff;
            font-weight: 500;
        }

        /* Separator */
        .breadcrumb-item:not(:last-child)::before, .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
			padding: 0!important;
        }
		.breadcrumb-item+.breadcrumb-item+.active::before {
			content: none!important;
		}

        /* Page Title */
        .page-title {
            color: #fff;
            font-size: 2.25em;
            font-weight: 700;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            letter-spacing: -0.5px;
            max-width: 1200px;
            position: relative;
            z-index: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-title {
                font-size: 36px;
            }

            .breadcrumb {
                font-size: 13px;
                gap: 8px;
            }

            .breadcrumb-item:not(:last-child)::after {
                margin-left: 8px;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 28px;
            }

            .breadcrumb {
                font-size: 12px;
                flex-wrap: wrap;
            }
        }

		/*  */


.about-section {
	background: #FFF8E7;
	padding: 30px 0px;
}

.about-content {
	background: #fff;
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 40px;
	border: 1px solid #D1CCD2;
}

.about-content p {
	font-size: 14px;
	line-height: 1.6;
	color: #000;
	margin-bottom: 20px;
	text-align: justify;
}

.read-more-btn {
	background: #771D1D;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
}

.read-more-btn:hover {
	background: #6B3410;
	transform: translateX(5px);
}

.read-more-btn .arrow-icon {
	width: 16px;
}

/* Leadership Section */
.leadership-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.leader-card {
	text-align: center;
	flex: 1;
}

.leader-img {
	width: 145px;
	height: 165px;
	margin-bottom: 10px;
}

.leader-name {
	font-size: 14px;
	font-weight: 600;
}

.leader-title {
	font-size: 12px;
	color: #333;
}

/* Statistics Section */

.stats-section {
	position: relative;
	bottom: 6rem;
}

.stats-row {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 35px;
}

.stat-card {
	background: #fff;
	border-radius: 6px;
	padding: 10px 50px;
	text-align: center;
	flex: 0 0 200px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
	font-size: 32px;
	font-weight: 700;
	color: #771D1D;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 13px;
	color: #555;
	font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
	.leadership-row {
		justify-content: center;
	}
}

@media (max-width: 1140px) {
	.stats-section {
		bottom: 1rem;
	}
}

@media (max-width: 768px) {
	.leader-card {
		flex: 0 0 45%;
	}

	.stat-card {
		flex: 0 0 45%;
		margin-bottom: 15px;
	}
}

/*  */


/* ==========================================================================
   Dashboard Section - Responsive Styles
   Matching Figma Design Exactly
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
	--color-primary: #6c1c1c;
	--color-primary-hover: #8a2525;
	--color-header-bg: #FFEECC;
	--color-tab-bg: #EEEEEE;
	--color-tab-active: #6c1c1c;
	--color-link: #0C46BA;
	--color-border: #FAAAAA;
	--color-date-bg: #FFF1F1;
	--color-white: #fff;
	--color-black: #000;

	--card-height: 408px;
	--radius: 10px;
	--shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   Dashboard Section Container
   -------------------------------------------------------------------------- */
.dashboard-section {
	background: url(../images/bg-asiatic.png) center / cover no-repeat;
	padding: 30px 0px;
	/* min-height: 100vh; */
}

/* --------------------------------------------------------------------------
   Common Card Header
   -------------------------------------------------------------------------- */
.dashboard-section .card-header {
	background-color: var(--color-header-bg) !important;
	color: var(--color-black);
	padding: 10px 20px;
	border-radius: var(--radius) var(--radius) 0 0 !important;
	border: none;
}

.dashboard-section .card-header h5 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   Common Card Styles
   -------------------------------------------------------------------------- */
.dashboard-section .card {
	border: none;
	box-shadow: var(--shadow);
	border-radius: 0 0 var(--radius) var(--radius);
	overflow: visible;
}

/* ==========================================================================
   ANNOUNCEMENT CARD
   ========================================================================== */
.announcement-wrapper {
	border-radius: var(--radius);
	overflow: visible;
	box-shadow: var(--shadow);
	height: 100%;
	display: flex;
	flex-direction: column;
}

/* Tabs Styling */
.dashboard-section .nav-tabs {
	border: none;
	margin: 10px 0;
	display: flex;
	padding: 0;
	gap: 0;
}

.dashboard-section .nav-tabs .nav-item {
	flex: 1;
	margin: 0 1px;
}

.dashboard-section .nav-tabs .nav-link {
	display: block;
	width: 100%;
	padding: 10px;
	color: var(--color-black);
	font-weight: 700;
	font-size: 15px;
	text-align: center;
	background: var(--color-tab-bg);
	border: none;
	border-radius: 5px;
	margin: 0;
	transition: all 0.3s ease;
}

.dashboard-section .nav-tabs .nav-link:hover {
	background: #ddd;
}

.dashboard-section .nav-tabs .nav-link.active {
	background: var(--color-tab-active);
	color: var(--color-white);
}

/* Announcement Content Area */
.announcement-content {
	background: var(--color-white);
	padding: 20px;
	border-radius: 0 0 var(--radius) var(--radius);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.announcement-content .tab-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.announcement-content .tab-pane {
	display: none;
	flex-direction: column;
	height: 100%;
}

.announcement-content .tab-pane.active {
	display: flex;
}

.announcement-content .list-unstyled {
	margin-bottom: 15px;
	flex: 1;
	overflow-y: auto;
}

.announcement-content .list-unstyled li {
	margin-bottom: 15px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-border);
}

.announcement-content .list-unstyled li:last-child {
	margin-bottom: 0;
}

.announcement-content a {
	color: var(--color-link);
	text-decoration: underline;
	font-size: 15px;
	display: inline;
	margin-bottom: 5px;
	line-height: 1.5;
}

.announcement-content a:hover {
	color: #0a3a9d;
}

.announcement-content a img {
	margin-left: 8px;
	width: 16px;
	height: 16px;
	vertical-align: middle;
}

.announcement-content p {
	margin: 5px 0 0 0;
	font-size: 12px;
	color: var(--color-black);
	font-weight: 500;
}

.announcement-content p strong {
	font-weight: 400;
}

.announcement-content .read-more-btn {
	align-self: flex-end;
	margin-top: auto;
}

/* ==========================================================================
   WHAT'S NEW CARD
   ========================================================================== */
.whatsnew-wrapper {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.whatsnew-wrapper .card-header {
	border-radius: var(--radius) var(--radius) 0 0 !important;
	box-shadow: var(--shadow);
	margin-bottom: 10px;
}

.whatsnew-card {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.whatsnew-card .card-body {
	background-color: var(--color-white);
	padding: 20px;
	border-radius: 0 0 var(--radius) var(--radius);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.whatsnew-card .list-unstyled {
	margin-bottom: 15px;
	flex: 1;
	overflow-y: auto;
}

.whatsnew-card .list-unstyled li {
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-border);
}

.whatsnew-card .list-unstyled li:last-child {
	margin-bottom: 0;
}

.date-box {
	width: 42px;
	min-width: 42px;
	background-color: var(--color-date-bg);
	color: var(--color-black);
	border-radius: 5px;
	padding: 10px 8px;
	text-align: center;
	margin-right: 12px;
	flex-shrink: 0;
}

.date-box .day {
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.date-box .month {
	display: block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 2px;
}

.whatsnew-content {
	flex: 1;
	min-width: 0;
}

.whatsnew-card a {
	color: var(--color-link);
	text-decoration: underline;
	font-size: 15px;
	display: inline;
	margin-bottom: 5px;
	line-height: 1.4;
}

.whatsnew-card a:hover {
	color: #0a3a9d;
}

.whatsnew-card a img {
	margin-left: 8px;
	width: 16px;
	height: 16px;
	vertical-align: middle;
}

.whatsnew-card p {
	margin: 5px 0 0 0;
	font-size: 12px;
	color: var(--color-black);
	font-weight: 500;
}

.whatsnew-card p strong {
	font-weight: 400;
}

.whatsnew-card .read-more-btn {
	align-self: flex-end;
	margin-top: auto;
}

/* ==========================================================================
   USER PERSONA CARD
   ========================================================================== */
.userpersona-wrapper {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.userpersona-wrapper .card-header {
	border-radius: var(--radius) var(--radius) 0 0 !important;
	box-shadow: var(--shadow);
}

.userpersona-card {
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
	margin-top: 10px;
}

.userpersona-card .card-body {
	padding: 30px 20px;
	background-color: var(--color-white);
	border-radius: 0 0 var(--radius) var(--radius);
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.userpersona-card .swiper {
	width: 100%;
	padding-bottom: 30px;
}

.userpersona-card .swiper-slide {
	text-align: center;
}

.userpersona-card .swiper-slide img {
	max-width: 100%;
	height: auto;
	border-radius: 50%;
	margin-bottom: 15px;
}

.userpersona-card p {
	font-weight: 700;
	font-size: 16px;
	color: var(--color-black);
	margin: 0;
	text-decoration: underline;
}

.userPersonaSwiper .swiper-slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.userPersonaSwiper .swiper-slide img {
	display: block;
	margin: 0 auto;
	object-fit: contain;
}

/* Swiper Navigation */
.userPersonaSwiper-button-next,
.userPersonaSwiper-button-prev {
	position: absolute;
	top: 95.5%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.userPersonaSwiper-button-next {
	right: 0;
}

.userPersonaSwiper-button-prev {
	left: 0;
}

.userpersona-card .swiper-pagination-bullet {
	background: var(--color-border);
	opacity: 1;
}

.userpersona-card .swiper-pagination-bullet-active {
	background: var(--color-primary);
}

/* ==========================================================================
   DASHBOARD
   ========================================================================== */

/* Large Desktop (1200px and up) - Equal height cards */
@media (min-width: 1200px) {
	.dashboard-section .row {
		align-items: stretch;
	}

	.announcement-wrapper,
	.whatsnew-wrapper,
	.userpersona-wrapper {
		height: 100%;
	}

	.announcement-content,
	.whatsnew-card,
	.userpersona-card {
		min-height: 350px;
	}
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
	.dashboard-section .nav-tabs .nav-link {
		padding: 12px 8px;
		font-size: 11px;
	}

	.date-box {
		width: 50px;
		min-width: 50px;
		padding: 8px 6px;
	}

	.date-box .day {
		font-size: 18px;
	}

	.date-box .month {
		font-size: 10px;
	}
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
	.dashboard-section {
		padding: 40px 15px;
	}

	/* Full width announcement on tablet */
	.dashboard-section .col-md-12 .announcement-wrapper {
		margin-bottom: 0;
	}

	/* Equal height for What's New and User Persona */
	.dashboard-section .row>[class*="col-md-6"] {
		display: flex;
	}

	.whatsnew-wrapper,
	.userpersona-wrapper {
		width: 100%;
		margin-top: 18px;
	}

	.dashboard-section .nav-tabs .nav-link {
		padding: 12px 15px;
		font-size: 12px;
	}
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
	.dashboard-section {
		padding: 30px 15px;
	}

	.dashboard-section .card-header {
		padding: 12px 15px;
	}

	.dashboard-section .card-header h5 {
		font-size: 14px;
	}

	.dashboard-section .nav-tabs .nav-link {
		padding: 10px 8px;
		font-size: 11px;
	}

	.announcement-content,
	.whatsnew-card .card-body {
		padding: 15px;
	}

	.announcement-content a,
	.whatsnew-card a {
		font-size: 15px;
	}

	.announcement-content p,
	.whatsnew-card p {
		font-size: 12px;
	}

	.date-box {
		width: 50px;
		min-width: 50px;
	}

	.date-box .day {
		font-size: 16px;
	}

	.date-box .month {
		font-size: 10px;
	}

	.whatsnew-wrapper,
	.userpersona-wrapper {
		margin-top: 18px;
	}
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575.98px) {
	.dashboard-section {
		padding: 20px 10px;
	}

	.dashboard-section .card-header {
		padding: 12px 15px;
	}

	.dashboard-section .card-header h5 {
		font-size: 16px;
	}

	/* Stack tabs but keep horizontal on mobile */
	.dashboard-section .nav-tabs {
		flex-wrap: nowrap;
	}

	.dashboard-section .nav-tabs .nav-link {
		padding: 10px 5px;
		font-size: 10px;
	}

	.announcement-content,
	.whatsnew-card .card-body {
		padding: 15px;
	}

	.announcement-content a,
	.whatsnew-card a {
		font-size: 15px;
	}

	.announcement-content p,
	.whatsnew-card p {
		font-size: 11px;
	}

	.date-box {
		width: 45px;
		min-width: 45px;
		padding: 8px 5px;
		margin-right: 10px;
	}

	.date-box .day {
		font-size: 16px;
	}

	.date-box .month {
		font-size: 9px;
	}

	.read-more-btn {
		padding: 6px 12px;
		font-size: 12px;
	}

	.userpersona-card .card-body {
		padding: 20px 15px;
	}

	.userpersona-card p {
		font-size: 14px;
	}

	.userpersona-wrapper {
		margin-top: 36px;
		height: auto;
	}

	.whatsnew-wrapper {
		margin-top: 18px;
	}

	.stats-section {
		position: relative;
		bottom: 0rem;
	}

	.testimonial-footer {
		flex-wrap: wrap;
	}
}

/* Extra Small (up to 400px) */
@media (max-width: 400px) {
	.dashboard-section .nav-tabs .nav-link {
		padding: 8px 4px;
		font-size: 9px;
	}

	.announcement-content p,
	.whatsnew-card p {
		font-size: 10px;
	}

	.userpersona-wrapper {
		margin-top: 36px;
		height: auto;

	}

	.whatsnew-wrapper {
		margin-top: 18px;
	}

	.stats-section {
		position: relative;
		bottom: 0rem;
	}

	.testimonial-footer {
		flex-wrap: wrap;
	}
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
		animation: none !important;
	}
}


/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
	.dashboard-section {
		background: none !important;
		padding: 20px;
	}

	.announcement-wrapper,
	.whatsnew-wrapper .card,
	.userpersona-wrapper .card {
		box-shadow: none;
		border: 1px solid #ccc;
	}

	.read-more-btn,
	.userPersonaSwiper-button-next,
	.userPersonaSwiper-button-prev,
	.swiper-pagination {
		display: none !important;
	}
}

/* Swiper Navigation */
.userPersonaSwiper {
	position: relative;
	padding-bottom: 40px;
	/* reserve space for bullets + arrows */
}

.userPersonaSwiper .swiper-pagination {
	position: absolute !important;
	bottom: 10px !important;
	left: 54%;
	transform: translateX(-50%);
	width: auto !important;
}

.userPersonaSwiper-button-prev,
.userPersonaSwiper-button-next {
	position: absolute;
	bottom: 11px;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.userPersonaSwiper-button-prev {
	left: calc(50% - 60px);
	/* adjust position */
}

.userPersonaSwiper-button-next {
	right: calc(50% - 80px);
	/* adjust position */
}


.tab-content {
	padding: 0;
}

.tab-pane {
	padding: 0;
}


/* EVENT */
.events-section {
	padding: 30px 0;
}

.events-content-section {
	border: 1px solid #771D1D;
	padding: 30px 10px;
	border-radius: 10px;
	background: #F4F3F3;
}

.events-section h1 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
}

.events-section .search-filters {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.events-section .events-content-inner-section .search-filters {
	display: block;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.events-section .filter-item {
	position: relative;
}

.events-section .filter-item select,
.events-section .filter-item input {
	padding: 10px 0px 10px 40px;
	border: 1px solid #8b2332;
	border-radius: 25px;
	font-size: 12px;
	background: white;
	min-width: 140px;
	cursor: pointer;
}

.events-section .events-content-inner-section .filter-item select,
.events-section .events-content-inner-section .filter-item input {
	padding: 10px 0px 10px 40px;
	border: 1px solid #8b2332;
	border-radius: 25px;
	font-size: 12px;
	background: white;
	min-width: 180px;
	cursor: pointer;
}

.events-section .filter-item::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 40%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-size: contain;
}

.events-section .filter-state::before,
.events-section .filter-city::before {
	content: url('data:image/svg+xml,<svg width="18" height="12" viewBox="0 0 18 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 12V10H6V12H0ZM0 7.00001V4.99999H12V7.00001H0ZM0 1.99999V0H18V1.99999H0Z" fill="%23771D1D"/></svg>');
}

.events-section .filter-date::before {
	content: url('../images/calender-icon.svg');
}

.events-section .filter-date input {
	padding-left: 40px;
}

.events-section .search-btn {
	background: #8b2332;
	color: white;
	border: none;
	padding: 10px 40px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	margin-left: auto;
}

.events-section .search-btn:hover {
	background: #6d1b27;
}

.events-section .events-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 30px;
}

.events-section .event-card {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.events-section .event-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.events-section .event-image {
	background: #FFEECC;
	padding: 10px 30px;
	width: -webkit-fill-available;
}

.events-section .event-details {
	padding: 20px;
}

.events-section .event-title {
	color: #1e40af;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	display: block;
}

.events-section .event-title:hover {
	text-decoration: underline;
}

.events-section .event-info {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 8px;
	font-size: 13px;
	color: #000;
}

.events-section .event-label {
	font-weight: 600;
	color: #333;
}

.events-section .view-all-btn {
	background: #8b2332;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 25px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
}

.events-section .view-all-btn:hover {
	background: #6d1b27;
	color: white;
}

.events-section .important-links h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

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

.events-section .links-list li {
	border-bottom: 1px solid #FAAAAAAA;
	padding: 12px 0;
}

.events-section .links-list a {
	color: #000;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}

.events-section .links-list a:hover {
	color: #8b2332;
}

.events-section .links-list a::after {
	content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.8 16L11.6 10.8C11.3556 10.5556 11.2334 10.2444 11.2334 9.86665C11.2334 9.48885 11.3556 9.17775 11.6 8.9333C11.8445 8.68885 12.1556 8.56665 12.5334 8.56665C12.9112 8.56665 13.2223 8.68885 13.4667 8.9333L19.6 15.0667C19.7334 15.2 19.8278 15.3445 19.8834 15.5C19.9389 15.6556 19.9667 15.8222 19.9667 16C19.9667 16.1778 19.9389 16.3445 19.8834 16.5C19.8278 16.6556 19.7334 16.8 19.6 16.9333L13.4667 23.0667C13.2223 23.3111 12.9112 23.4333 12.5334 23.4333C12.1556 23.4333 11.8445 23.3111 11.6 23.0667C11.3556 22.8222 11.2334 22.5111 11.2334 22.1333C11.2334 21.7556 11.3556 21.4445 11.6 21.2L16.8 16Z" fill="black"/></svg>');
}

@media (max-width: 1200px) {
	.events-section .events-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.events-section .events-grid {
		grid-template-columns: 1fr;
	}

	.events-section .search-filters {
		flex-direction: column;
	}

	.events-section .filter-item select,
	.events-section .filter-item input {
		width: 100%;
	}

	.stats-section {
		position: relative;
		bottom: 1rem;
	}
}

input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0;
	display: none;
}



/* footer */

/* Logo slides */
.footer-logoslider {
	background-color: #F4F2F2;
}

.logoSwiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 0;
}

.logoSwiper .swiper-slide img {
	height: auto;
	opacity: 0.9;
	transition: 0.3s;
}

.logoSwiper .swiper-slide img:hover {
	opacity: 1;
}

/* Controls container */
.logo-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin: 10px 0;
}

/* Buttons */
.logo-controls button {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #701313;
	border: 1px solid #ddd;
	padding: 0px 0px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.3s ease;
	width: 40px;
	height: 40px;

	img {
		width: 10px;
	}
}


.footer {
	background-color: #771D1D;
	color: white;
	font-size: 12px;
}


/* SOCIAL */

.social-media-section {
	background: linear-gradient(135deg, #8B2A2A 0%, #5A1818 100%);
	padding: 30px 0;
	position: relative;
	overflow: hidden;
}

.social-media-section::before {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	top: 8%;
	background-image: url("../images/social-left-bg.png");
	background-size: contain;
	background-repeat: no-repeat;
}

.social-media-section::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	top: 8%;
	right: -24%;
	background-image: url("../images/social-right-bg.png");
	background-size: contain;
	background-repeat: no-repeat;
}

.decorative-circles {
	position: absolute;
	opacity: 0.1;
}

.decorative-circles.left {
	left: 50px;
	top: 50%;
	transform: translateY(-50%);
}

.decorative-circles.right {
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
}

.decorative-circles circle {
	fill: none;
	stroke: #fff;
	stroke-width: 2;
}

.social-card {
	background: #fff;
	border-radius: 6px;
	padding: 25px;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.social-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.social-icon {
	width: 24px;
	height: 24px;
}

.social-name {
	font-weight: 700;
	font-size: 1.1rem;
	color: #333;
}

.social-content {
	position: relative;
	border-radius: 10px;
	overflow-y: auto;
	overflow-x: hidden;
	background: #f8f9fa;
	height: 250px;
	padding-right: 5px;
}


.social-content img {
	width: 100%;
	height: auto;
	display: block;
}

.youtube-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.youtube-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.instagram-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
	padding: 15px;
}

.instagram-grid img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 5px;
}

.instagram-header {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: #fff;
}

.instagram-profile-pic {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 3px solid #e1306c;
	padding: 2px;
}

.instagram-info h4 {
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
	color: #262626;
}

.instagram-info p {
	font-size: 0.9rem;
	color: #8e8e8e;
	margin: 2px 0;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 2rem;
	}

	.social-media-section {
		padding: 50px 0;
	}
}

/* MEDIA */

.media-gallery-section {
	padding: 30px 0px;
}

.media-gallery-section .section-title {
	color: #000;
}

.media-gallery-section .media-card-title {
	font-size: 18px;
	font-weight: 700;
	color: #2c2c2c;
	margin: 0;
	text-transform: uppercase;
	margin-bottom: 1.5rem
}

.media-gallery-section .slider-container {
	position: relative;
	padding: 8px;
	background: #FFEECC;
	border-radius: 10px;
	border: 1px solid #771D1D;
}

.media-gallery-section .swiper {
	width: 100%;
	height: 100%;
}

.media-gallery-section .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.media-gallery-section .swiper-slide img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	min-height: 210px;
	max-height: 210px;
}

.media-gallery-section .podcast-placeholder {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 10px;
}

.media-gallery-section .podcast-icon {
	text-align: center;

	img {
		width: 70%;
	}
}

.media-gallery-section .pause-play-btn {
	position: absolute;
	right: 33%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: #8B2A2A;
	border: none;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 0.3rem;
	transition: background 0.3s ease;
}

.media-gallery-section .pause-play-btn:hover {
	background: #6d1f1f;
}

.media-gallery-section .pause-play-btn svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

.media-gallery-section .media-footer {
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.media-gallery-section .view-all-btn {
	display: flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
	padding: 10px 20px !important;
}

.media-gallery-section .media-description {
	font-size: 1rem;
	font-weight: 600;
	color: #2c2c2c;
	margin: 0;
	flex: 1;
}

.media-gallery-section .media-text {
	font-size: 0.95rem;
	color: #666;
	margin-bottom: 15px;
}

.media-gallery-section .view-all-btn {
	background: #8B2A2A;
	color: #fff;
	border: none;
	padding: 10px 30px;
	border-radius: 25px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: background 0.3s ease, transform 0.2s ease;
}

.media-gallery-section .view-all-btn:hover {
	background: #6d1f1f;
	transform: translateX(5px);
	color: #fff;
}

.media-gallery-section .view-all-btn svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

@media (max-width: 768px) {
	.media-gallery-section .section-title {
		font-size: 2rem;
	}

	.media-gallery-section .media-gallery-section {
		padding: 50px 0;
	}

	.media-gallery-section .swiper-slide img,
	.media-gallery-section .podcast-placeholder {
		height: 250px;
	}
}



/*ABOUT US*/
/* about banner section start */
.inner-header-background {
	height: 300px;
	background-color: var(--primary-color);
	position: relative;
	overflow: hidden;
}

.inner-header-background .aboutbg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
	height: 100%;
}

.innerBradcrumSec {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -55px;
	z-index: 9;
}

.about-link {
	font-size: 14px !important;
}

/* about banner section end */

/* about welcome note section start */
.about-card-img {
	height: 100%;
}


.subHeading {
	position: relative;
	padding: 1rem 0;
	margin-bottom: 2rem;
}

.subHeading::after {
	content: "";
	height: 2px;
	width: 140px;
	background: var(--primary-color);
	position: absolute;
	bottom: 0px;
	left: 0%;
}

.subHeading::before {
	height: 6px;
	content: "";
	width: 74px;
	background-color: var(--primary-color);
	position: absolute;
	bottom: -2px;
	left: 0;
	border-radius: 5px;
}

.about-card {
	border-radius: 20px;
	background-color: #f6f5f0;
}

/* about welcome note section end */

/* about button update section start */
.back-to-previous-page-btn {
	background-color: var(--primary-color);
	color: white;
	border-radius: 25px;
	padding: 10px;
	font-size: 12px;
	text-align: center;
}


.academic-link {
	font-size: 14px !important;
}


.academic-heading-div {
	position: relative;
}

.academic-heading::before {
	content: "";
	position: absolute;
	top: 25px;
	width: 50px;
	height: 5px;
	background-color: var(--primary-color);
	border-radius: 5px;
	z-index: 1;
}

.academic-heading::after {
	content: "";
	position: absolute;
	top: 26px;
	left: 50px;
	width: 55px;
	height: 2px;
	background-color: var(--primary-color);
	z-index: -1;
}

.academic-project-list ul {
	padding: 0;
	list-style: none;
}

.academic-ul-projects {
	margin: 0;
	padding: 0;
	list-style: none;
}

.academic-ul-projects li {
	position: relative;
	border-bottom: 1px solid #ccc;

}

.academic-ul-projects li a {
	padding: .75rem 1rem .75rem 3rem;
	font-size: 1rem;

}

.academic-ul-projects li.active a {
	font-weight: bold;
}

.academic-ul-projects li:hover a {
	font-weight: bold;
}

.academic-ul-projects li.active::before {
	content: "";
	position: absolute;
	width: 33px;
	height: 28px;
	top: 9px;
	left: 0;
	transition: all .3s ease-in-out;
	background: url('./../images/academic-objects.png') no-repeat center center;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

.academic-ul-projects li:hover::before {
	content: "";
	position: absolute;
	transition: all .3s ease-in-out;
	width: 33px;
	height: 28px;
	top: 9px;
	left: 0;
	background: url('./../images/academic-objects.png') no-repeat center center;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}




.academic-project-list ul li:hover {
	background-color: #f8f2f2;
	border-bottom: 1px solid var(--primary-color) !important;
	font-weight: 600;
}

.academic-project-list ul li:hover a {
	color: var(--primary-color) !important;
}

.academic-project-list ul li img {
	display: none;
}

.academic-project-list ul li:hover img {
	display: inline-block;
}

.academic-project-list-items {
	position: relative;
	background-color: #f6f5f0;
	border: 1px solid #f6f5f0;
}

.academic-listItems-cardDivs .project-1-card {
	border-left: 1px solid var(--primary-color);
}

.academic-card-heading {
	color: var(--primary-color);
}

.academic-card-heading::before {
	content: "";
	position: absolute;
	top: 45px;
	width: 50px;
	height: 5px;
	background-color: var(--primary-color);
	border-radius: 5px;
	z-index: 1;
}

.academic-card-heading::after {
	content: "";
	position: absolute;
	top: 46px;
	left: 65px;
	width: 60px;
	height: 2px;
	background-color: var(--primary-color);
	z-index: 1;
}

/* academic section end */


/* academic button update section start */
.back-to-previous-page-btn {
	background-color: var(--primary-color);
	color: white;
	border-radius: 25px;
	padding: 10px;
	font-size: 12px;
	text-align: center;
}

.background-card,
.library-card,
.vision-card,
.publications-card {
	background: var(--gray);
}


.custtable thead tr th {
	background: var(--primary-color);
	color: var(--white);
}


/* libarary */
.card-library {
	height: 200px;
	width: 280px;
	margin: 10px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #f6f5f0;
	transition: all .3s ease;
}

.library-para-hide {
	display: none;
	font-size: 14px;
}

.card-library:hover {
	display: flex;
	flex-direction: column;
	justify-content: start;
	text-align: start;
	cursor: pointer;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

.card-library:hover .library-para-head {
	text-align: left;
	width: 100%;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

.card-library:hover>.library-para-hide {
	display: block;
}


/* musium page */
.timeline {
	margin: 0;
	padding: 0;
	list-style: none;
}

.timeline li {
	background: var(--white);
	border-radius: .5rem;
	padding: 1rem;
	text-align: left;
	position: relative;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.timeline li::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -1.5rem;
	width: 2px;
	height: 1.5rem;
	background: var(--primary-color);
}

.timeline li:last-child::before {
	display: none;
}

.museum-line {
	max-width: 280px;
}

.museum-line-dark {
	background-color: #771D1D;
	height: 10px;
	width: 30%;
	border-radius: 50px;
}

.museum-line-light {
	background-color: #e6bebe;
	height: 3px;
	width: 30%;
}

.brief-activity {
	background-color: #D7D1D1;
}

.center-line {
	position: absolute;
	left: 50%;
	top: 0;
	width: 2px;
	height: 90%;
	background-color: #771D1D;
	transform: translateX(-50%);
	z-index: 0;
}

.activity-box {
	position: relative;
	margin-bottom: 24px;
	background: #FFFFFF;
	border-radius: 6px;
	padding: 16px;
	font-size: 14px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

/* Background image section */
.activity-img {
	background-image: url('../images/activity-image.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 320px;
	width: 100%;
}

.section-wrapper {
	position: relative;
	padding-top: 140px;
}

.list li {
	font-size: 16px;
}

.bottom-image {
	width: 100%;
	height: 520px;
	background-image: url('../images/wrapper-backgraound-image.svg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

}

.red-box-wrapper {
	position: absolute;
	top: 40px;
	left: 0;
}

.red-box {
	background: #4D120E;
	color: #fff;
	padding: 30px;
	border-radius: 12px;
	margin: auto;
}

.white-box {
	background: #fff;
	padding: 22px 25px;
	border-radius: 14px;

}

.exhibition-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
}

.exhibition-card {
	border: none;
	background: #fff;
}

.exhib-date {
	font-size: 14px;
	color: #666;
	margin-top: 5px;
}

.view-all-btn {
	font-size: 14px;
	padding: 6px 14px;
	border-radius: 20px;
	margin-left: auto;
}


@media (max-width: 1200px) {
	.bottom-image {
		height: 600px;
	}

	.white-box {
		margin-top: 25px;
	}
}

/* TABLET (max-width: 992px) */
@media (max-width: 992px) {
	.bottom-image {
		height: 600px;
	}

	.white-box {
		margin-top: 25px;
	}
}

/* MOBILE (max-width: 768px) */
@media (max-width: 768px) {
	.section-wrapper {
		padding-top: 180px;
	}

	.red-box-wrapper {
		top: 20px;
	}

	.red-box {
		padding: 25px 20px;

	}

	.bottom-image {
		height: 550px;
	}

	.list li {
		font-size: 14px;
	}
}

/* SMALL MOBILE (max-width: 576px) */
@media (max-width: 576px) {

	.section-wrapper {
		padding-top: 220px;
	}

	.red-box {
		padding: 20px 18px;
	}

	.bottom-image {
		height: 700px;
	}

	.white-box {
		padding: 18px 15px;
	}

	.list li {
		font-size: 12px;
	}
}

.nav-link:focus-visible {
	outline: auto;
	box-shadow: none;
}

.nav-link:focus {
	outline: 2px solid var(--bs-yellow, #ffc107);
	outline-offset: 2px;
}

.dropdown-submenu:hover>.dropdown-menu,
.dropdown-submenu:focus-within>.dropdown-menu,
.dropdown-submenu.show>.dropdown-menu {
	display: block;
}

.main-nav .nav-item:focus-within>.dropdown-menu {
	display: block;
}


/* NEW Footer */
.footer {
	background-color: #771D1D;
	color: white;
	font-size: 14px;
}

.map-frame {
	width: 100%;
	height: 180px;
	border: 0;
}

.phone-line {
	padding-left: 68px;
}

.footer-links a {
	color: white;
	text-decoration: none;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-img {
	max-width: 180px;
}

.footer-bottom {
	border-top: 1px solid white;
	margin-top: 10px;
}


/* CSS TABLE PAGES - 05-12-2025 */
.table-pages .table thead th {
	background-color: #771D1D;
	color: white;
	padding: 15px 12px;
	border: none;
	vertical-align: middle;
	border-right: 1px solid;
	font-size: 16px;
	font-weight: 600;
}

.table-pages .table tbody tr:nth-child(odd) {
	background-color: #fff;
}

.table-pages .table tbody tr:nth-child(even) {
	background-color: #f8f9fa;
}

.table-pages .table tbody td {
	padding: 6px 10px;
	vertical-align: middle;
	border-bottom: 1px solid #dee2e6;
	font-size: 14px;
}

.table-pages .document-link {
	color: #063B74;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

.table-pages .document-link:hover {
	text-decoration: underline;
}

.table-pages .document-meta {
	font-size: 12px;
	color: #000;
}

.table-pages .document-meta a {
	margin-right: 20px;
}

.table-pages .document-meta span {
	margin-right: 5px;
}

.table-pages .document-meta .label {
	font-weight: 600;
	font-size: .845rem;
}

.sort-select-div select {
	border-radius: 5px;
	padding: 10px 12px;
	cursor: pointer;
	transition: border-color 0.2s ease;
}




/*  */
/* Contact Us CSS */

/* ===============================
   CONTACT US – DRUPAL WEBFORM
   =============================== */

/* Row layout: label left, field right */
.contactUs-form .form-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

/* Labels */
.contactUs-form label {
  min-width: 25%;
  font-weight: 600;
  margin-bottom: 0;
}

/* Required red star (Drupal default) */
.contactUs-form label.form-required::after {
  content: " *";
  color: #dc2626;
  font-weight: 700;
}

/* Inputs & textarea width */
.contactUs-form input[type="text"],
.contactUs-form input[type="email"],
.contactUs-form textarea {
  width: 75%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #ced4da;
}

/* Textarea height */
.contactUs-form textarea {
  resize: vertical;
}

/* CAPTCHA alignment */
.contactUs-form fieldset.captcha {
  width: 75%;
  margin-left: auto;
  border: none;
  padding: 0;
}

.contactUs-form .captcha__image-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Submit button */
.contactUs-form .webform-button--submit {
  width: 100%;
  background-color: #6d1b27;
  color: #fff;
  border-radius: 50rem;
  border: none;
  padding: 0.6rem 1.5rem;
}

.contactUs-form .webform-button--submit:hover,
.contactUs-form .webform-button--submit:active {
  background-color: #1e40af;
}

/* photo Gallery */
.gallery-card a {
	color: var(--primary-color);
}

.para-items {
	font-size: .875rem;
}

/* Photo Card Styling */
.photo-card {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
	position: relative;
}


.media-image-section {
	position: relative;
}

.media-image-section img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	max-height: 290px;

}

/* Arrow icon overlay */
.arrow-icon-media {
	position: absolute;
	bottom: 0%;
	right: 0%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}



.arrow-icon-media svg {
	width: 30px;
	height: 30px;
}

/* Modal Styling */
.modal-content {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.custom-image-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 10;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 35px;
	height: 35px;
	border: none;
}

.custom-image-btn:hover {
	background: rgba(255, 255, 255, 0.4);
}

/* Swiper */
#photoModal .mySwiper {
	width: 100%;
	height: 70vh;
}

#photoModal .mySwiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Modal Footer */
.modal-footer {
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 10px 20px;
	border-top: none;
	flex-direction: column;
}

.modal-footer p {
	margin: 0 0 10px 0;
	font-weight: 500;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
	color: #fff;
	top: 50%;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.966);
	border-radius: 50%;
	transform: translateY(-50%);
	border: 0;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: rgba(0, 0, 0, 0.6);
}

/* Responsive */
/* @media (max-width: 768px) {
	.mySwiper {
		height: 60vh;
	}
} */

#photoModal .swiper-button-prev:after,
#photoModal .swiper-rtl #photoModal .swiper-button-next:after,
#photoModal .swiper-button-next:after,
#photoModal .swiper-rtl #photoModal .swiper-button-prev:after {
	font-size: 1rem;
}

.custom-image-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 10;
	width: 40px;
	height: 40px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 1.5rem;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.image-gallery-arrow {
	width: 15px;
}

@media (min-width: 1800px) {
	.media-image-section img {
		max-height: 375px;
	}
}

.verify-button {
	border: 1px solid var(--primary-color);
	border-radius: 15px;
	color: var(--color-primary);
}

.verify-button:hover {
	border: 1px solid var(--primary-color);
	border-radius: 15px;
	color: var(--color-white);
	background-color: var(--color-primary);
}

.send-otp-btn {
	border: 1px solid var(--primary-color);
	border-radius: 15px;
	color: var(--color-white);
	background-color: var(--color-primary);
}

.send-otp-btn:hover {
	border: 1px solid var(--primary-color);
	border-radius: 15px;
	color: var(--color-primary);
}

#about-section-welcome-note .form-control {
	padding: .8rem .75rem !important;
}

.star-rating {
	display: flex;
	gap: 6px;
}

.star-btn {
	background: none;
	border: none;
	font-size: 1.6rem;
	color: #ccc;
	cursor: pointer;
	padding: 0;
}

/* ONLY click-based active state */
.star-btn.active {
	color: #f5b301;
}

/* Keyboard focus (mandatory) */
.star-btn:focus {
	outline: 2px solid #000;
}




.insta-embed {
	background: #fff;
	border: 0;
	border-radius: 6px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.5),
		0 1px 10px rgba(0, 0, 0, 0.15);
	margin: 0;
	width: 100%;
	max-width: 540px;
	min-width: 326px;
	height: 500px;
	padding: 0;
}

/* Fallback content before embed loads */
.insta-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
	font-weight: 500;
	color: #333;
	cursor: pointer;
}

/* Optional hover */
.insta-fallback:hover {
	text-decoration: underline;
}

.yt-card {
	position: relative;
	width: 100%;
	max-width: 540px;
	aspect-ratio: 16 / 9;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.5),
		0 1px 10px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	cursor: pointer;
}

/* IMPORTANT: iframe clicks disabled */
.yt-card iframe {
	width: 100%;
	height: 100%;
	border: 0;
	pointer-events: none;
}

/* Instagram-like text overlay */
.yt-overlay-text {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	background: rgba(255, 255, 255, 0);
	color: #333;
}

.directory-table .images-directory {
	max-width: 70px;
	max-height: 70px;
	height: 100%;
	width: 100%;
}

.sort-wrapper {
	position: relative;
	max-width: 200px;
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: #7b1d1d;
  pointer-events: none;
}
.search-directory{
	outline: unset;
	box-shadow: unset;
	border: 1.5px solid var(--color-primary);
	border-radius: 5px;
	color: var(--color-primary);
}

.directory-list-filter a.active {
  background: #8b0000;
  color: #fff;
  border-color: #8b0000;
  font-weight: bold;
}

/* Fade in animation - Optional but recommended */
.directory-table tbody tr {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.userpersona-link {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
}

/* No results styling - Optional */
.no-results td {
  text-align: center;
  padding: 2rem 1rem !important;
  color: #666;
}

.no-results strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
	.sort-wrapper {
		max-width: 100%;
	}
}

.document-meta p span {
	font-size: .875rem;
}

.custom-profile-fixes {
	text-align: justify;
}

.contact-card {
	background: #fff;
	border-radius: 14px;
	padding: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.location-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 12px;
	border-left: 4px solid #8b5e3c;
	padding-left: 10px;
}

.map-wrapper {
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #dee2e6;
}

.address-box {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.address-box img {
	width: 32px;
}

.member-image {
	max-width: 150px;
	width: 100%;
	max-height: 150px;
	height: 100%;
}

.member-table {
	border-collapse: collapse;
}

.member-table caption {
	caption-side: top !important;
	font-weight: 600;
	text-align: left;
	margin-bottom: 8px;
}

.member-table th {
	background: #f5f5f5;
	text-align: left;
}

.view-btn-design {
	background-color: var(--color-primary-hover);
	padding: .4rem .5rem;
	border-radius: 5px;
}

.view-btn-design i {
	color: #fff;
	font-size: 1.2rem;

}
.coming-soon-card {
  border-radius: 12px;
  border: 1px dashed #ddd;
  background-color: #fff;
}

.coming-icon {
  font-size: 48px;
  color: var(--accent);
}

.coming-soon-card .card-title {
  font-weight: 600;
}

.coming-soon-card .card-text {
  font-size: 14px;
  color: #6c757d;
}

.bg-danger-color{
	background-color: var(--accent);
}
.userPersonaSwiper a{
	color: #000;
}
.persona-heading{
	color: var(--accent);
}
.persona-card {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 24px;
}

.persona-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #7a1c1c;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f2f2f2;
}

.persona-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #2b2b2b;
  text-align: justify;
}
.pagination .page-link {
  color: #7a1c1c;
  border-radius: 6px;
  margin: 0 2px;
}

.pagination .page-item.active .page-link {
  background-color: #7a1c1c;
  border-color: #7a1c1c;
  color: #fff;
}

.pagination .page-link:hover {
  background-color: #f4eaea;
  color: #7a1c1c;
}
/* Filters */
.filters-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Event Card */
.event-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.event-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* Content */
.event-body {
  padding: 16px 18px 20px;
}

.event-title {
  font-size: 18px;
  margin-bottom: 12px;
}

.event-title a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  /* text-decoration-color: var(--color-primary); */
}

/* Meta */
.event-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 14px;
}

.event-meta span {
  display: block;
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.search-btn-cl{
	background-color: var(--color-primary);
	color: var(--color-tab-bg);
}
.search-btn-cl:hover{
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
}
/* ===========================
   HOME EVENTS SECTION
=========================== */

.home-events-section {
    padding: 60px 0;
    background: #faf7f5;
}

.home-section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #222;
}

/* Card */
.home-event-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.home-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* Image */
.home-event-image {
    position: relative;
}

.home-event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Date Badge */
.home-event-date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #8b1c2d;
    color: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
}

.home-event-date strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

/* Content */
.home-event-content {
    padding: 18px;
}

.home-event-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.home-event-title a {
    color: #111;
    text-decoration: none;
}

.home-event-title a:hover {
    text-decoration: underline;
}

/* Details */
.home-event-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-event-details li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.home-event-details .label {
    font-weight: 600;
    margin-right: 4px;
}

/* Scroll wrapper */
.directory-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
    background-color: #ebeaea;

}

.directory-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.directory-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.directory-list-filter {
  display: inline-flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0 auto;
  padding: 0.5rem;
  white-space: nowrap;
  align-items: center;
  width: 100%;
}
.directory-list-filter > li {
  flex: 0 0 auto;
}

.directory-list-filter > li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.directory-list-filter > li a:hover,
.directory-list-filter > li a:focus {
  color: #fff;
  background-color: var(--color-primary-hover);
  outline: none;
}

.directory-list-filter > li a.active {
  background-color: var(--color-primary);
  color: #fff;
}
@media (min-width: 992px) {
  .directory-scroll-wrapper {
    overflow-x: hidden;
  }

  .directory-list-filter {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.sales-table .table-pages .table tbody td{
	padding: 10px !important;
}
.sales-table .event-title p {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  /* text-decoration-color: var(--color-primary); */
}


/* organization */
.org-chart-container {
	background: white;
	border: 1px solid #33333327;
	border-radius: 5px;
	padding: 30px 20px;
	overflow-x: auto;
}

.org-chart-title {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
	color: #333;
}

.org-chart-subtitle {
	text-align: center;
	font-size: 12px;
	color: #666;
	margin-bottom: 30px;
}

.org-chart-wrapper {
	display: inline-block;
	min-width: 100%;
}

/* Tree Structure */
.org-tree {
	display: flex;
	justify-content: center;
	position: relative;
}

.org-tree ul {
	padding-top: 20px;
	position: relative;
	display: flex;
	justify-content: center;
	list-style: none;
}

.org-tree li {
	float: left;
	text-align: center;
	list-style-type: none;
	position: relative;
	padding: 20px 5px 0 5px;
}

.org-tree li::before,
.org-tree li::after {
	content: '';
	position: absolute;
	top: 0;
	right: 50%;
	border-top: 2px solid #666;
	width: 50%;
	height: 20px;
}

.org-tree li::after {
	right: auto;
	left: 50%;
	border-left: 2px solid #666;
}

.org-tree li:only-child::after,
.org-tree li:only-child::before {
	display: none;
}

.org-tree li:only-child {
	padding-top: 0;
}

.org-tree li:first-child::before,
.org-tree li:last-child::after {
	border: 0 none;
}

.org-tree li:last-child::before {
	border-right: 2px solid #666;
	border-radius: 0 5px 0 0;
}

.org-tree li:first-child::after {
	border-radius: 5px 0 0 0;
}

.org-tree ul ul::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	border-left: 2px solid #666;
	width: 0;
	height: 20px;
}

/* Node Styles */
.org-node {
	border: 2px solid #d4a574;
	padding: 8px 12px;
	display: inline-block;
	background: #fef5e7;
	border-radius: 5px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 120px;
	max-width: 180px;
}

.org-node:hover {
	background: #fdebd0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.org-node-text {
	font-size: 11px;
	font-weight: 600;
	color: #333;
	word-wrap: break-word;
	line-height: 1.3;
}

/* Level-specific styles */
.org-node.level-0 {
	background: #fff9e6;
	border-color: #c49c6b;
	font-size: 12px;
	font-weight: bold;
}

.org-node.level-1 {
	background: #fffbf0;
	border-color: #d4a574;
}

.org-node.level-2 {
	background: #fef5e7;
	border-color: #ddb892;
}

.org-node.level-3 {
	background: #fef9f3;
	border-color: #e6c9a8;
}

.org-node.level-4 {
	background: #fefcf9;
	border-color: #ead5bc;
}

/* Collapsed state */
.org-node.collapsed+ul {
	display: none;
}

.org-node.collapsed::after {
	content: '+';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	background: #fef5e7;
	border: 1px solid #d4a574;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #666;
}

.org-node.has-children::after {
	content: '−';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	background: #fef5e7;
	border: 1px solid #d4a574;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #666;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.org-node {
		min-width: 100px;
		max-width: 150px;
		padding: 7px 10px;
	}

	.org-node-text {
		font-size: 10px;
	}
}

@media (max-width: 768px) {
	.org-chart-container {
		padding: 20px 10px;
	}

	.org-tree li {
		padding: 15px 3px 0 3px;
	}

	.org-node {
		min-width: 80px;
		max-width: 120px;
		padding: 6px 8px;
	}

	.org-node-text {
		font-size: 9px;
	}
}

@media (max-width: 480px) {
	body {
		padding: 10px;
	}

	.org-tree li {
		padding: 12px 2px 0 2px;
	}

	.org-node {
		min-width: 70px;
		max-width: 100px;
		padding: 5px 6px;
	}

	.org-node-text {
		font-size: 8px;
	}

	.org-tree li::before,
	.org-tree li::after {
		height: 15px;
	}

	.org-tree ul {
		padding-top: 15px;
	}

	.org-tree ul ul::before {
		height: 15px;
	}
}

/* Footer */
.org-tree ul {
	padding-left: 0;
}

.org-chart-dimensions {
	display: inline-block;
	background: #4a90e2;
	color: white;
	padding: 5px 15px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: bold;
}

.back-button {
	display: inline-block;
	background: #8b4513;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 12px;
	margin-bottom: 20px;
	transition: background 0.3s ease;
}

.back-button:hover {
	background: #6b3410;
}

.org-tree ul ul.joint-org-node::before {
	height: 50px;
}

.org-tree ul ul.joint-org-node li.first-chlid {
	padding-top: 3rem;
	margin-right: 15rem;
}

.leftchild-level:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	border-left: 2px solid #666;
	width: 0;
	height: 50px;
}

.hr {
	position: absolute;
	top: 47%;
	left: -16%;
	border-top: 2px solid #666;
	width: 66%;
	height: 20px;
}

.hr:before {
	content: '';
	position: absolute;
	top: 0%;
	left: 50%;
	border-left: 2px solid #666;
	width: 0;
	height: 20px;
}

.first-node-org{
padding-top: 25rem !important;
}
.org-tree li.first-node-org::after {
height: 402px;
}

.org-tree li.second-node-org::before {
padding-right: 3rem;
}
.first-org-third:before{
height: 300px !important;
}

/* inner banner */
.innerBannerNav {
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: .5rem 1rem;
  margin-top: -2rem;
}
.innernav .nav {
  flex-wrap: nowrap;   
  overflow-x: auto;
  gap: 0.5rem;
}

.innernav .nav-link {
  white-space: nowrap;   
  padding: .5rem 1rem;
  color: #fff;
  font-size: 1.2rem;
}

.innernav .nav-link.active {
  position: relative;
  padding-left: 28px; 
  font-weight: bold;
}

.innernav .nav-link.active::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 28px;
  background: url('/themes/custom/asiatic_society/images/dot.svg') no-repeat center;
  background-size: contain;
}


@media (max-width: 992px) {
  .innerBannerNav {
    width: 95%;
    bottom: -40%;
  }
  .innernav .nav-link {
    font-size: 0.95rem;
    padding: .4rem .8rem;
  }
}

@media (max-width: 576px) {
  .innerBannerNav {
    position: relative;
    transform: none;
    left: auto;
    bottom: auto;
    width: 100%;
    border-radius: 0;
    margin-top: 1rem;
  }

  .innernav .nav {
    justify-content: flex-start;
  }

  .innernav .nav-link {
    font-size: 0.9rem;
    padding: .4rem .7rem;
  }

  .innernav .nav-link.active {
    padding-left: 24px;
  }

  .innernav .nav-link.active::before {
    left: 4px;
    width: 10px;
    height: 24px;
  }
}

/* Sitemap Main Container */
.sitemap {
    max-width: 1200px;
    margin: 40px auto;
    padding: 90px 20px 40px;
    background: #f5f5f5;
    position: relative;
}

/* Sitemap Header - Site Map Title */
.sitemap::before {
    content: 'Site Map';
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    padding-bottom: 15px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

/* Underline Effect */
.sitemap::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #771D1D, #5a1515);
    border-radius: 2px;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
}

/* Sitemap Grid Layout */
.sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Main Navigation - First Position */
.sitemap-item--menu-main {
    order: -1;
}

/* Footer - Hide */
.sitemap-item--menu-footer {
    display: none;
}

/* Sitemap Item Cards */
.sitemap-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.sitemap-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #771D1D;
}

/* Section Headers */
.sitemap-item h2 {
    font-size: 20px;
    font-weight: 700;
    color: #771D1D;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

/* Icons for Different Sections */
.sitemap-item--menu-main h2::before {
    content: '🧭';
    margin-right: 10px;
    font-size: 22px;
}

.sitemap-item--menu-footer h2::before {
    content: '📋';
    margin-right: 10px;
    font-size: 22px;
}

.sitemap-item--menu-quick-links h2::before {
    content: '⚡';
    margin-right: 10px;
    font-size: 22px;
}

.sitemap-item--menu-informational-links h2::before {
    content: '📚';
    margin-right: 10px;
    font-size: 22px;
}

.sitemap-item--menu-footer-secondary-links h2::before {
    content: '🔗';
    margin-right: 10px;
    font-size: 22px;
}

.sitemap-item--frontpage h2::before {
    content: '🏠';
    margin-right: 10px;
    font-size: 22px;
}

/* List Styling */
.sitemap-item ul {
    list-style: none;
    padding: 0;
}

.sitemap-item ul ul {
    margin-left: 20px;
    margin-top: 8px;
}

.sitemap-item li {
    margin: 8px 0;
    position: relative;
}

/* Leaf Items (End Nodes) */
.sitemap-item li.leaf::before {
    content: '•';
    color: #771D1D;
    font-weight: bold;
    display: inline-block;
    width: 15px;
    margin-right: 8px;
}

/* Expanded Items (Parent Nodes) */
.sitemap-item li.expanded > a {
    font-weight: 700;
    color: #1a1a1a;
}

.sitemap-item li.expanded::before {
    content: '▼';
    color: #771D1D;
    font-size: 10px;
    display: inline-block;
    width: 15px;
    margin-right: 8px;
}

/* Link Styling - All Links Bold */
.sitemap-item a {
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    font-weight: 600;
}

.sitemap-item a:hover {
    color: #771D1D;
    padding-left: 5px;
}

/* Front Page Special Styling */
.sitemap-item--frontpage {
    background: linear-gradient(135deg, #771D1D 0%, #5a1515 100%);
    color: white;
    grid-column: 1 / -1;
}

.sitemap-item--frontpage h2 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sitemap-item--frontpage a {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.sitemap-item--frontpage a:hover {
    color: #ffeb3b;
}

.sitemap-item--frontpage img {
    vertical-align: middle;
    margin-left: 10px;
    opacity: 0.9;
}

/* Empty Links Styling */
.sitemap-item a[href=""] {
    opacity: 0.6;
    cursor: not-allowed;
}

.sitemap-item a[href=""]:hover {
    padding-left: 0;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sitemap::before {
        font-size: 26px;
        top: 15px;
    }
    
    .sitemap::after {
        top: 55px;
    }
    
    .sitemap {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 50px 15px 20px;
    }
    
    .sitemap-item {
        padding: 20px;
    }
    
    .sitemap-item h2 {
        font-size: 18px;
    }
}


.no-data-container {
  text-align: center;
  padding: 40px 20px;
  color: #6c757d;
  background: #f8f9fa;
  border: 1px dashed #dee2e6;
  border-radius: 8px;
}

.no-data-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.no-data-container h4 {
  margin-bottom: 5px;
  font-weight: 600;
}
