@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--primary: #001e39;
	--primary-light: #003366;
	--secondary: #a77c02;
	--secondary-light: #d4a017;
	--background: #f9f9f9;
	--foreground: #1f1f1f;
	--card: #ffffff;
	--border: #e0e0e0;
	--muted: #f5f5f5;
	--muted-text: #666666;
	--white: #ffffff;
	--black: #000000;
	--radius: 12px;
	--transition: all 0.3s ease;
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
	--shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.2);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat", sans-serif !important;
	background-color: var(--background);
	color: var(--foreground);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
button{
	font-family: "Montserrat", sans-serif !important;
}
.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-title {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1.5rem;
	color: var(--primary);
	letter-spacing: -1px;
}

.section-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--muted);
	border-radius: 2rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 1rem;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-description {
	color: var(--muted-text);
	font-size: 1.1rem;
	max-width: 800px;
	margin: 1rem auto 0;
	line-height: 1.8;
}

.section-footer {
	text-align: center;
	margin-top: 3rem;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	transition: var(--transition);
	padding: 1rem 0;
}

.navbar.scrolled {
	background: rgb(255 255 255 / 38%);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-md);
	padding: 0.5rem 0;
}

.navbar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.navbar-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	z-index: 10;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
}

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: white;
	transition: var(--transition);
}

.navbar.scrolled .logo-title {
	color: var(--foreground);
}

.logo-subtitle {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition);
}

.navbar.scrolled .logo-subtitle {
	color: var(--muted-text);
}

.nav-menu {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.navbar.scrolled .nav-link {
	color: var(--foreground);
}

.nav-link:hover {
	color: var(--secondary);
}

.nav-dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
}

.dropdown-item {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--foreground);
	text-decoration: none;
	font-size: 0.95rem;
	transition: var(--transition);
}

.dropdown-item:hover {
	background: var(--muted);
	color: var(--secondary);
}

.nav-buttons {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 20;
}

.mobile-menu-btn span {
	width: 1.5rem;
	height: 0.25rem;
	background: white;
	transition: var(--transition);
	border-radius: 2px;
}

.navbar.scrolled .mobile-menu-btn span {
	background: var(--foreground);
}

.mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--card);
	border-top: 1px solid var(--border);
	padding: 1.5rem;
	gap: 1rem;
	flex-direction: column;
}

.mobile-menu.active {
	display: flex;
}

.mobile-nav-link {
	display: block;
	color: var(--foreground);
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 0;
}

.mobile-nav-link:hover {
	color: var(--secondary);
}

.btn-block {
	width: 100%;
}

/* Buttons */
.btn {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.btn-primary {
	background: #06679d;
	color: white;
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	background: #055580;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(6, 103, 157, 0.3);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .btn-outline {
	background: transparent;
	border: 1px solid var(--primary);
	color: var(--primary);
}

.navbar.scrolled .btn-outline:hover {
	background: var(--primary);
	color: white;
}

.btn-small {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}

.btn-icon {
	padding: 0.5rem;
	width: 2.5rem;
	height: 2.5rem;
}

.btn-back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: #06679d;
	color: white;
	border: none;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
}

.btn-back-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.btn-back-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(6, 103, 157, 0.4);
}

/* Modern Hero Section */
.hero-modern {
	position: relative;
	min-height: 100vh;
	background: var(--primary);
	overflow: hidden;
}

.carousel-slides {
	display: grid;
	width: 100%;
	min-height: 100vh;
}

.slide {
	grid-area: 1 / 1;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 1;
	pointer-events: none; /* Prevent clicks on hidden slides */
}

.slide.active {
	opacity: 1;
	z-index: 2;
	pointer-events: auto;
}

.hero-modern-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 120px 4rem 4rem; /* Increased top padding to avoid navbar overlap */
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	height: 100%;
}

.hero-modern-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	width: fit-content;
	margin-bottom: 1.5rem;
}

.hero-badge .badge-icon {
	margin-right: 0.5rem;
	font-size: 1.2rem;
}

.hero-badge .badge-text {
	color: white;
	font-weight: 600;
	font-size: 0.9rem;
}

.hero-title {
	font-size: 4.5rem;
	line-height: 1.1;
	font-weight: 800;
	color: white;
	margin-bottom: 1.5rem;
}

.hero-title .highlight-text {
	background: linear-gradient(135deg, #06679d 0%, #a77c02 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.hero-description {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 2.5rem;
	max-width: 90%;
}

.hero-meta {
	display: flex;
	gap: 2rem;
	margin-bottom: 3rem;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.meta-icon {
	font-size: 2rem;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	width: 3.5rem;
	height: 3.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
}

.meta-info {
	display: flex;
	flex-direction: column;
}

.meta-info strong {
	color: white;
	font-size: 1.1rem;
}

.meta-info span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.hero-actions {
	display: flex;
	gap: 1rem;
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

.btn-outline-light {
	background: transparent;
	border: 2px solid white;
	color: white;
	border-radius: var(--radius);
	font-weight: 600;
	transition: var(--transition);
	padding: 1rem 2rem;
	font-size: 1.1rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-outline-light:hover {
	background: white;
	color: var(--primary);
	transform: translateY(-2px);
}

/* Right Side: Visuals */
.hero-modern-visual {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.visual-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 4/5;
	border-radius: 30px;
	border: 10px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 25px 50px rgba(0,0,0,0.5);
	border-bottom-left-radius: 120px;
}

.main-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 20px;
	border-bottom-left-radius: 110px;
	background: #eee;
}

.main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

/* Carousel Indicators */
.carousel-indicators {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.75rem;
	z-index: 10;
}

.indicator {
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	transition: var(--transition);
}

.indicator.active {
	background: white;
}

@keyframes fadeInUpModern {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in-up {
	opacity: 0;
	animation: fadeInUpModern 0.8s ease forwards;
}

.animate-fade-in-left {
	opacity: 0;
	animation: fadeInUpModern 1s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-title { font-size: 3.5rem; }
	.hero-modern-container { padding: 100px 2rem 2rem; gap: 2rem; }
}

@media (max-width: 992px) {
	.hero-modern { height: auto; min-height: 100vh; }
	.hero-modern-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero-modern-text {
		align-items: center;
	}
	.hero-description {
		max-width: 100%;
	}
	.hero-meta {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}
	.visual-wrapper {
		width: 80%;
		margin: 0 auto;
	}
}

@media (max-width: 576px) {
	.hero-title { font-size: 2.5rem; }
	.hero-actions { flex-direction: column; width: 100%; }
	.btn-large { width: 100%; }
	.visual-wrapper { width: 100%; }
}

/* Marquee Section */
.marquee-section {
	background: var(--primary);
	color: white;
	padding: 1rem 0;
	overflow: hidden;
	position: sticky;
	top: 4rem;
	z-index: 50;
}

.marquee-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.marquee-label {
	font-size: 0.9rem;
	font-weight: 600;
	white-space: nowrap;
}

.marquee-text {
	font-size: 1rem;
	font-weight: 500;
}

/* About Section */
.about-section-enhanced {
	padding: 5rem 0;
	background: var(--card);
}

.about-overview {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 4rem;
}

.overview-text h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.overview-text p {
	color: var(--muted-text);
	line-height: 1.8;
	margin-bottom: 2rem;
}

.overview-image {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.overview-image img {
	width: 100%;
	height: 405px;
	object-fit: cover;
	display: block;
	object-position: bottom;
}

.mission-vision-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.mission-card {
	padding: 2rem;
	background: var(--muted);
	border-radius: var(--radius);
	border-left: 4px solid var(--secondary);
	transition: var(--transition);
	text-align: center;
}

.mission-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.card-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.mission-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--primary);
}

.mission-card p {
	color: var(--muted-text);
	line-height: 1.8;
}

.highlights-section {
	background: linear-gradient(135deg, rgba(0, 30, 57, 0.05), rgba(167, 124, 2, 0.05));
	padding: 3rem;
	border-radius: var(--radius);
	margin-bottom: 4rem;
}

.highlights-section h3 {
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 2rem;
	color: var(--primary);
}

.highlights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.highlight-item {
	text-align: center;
}

.highlight-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.highlight-item h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: var(--foreground);
}

.highlight-item p {
	color: var(--muted-text);
	font-size: 0.95rem;
	line-height: 1.6;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.stat-card {
	text-align: center;
	padding: 2rem;
	background: var(--muted);
	border-radius: var(--radius);
	transition: var(--transition);
}

.stat-card:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-lg);
}

.stat-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--secondary);
	margin: 0.5rem 0;
}

.stat-label {
	font-size: 0.95rem;
	color: var(--muted-text);
	font-weight: 600;
}

/* Founder Message Section (Homepage) */
.founder-section-home {
	padding: 5rem 0;
	background: var(--background);
	border-bottom: 1px solid var(--border);
}

.founder-section-home .section-title,
.founder-section-home .section-badge {
	text-align: left;
	margin-left: 0;
}

.founder-flex {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: center;
}

.founder-image {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border-bottom: 5px solid var(--secondary);
}

.founder-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 3 / 4;
}

.founder-content {
	text-align: left;
}

.founder-quote {
	font-size: 1.1rem;
	color: var(--muted-text);
	line-height: 1.8;
	margin: 1.5rem 0;
	font-style: italic;
}

.founder-quote p {
	margin-bottom: 1rem;
}

.founder-signature {
	margin-bottom: 2rem;
}

.founder-name {
	font-size: 1.3rem;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.founder-title {
	font-size: 0.95rem;
	color: var(--secondary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 992px) {
	.founder-flex {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.founder-image {
		max-width: 400px;
		margin: 0 auto;
	}
	
	.founder-content {
		text-align: center;
	}
}

/* Patrons Section */
.patrons-section {
	padding: 5rem 0;
	background: var(--background);
}

.patrons-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.patron-card {
	background: var(--card);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.patron-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

/* Update these specific classes for the Patrons section */

.patron-card .patron-image {
    width: 200px;             /* 1. Set a fixed square width */
    height: 200px;            /* 2. Set the same height to make it a perfect square */
    border-radius: 50%;       /* 3. This makes it a circle */
    margin: 2rem auto 0;      /* 4. Center the image horizontally and add top spacing */
    overflow: hidden;         /* Ensures the image stays inside the circle */
    border: 5px solid var(--muted); /* Optional: Adds a nice ring/border around the circle */
    background: var(--muted);
}

.patron-card .patron-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Ensures the image covers the circle without stretching */
    transition: var(--transition);
}

/* Recommended: Center the text content to match the centered circular image */
.patron-content {
    text-align: center;
    padding: 1.5rem;
}

/* Adjust the header layout since the text is now centered */
.patron-header {
    flex-direction: column;   /* Stack the name and role vertically */
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* Adjust the badge/role position */
.patron-role {
    margin-top: 0.25rem;
}

.patron-card:hover .patron-image img {
	transform: scale(1.05);
}

.patron-content {
	padding: 1.5rem;
}

.patron-header {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.5rem;
}

.patron-header h3 {
	font-size: 1.1rem;
	color: var(--foreground);
	flex: 1;
}

.patron-role {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: var(--muted);
	color: var(--secondary);
	font-size: 0.7rem;
	font-weight: 700;
	border-radius: 2rem;
	white-space: nowrap;
}

.patron-content .company {
	font-size: 0.85rem;
	color: var(--secondary);
	font-weight: 600;
	margin: 0.5rem 0;
}

.patron-content p {
	font-size: 0.9rem;
	color: var(--muted-text);
	line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
	padding: 5rem 0;
	background: var(--card);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	aspect-ratio: 1;
	cursor: pointer;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 30, 57, 0.8), rgba(0, 30, 57, 0));
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 1.5rem;
	opacity: 0;
	transition: var(--transition);
	color: white;
	font-weight: 600;
}

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

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

/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 2000;
	align-items: center;
	justify-content: center;
}

.lightbox.active {
	display: flex;
}

.lightbox-image {
	max-width: 90%;
	max-height: 90vh;
	object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	cursor: pointer;
	padding: 0.75rem;
	border-radius: 50%;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
	background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
	top: 1rem;
	right: 1rem;
}

.lightbox-prev {
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-next {
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

/* Events Section */
.events-section {
	padding: 5rem 0;
	background: var(--background);
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.event-card {
	background: var(--card);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.event-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.event-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.event-card:hover .event-image img {
	transform: scale(1.05);
}

.event-type {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--secondary);
	color: white;
	padding: 0.4rem 0.8rem;
	border-radius: 0.25rem;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: capitalize;
}

.event-content {
	padding: 1.5rem;
}

.event-content h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--primary);
}

.event-description {
	color: var(--muted-text);
	font-size: 0.95rem;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.event-meta {
	font-size: 0.9rem;
	color: var(--muted-text);
	margin-bottom: 1rem;
}

.event-meta p {
	margin-bottom: 0.5rem;
}

.event-stats {
	display: flex;
	gap: 2rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border);
}

.event-stats div {
	flex: 1;
}

.event-stats strong {
	color: var(--secondary);
	font-size: 1.1rem;
	display: block;
}

.event-stats span {
	font-size: 0.8rem;
	color: var(--muted-text);
}

/* Press Release Section */
.press-section {
	padding: 5rem 0;
	background: var(--muted);
}

.press-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.press-card {
	background: var(--card);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
}

.press-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.press-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: var(--muted);
}

.press-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.press-card:hover .press-image img {
	transform: scale(1.08);
}

.press-content {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.press-date {
	font-size: 0.85rem;
	color: var(--muted-text);
	margin-bottom: 0.75rem;
	font-weight: 500;
}

.press-card h3 {
	font-size: 1.1rem;
	color: var(--primary);
	margin-bottom: 0.75rem;
	line-height: 1.4;
	flex-grow: 1;
}

.press-card p {
	color: var(--muted-text);
	font-size: 0.95rem;
	margin-bottom: 1.25rem;
	line-height: 1.6;
	flex-grow: 1;
}

.press-card .btn {
	margin-top: auto;
}

/* News Section */
.news-section {
	padding: 5rem 0;
	background: var(--card);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.news-card {
	background: var(--muted);
	padding: 1.5rem;
	border-radius: var(--radius);
	transition: var(--transition);
	border-left: 4px solid transparent;
}

.news-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-left-color: var(--secondary);
}

.news-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.news-category {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	background: rgba(167, 124, 2, 0.15);
	color: var(--secondary);
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 2rem;
	white-space: nowrap;
}

.news-date {
	font-size: 0.8rem;
	color: var(--muted-text);
	white-space: nowrap;
}

.news-card h3 {
	font-size: 1.15rem;
	color: var(--primary);
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.news-card p {
	color: var(--muted-text);
	font-size: 0.95rem;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.news-link {
	color: var(--secondary);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: var(--transition);
}

.news-link:hover {
	color: var(--primary);
	text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	max-width: 400px;
	background: var(--card);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	z-index: 1500;
	animation: slideIn 0.3s ease-out;
}

.cookie-banner.hidden {
	display: none;
}

@keyframes slideIn {
	from {
		transform: translateX(-500px);
		opacity: 0;
	}

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

.cookie-content {
	position: relative;
	padding: 1.5rem;
	display: flex;
	gap: 1rem;
	flex-direction: column;
}

.cookie-icon {
	font-size: 2rem;
	flex-shrink: 0;
}

.cookie-text {
	flex: 1;
}

.cookie-text h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	color: var(--foreground);
}

.cookie-text p {
	font-size: 0.85rem;
	color: var(--muted-text);
	line-height: 1.4;
	margin-bottom: 1rem;
}

.cookie-buttons {
	display: flex;
	gap: 0.5rem;
}

.cookie-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.2rem;
	color: var(--muted-text);
	cursor: pointer;
}

/* Footer */
.footer {
	background: var(--primary);
	color: white;
	position: relative;
	overflow: hidden;
	padding: 3rem 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	padding: 3rem 0;
}

.footer-section {
	padding: 0;
}

.footer-section h4 {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: var(--secondary);
	font-weight: 600;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.footer-logo-img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
}

.footer-logo h3 {
	font-size: 1.5rem;
	margin: 0;
}

.footer-logo p {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
}

.footer-description {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.social-links {
	display: flex;
	gap: 0.5rem;
}

.social-link {
	width: 2.5rem;
	height: 2.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: var(--transition);
	font-weight: 600;
}

.social-link:hover {
	background: var(--secondary);
}

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

.footer-links li {
	margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
	color: var(--secondary);
}

.contact-info {
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

.contact-info p {
	margin-bottom: 0.75rem;
}

.newsletter {
	margin-top: 1rem;
}

.newsletter h5 {
	font-size: 0.95rem;
	margin-bottom: 0.75rem;
	color: var(--secondary);
}

.newsletter-form {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.newsletter-input {
	flex: 1;
	padding: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: calc(var(--radius) / 2);
	color: white;
	outline: none;
}

.newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.newsletter-text {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 1.5rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.footer-bottom-links {
	display: flex;
	gap: 2rem;
}

.footer-bottom-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: var(--transition);
}

.footer-bottom-links a:hover {
	color: var(--secondary);
}

/* Progress Bar */
.progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(to right, var(--secondary), var(--secondary-light));
	width: 0%;
	z-index: 1001;
	transition: width 0.1s ease;
}

/* Animations */
@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-15px);
	}
}

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

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

@keyframes zoomOut {
	0% {
		transform: scale(1.05);
	}

	50% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.05);
	}
}

.animate-fade-in-up {
	animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width: 767px){
	.marquee-content {
		gap: 0rem;
		flex-direction: column;
	}


}
@media (max-width: 768px) {

	.nav-menu,
	.nav-buttons {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.section-title {
		font-size: 2rem;
	}

	.slide-title {
		font-size: 2rem;
	}

	.slide-subtitle {
		font-size: 1rem;
	}

	.about-overview {
		grid-template-columns: 1fr;
	}
	.about-overview {
		grid-template-columns: 1fr;
	}
	.about-overview .overview-image{
		order: 1;
	}
	.press-grid,
	.news-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
	}

	.footer-bottom-links {
		flex-direction: column;
		gap: 1rem;
	}
	.about-overview .overview-text{
		order: 1;
	}
}

/* @media (prefers-color-scheme: dark) {
:root {
--background: #0f0f0f;
--foreground: #ffffff;
--card: #1a1a1a;
--border: #333333;
--muted: #2a2a2a;
--muted-text: #b0b0b0;
}
}

@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
} */



/* ============================================
   NEWS PAGE STYLES (Namespaced: .news-)
   ============================================ */

.news-hero {
  padding: 8rem 1rem;
  background: linear-gradient(to right, rgba(0, 30, 57, 0.9), rgba(0, 30, 57, 0.8), rgba(0, 30, 57, 0.7));
}

.news-hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.news-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .news-hero h1 {
    font-size: 3.5rem;
  }
}

.news-hero p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.6;
}

.news-tabs-section {
  padding: 4rem 1rem;
}

.news-tabs-container {
  max-width: 1400px;
  margin: 0 auto;
}

.news-tabs-header {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.news-tabs-list {
  display: inline-flex;
  background-color: var(--muted);
  border-radius: 0.5rem;
  padding: 0.5rem;
  gap: 0.5rem;
}

.news-tab-trigger {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  color: var(--foreground);
}

.news-tab-trigger.active {
  background-color: var(--white);
  color: var(--foreground);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.news-card-header {
  padding: 1.5rem 1.5rem 0;
}

.news-card-badge {
  display: inline-block;
  background-color: rgba(0, 30, 57, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.news-card-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.news-card-date-icon {
  font-size: 1rem;
}

.news-card-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-press-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-press-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.news-press-thumbnail {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--muted);
}

.news-press-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-press-card:hover .news-press-thumbnail img {
  transform: scale(1.05);
}

.news-press-header {
  padding: 1.5rem 1.5rem 0;
}

.news-press-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.news-press-date-icon {
  font-size: 1rem;
}

.news-press-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-press-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  padding: 1.5rem;
  margin-top: auto;
}

.news-btn-read {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--foreground);
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.news-btn-read:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.news-tab-content {
  display: none;
}

.news-tab-content.active {
  display: block;
}


/* ============================================
   EVENTS PAGE STYLES (Namespaced: .events-)
   ============================================ */

.events-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom right, var(--primary), rgba(0, 30, 57, 0.8));
  color: var(--white);
}

.events-hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.events-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .events-hero h1 {
    font-size: 3.75rem;
  }
}

.events-hero h1 span {
  color: var(--secondary);
}

.events-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.events-search-section {
  padding: 3rem 1rem;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}

.events-search-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .events-search-container {
    flex-direction: row;
    gap: 1rem;
  }
}

.events-search-wrapper {
  position: relative;
  flex: 1;
}

.events-search-wrapper input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: inherit;
}

.events-search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.5;
}

.events-filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.events-filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background-color: var(--white);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.875rem;
}

.events-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.events-section {
  padding: 5rem 1rem;
  background-color: var(--background);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.events-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.events-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.events-card-image {
  position: relative;
  height: 192px;
  overflow: hidden;
  background-color: var(--muted);
}

.events-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.events-card:hover .events-card-image img {
  transform: scale(1.05);
}

.events-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.events-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
  z-index: 10;
}

.events-featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--secondary), #d4a017);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
}

.events-card-details {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: var(--white);
  font-size: 0.875rem;
}

.events-card-details-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

.events-card-details-icon {
  margin-right: 0.25rem;
}

.events-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.events-card-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.events-card:hover .events-card-title {
  color: var(--primary);
}

.events-card-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.events-card-location {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.events-card-location-icon {
  margin-right: 0.25rem;
}

.events-card-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.events-stat-group {
  display: flex;
  gap: 1.5rem;
}

.events-stat {
  display: flex;
  flex-direction: column;
}

.events-stat-value {
  font-weight: 600;
  color: var(--primary);
}

.events-stat-label {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.events-card-price {
  font-weight: 600;
  color: var(--primary);
  text-align: right;
}

.events-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.events-btn-primary {
  flex: 1;
  background-color: var(--primary);
  color: var(--white);
}

.events-btn-primary:hover {
  background-color: rgba(0, 30, 57, 0.8);
}

 /* Pagination Styling */
    .hof-pagination {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .hof-page-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        border: 1px solid var(--border);
        background: var(--white);
        color: var(--foreground);
        text-decoration: none;
        border-radius: var(--radius);
        font-weight: 600;
        transition: var(--transition);
        min-width: 45px;
    }

    .hof-page-btn:hover {
        border-color: var(--secondary);
        color: var(--secondary);
    }

    .hof-page-btn.active {
        background: var(--secondary);
        color: var(--white);
        border-color: var(--secondary);
    }

    .hof-page-btn.prev, 
    .hof-page-btn.next {
        background-color: var(--muted);
        font-size: 0.9rem;
    }
.gallery-overlay {
    display: none;
}


/*  */

/* Media Center Wrapper */
.media-center-section {
    padding: 5rem 0;
    background: var(--background);
}

/* Tab Navigation Container */
.custom-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Tab Buttons */
.custom-tab-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    border: 2px solid #e0e0e0; /* Fallback color */
    border: 2px solid var(--border);
    border-radius: 50px;
    color: #666; /* Fallback color */
    color: var(--muted-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

.custom-tab-btn:hover {
    border-color: #a77c02; /* Fallback color */
    border-color: var(--secondary);
    color: #a77c02;
    color: var(--secondary);
}

/* Active State for Button */
.custom-tab-btn.active {
    background: #a77c02; /* Fallback color */
    background: var(--secondary);
    border-color: #a77c02; /* Fallback color */
    border-color: var(--secondary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Tab Content Logic - CRITICAL PART */
.custom-tab-pane {
    display: none !important; /* Forces hidden by default */
    animation: fadeEffect 0.5s ease;
}

.custom-tab-pane.active {
    display: block !important; /* Forces visible when active */
}

@keyframes fadeEffect {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* News Card Styling */
.news-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--secondary);
}

.news-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.news-category {
    color: var(--secondary);
    font-weight: bold;
    text-transform: uppercase;
}

.news-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary);
}

.news-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.news-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}