@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
	--primary: #2c2c2c;
	--white: #fff;
	--grey: #3d3d3d;
	--purple: #b63593;
	--green: #415e33;
	--lightGreen: #bad576;
	--lightGrey: #fafafa;
	--lightGreyBg: #f7f7f7;
	--orange: #f9a129;
	--orangeHover: #ffbc5e;
	--orangeBg: #f3b055;
	--blue: #3857a7;
	--lightBlue: #5cc9e8;
	--black: #000000;
	--yellow: #f7eb1b;
	--red: #e42929;
	--redHover: #fe6c6c;
	--cap: uppercase;
	--letterSpace: 6px;
	--fontSize12: 12px;
	--fontSize13: 13px;
	--fontSize14: 14px;
	--fontSize15: 15px;
	--fontSize16: 16px;
	--fontSize18: 18px;
	--fontSize19: 19px;
	--fontSize20: 20px;
	--fontSize21: 21px;
	--fontSize22: 22px;
	--fontSize24: 24px;
	--fontSize26: 26px;
	--fontSize27: 27px;
	--fontSize28: 28px;
	--fontSize30: 30px;
	--fontSize32: 32px;
	--fontSize34: 34px;
	--fontSize36: 36px;
	--fontSize40: 40px;
	--fontSize44: 44px;
	--fontSize50: 50px;
	--fontSize54: 54px;
	--fontSize60: 60px;
	--fontSize70: 70px;
	--fontSize80: 80px;
	--padding100: 100px 0;
	--font100: 100;
	--font200: 200;
	--font300: 300;
	--font400: 400;
	--font500: 500;
	--font600: 600;
	--font700: 700;
	--font800: 800;
	--font900: 900;
	--primary: #0f172a;
	--secondary: #1e293b;
	--accent: #0369a1;
	--accent-light: #0ea5e9;
	--gold: #ffff00;
	--light-bg: #f8fafc;
	--white: #ffffff;
	--text: #1e293b;
	--text-light: #64748b;
	--shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--shadow-hover: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
	--border-radius: 20px;
}
html,
body {
	height: 100%;
	font-family: "Montserrat", sans-serif;
	margin: 0;
	padding: 0;
	font-size: 14px;
	width: 100%;
	font-weight: 400;
	color: var(--primary);
}
body {
	overflow-x: hidden;
}

a {
	color: var(--green);
	font-size: var(--fontSize16);
}
a:hover {
	color: var(--lightGreen);
}

main {
	overflow: hidden;
}

a,
button {
	cursor: pointer;
	user-select: none;
	border: none;
	outline: none;
	background: none;
}

img,
video {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

/* Header Section */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 100;
	margin: 0 auto;
	background-color: #fffd54;
	border-bottom: 1px solid #fffd54;
}
.header ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
/* .header-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffff00;
	background: linear-gradient(0deg, rgba(255, 255, 0, 1) 0%, rgba(253, 187, 45, 1) 100%);
	transform: translateX(100%) scale(0.85);
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.5s ease, scale 0.5s ease;
	z-index: -1;
}

.header.scrolled.header-container::before {
	transform: translateX(0) scale(1);
	opacity: 1;
} */

.navbar {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100px;
	margin: 0 auto;
	text-transform: uppercase;
}

.navbar__left {
	display: flex;
	align-items: center;
}
.navbar__left img {
	height: 66px;
}

.navbar__center {
	display: flex;
}

@media (max-width: 767px) {
	.navbar__left {
		flex: 0 0 auto;
	}

	.navbar__center {
		flex: 0 0 100%;
		order: 3;
		align-items: center;
	}

	.navbar__right {
		flex: 0 0 auto;
		align-items: center;
	}
}

.brand {
	display: flex;
	align-items: center;
	order: 1;
}

.brand svg {
	width: 60px;
	height: 60px;
}

.menu {
	position: relative;
}

@media (max-width: 767px) {
	.menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 350px;
		max-width: 85%;
		height: 100vh;
		z-index: 100;
		overflow-x: hidden;
		overflow-y: auto;
		background-color: #fff;
		transform: translate(-100%);
		transition: all 0.4s ease-in-out;
		-webkit-overflow-scrolling: touch;
	}

	.menu.is-active {
		transform: translate(0%);
	}
}

.menu__inner {
	display: flex;
	gap: 5px;
}

@media (max-width: 767px) {
	.menu__inner {
		position: absolute;
		z-index: 1000;
		top: 0;
		left: 0;
		width: 100%;
		padding-top: 30px;
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		transform: translateX(0);
		-ms-overflow-style: -ms-autohiding-scrollbar;
		scrollbar-width: none;
		flex-direction: column;
		gap: 10px;
	}

	.menu__inner.is-sliding {
		transform: translateX(-100%);
	}
}

.menu__item {
	position: relative;
}

@media (min-width: 768px) {
	.menu__item:has(.megamenu__text),
	.menu__item:has(.megamenu__image) {
		position: static;
	}
}

.menu__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #000;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	pointer-events: auto;
	padding: 10px 15px;
	font-weight: var(--font600);
}
a.menu__link.active {
	color: var(--red);
}

.submenu.megamenu__normal a:hover.menu__link,
.submenu.megamenu__normal a.active.menu__link {
	background: red;
	color: var(--white);
}

@media (max-width: 767px) {
	.menu__link {
		font-size: 16px;
		padding: 10px 15px;
	}

	.menu__link i {
		transform: rotate(-90deg);
	}
}

.menu__link:hover {
	color: var(--primary-color);
}

.menu__link i {
	font-size: 18px;
	transition: transform 0.3s ease;
}

@media (min-width: 768px) {
	.menu__item:hover > .menu__link i {
		transform: rotate(-180deg);
	}
}

.menu__item.back-btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
	position: sticky;
	top: 0;
	background-color: #fff;
}

.menu__item.back-btn .menu__link {
	padding: 15px;
	font-weight: 500;
}

.menu__item.back-btn .menu__link:hover {
	color: var(--primary-color);
}

.menu__item.back-btn .menu__link i {
	margin-right: 8px;
	transform: rotate(0);
}

/* Submenu Styles */
.submenu {
	/* Desktop styles */
	position: absolute;
	z-index: 1000;
	top: 100%;
	left: 50%;
	min-width: 250px;
	padding: 15px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 5px;
	border-top: 2px solid var(--primary-color);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%);
	transition: all 0.3s ease;
}

@media (min-width: 768px) {
	.menu__item:hover > .submenu {
		opacity: 1;
		visibility: visible;
		z-index: 99;
	}
}

@media (max-width: 767px) {
	.submenu {
		position: fixed;
		z-index: 2000;
		left: 100%;
		top: 0;
		display: none;
		width: 100%;
		height: 100vh;
		padding: 0;
		opacity: 1;
		visibility: visible;
		pointer-events: none;
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		transform: translateX(0);
		border: 0;
		box-shadow: none;
	}

	.submenu.is-current-slide {
		pointer-events: auto;
		z-index: 2010;
		opacity: 1;
		display: block;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.submenu.is-current-parent {
		display: block;
		z-index: 2005;
	}
	.megamenu__normal {
		max-width: 100% !important;
		top: 0 !important;
	}
}

/* Sub menu level 3, 4, 5... */
.submenu .submenu {
	top: 0;
	left: 100%;
	transform: translateX(-5px);
}

@media (min-width: 768px) {
	.menu__item .menu__link i {
		transform: rotate(0deg) !important;
	}

	.menu__item:hover > .menu__link i {
		transform: rotate(180deg) !important;
	}
}

/* Mega menu styles */
.megamenu__normal {
	max-width: 300px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	top: calc(100% + 12px);
	padding: 15px 5px;
}

.megamenu__text,
.megamenu__image {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

@media (min-width: 976px) {
	.megamenu__text,
	.megamenu__image {
		max-width: 992px;
	}
}

.submenu__inner {
	width: 25%;
	padding: 0 15px;
}

@media (max-width: 767px) {
	.submenu__inner {
		width: 100%;
		padding: 0 15px;
	}

	.submenu__inner:first-of-type {
		padding-top: 15px;
	}
}

.submenu__title {
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.submenu__list {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.submenu__list {
		margin-bottom: 20px;
	}
}

.submenu__list li {
	display: block;
	line-height: 1;
	margin: 0 auto;
}

.submenu__list .menu__link {
	padding: 10px 0 !important;
}

.megamenu__image .submenu__inner a {
	display: flex;
	flex-flow: column;
	align-items: center;
}

@media (max-width: 767px) {
	.megamenu__image .submenu__inner a {
		flex-flow: row;
		align-items: center;
		padding-bottom: 20px;
	}
}

.megamenu__image .submenu__inner img {
	display: block;
	width: 100%;
	height: 150px;
	margin-bottom: 15px;
	object-fit: cover;
	border-radius: 10px;
}

@media (max-width: 767px) {
	.megamenu__image .submenu__inner img {
		width: 30%;
		height: 80px;
		margin-bottom: 0;
		margin-right: 15px;
	}
}

.overlay {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(0, 0, 0, 0.7);
	transition: all 0.45s ease-in-out;
	pointer-events: none;
}

@media (max-width: 767px) {
	.overlay {
		cursor: url("https://i.imgur.com/cPh9Zm5.png"), zoom-out;
		pointer-events: visible;
	}

	.overlay.is-active {
		opacity: 1;
		visibility: visible;
	}
}

.burger {
	position: relative;
	cursor: pointer;
	width: 25px;
	height: 15px;
	margin-right: 15px;
	display: none;
}

@media (max-width: 767px) {
	.burger {
		display: block;
	}
}

.burger-line {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 2px;
	opacity: 1;
	border-radius: 15px;
	background: #000;
}

.burger-line:nth-child(1) {
	top: 0px;
}

.burger-line:nth-child(2) {
	top: 8px;
	width: 70%;
}

.burger-line:nth-child(3) {
	top: 16px;
}

/* Content */
.navbar.container {
	max-width: 98%;
	height: 100px;
	margin-inline: auto;
	padding-inline: 15px;
}

.container-wrapper {
	padding: 45px 15px;
}

@media (max-width: 575px) {
	.container-wrapper {
		padding: 15px 15px;
	}
}

@media (max-width: 575px) {
	.content h1 {
		font-size: 20px;
	}
}
footer {
	padding: 50px 0 20px 0;
	background: url('../images/bg-testimonial.png') no-repeat;
}
footer h3 {
	font-size: var(--fontSize18);
}
a.subscribe {
	font-weight: var(--font600);
	font-size: var(--font18);
	color: var(--white);
}

.subscribe {
	background: var(--red);
	padding: 10px 50px;
	border-radius: 25px;
	margin-top: 7px;
	display: inline-block;
}
.subscribe:hover {
	background: var(--redHover);
}
.footer-links ul {
	margin: 0;
	padding: 0;
}
.footer-links ul li {
	list-style: none;
}
.footer-links ul li a {
	color: var(--black);
}
.social-footer {
	display: flex;
	justify-content: left;
	gap: 10px;
	padding: 0px 0;
}
.social-footer img {
	width: 40px;
	border-radius: 5px;
}
.social-footer a {
	display: inline-block;
	transition: transform 0.3s ease;
}
.footer-location a {
	color: var(--black);
}
.footer-location {
	font-size: var(--fontSize16);
}

.footer {
	padding: 13px 0;
	font-size: 16px;
}
/* button {
	background: var(--orange);
	color: var(--white);
	border: 0;
	padding: 8px 30px;
	font-size: var(--fontSize18);
}
button:hover {
	background: var(--orangeHover);
} */

/* About Us */
.banner-container {
	position: relative;
	width: 100%;
	height: 60vh;
	overflow: hidden;
	display: flex;
	justify-content: normal;
	align-items: center;
	margin-top: 101px;
	z-index: 5;
}

.banner-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/sub-banner.jpg');
	background-size: cover;
	background-position: center;
	z-index: 1;
}
.banner-image.about {
	background-image: url('../images/sub-banner-corpoate-info.jpg');
}

.banner-image.newsroom {
	background-image: url('../images/sub-banner-news.jpg');
}
.banner-image.ar {
	background-image: url('../images/sub-banner-publication.jpg');
}
.banner-image.email {
	background-image: url('../images/sub-banner-email-alerts.jpg');
}
.banner-image.contact {
	background-image: url('../images/sub-banner-contact-us.jpg');
}
.banner-image.results {
	background-image: url('../images/sub-banner-results.jpg');
}

/* .banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 45, 98, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 2;
} */

.banner-content {
	position: relative;
	z-index: 3;
	color: var(--white);
	padding: 0 20px;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	text-align: center;
}

.banner-title {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards 0.8s;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards 1.2s;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.banner-maintitle {
	font-size: var(--fontSize18);
	font-weight: var(--font400);
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards 0.5s;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.content {
	max-width: 100%;
	margin: 0 auto;
}

.about-text {
	font-size: 18px;
	line-height: 26px;
}
.about-text p {
	padding: 15px 0;
}
.overview-structure h1 {
	font-weight: var(--font600);
	font-size: var(--fontSize22);
}

.tagline {
	font-size: 18px;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

h2.corp {
	color: var(--black);
	margin-bottom: 30px;
	font-size: 30px;
	position: relative;
	padding-bottom: 15px;
}

.sub {
	background: url('../images/content-bg.jpg') no-repeat top center;
	background-size: cover;
}

/* Directors */
/* BOD */
.director-card {
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
	cursor: pointer;
	padding: 3px;
}

.director-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.director-image {
	height: 300px;
	object-fit: cover;
	width: 100%;
}

.card-body {
	display: flex;
	flex-direction: column;
}

.card-title {
	font-size: var(--fontSize20);
	font-weight: bold;
	margin-bottom: 0.3rem;
	color: var(--red);
}
.text-muted {
	font-size: var(--fontSize16);
	color: #939598;
}
.iziModal {
	background: transparent;
}
.box-modal .modal-content {
	background: #f7ca45;
	color: var(--black);
}
.modal-header .close {
	padding: 0 0 1rem 0;
}
.modal-header .close i {
	color: var(--white);
}
.modal-header .close {
	text-shadow: none;
	opacity: 1;
}
.iziModal-close-btn {
	position: absolute;
	right: 20px;
	top: 13px;
	font-size: var(--fontSize20);
	z-index: 100;
	cursor: pointer;
}
.bod-text {
	padding: 30px 15px;
	text-align: left;
}
.bod-content {
	font-size: var(--fontSize16);
	padding-top: 20px;
}
h5.font-weight-bold {
	font-size: var(--fontSize20);
}
.bod-small {
	font-size: var(--fontSize16);
	justify-content: center;
	align-items: center;
}
.card-text {
	flex-grow: 1;
}

.subtitle {
	font-size: 1.2rem;
	color: #7f8c8d;
	max-width: 600px;
	margin: 0 auto;
}

.management-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.executive-card {
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	margin-bottom: 50px;
}
.executive-card.last {
	margin-bottom: 0;
}

.executive-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-header {
	background: url('../images/container-bg.jpg') no-repeat;
	color: white;
	padding: 25px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.profile-img img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-color: #e12b2a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: #7f8c8d;
}

.executive-info h3 {
	font-size: 1.6rem;
	margin-bottom: 5px;
	color: var(--red);
}

.executive-info .title {
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 8px;
	color: var(--black);
}

.tenure {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	opacity: 0.8;
}

.card-content {
	padding: 25px;
	flex-grow: 1;
}

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

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

/* Financial */
.header-description {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 700px;
	margin: 40px auto 0;
	font-weight: 400;
}

/* Reports Layout */
.reports-container {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-bottom: 60px;
}

.year-section {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease forwards;
}

.year-section:nth-child(1) {
	animation-delay: 0.3s;
}
.year-section:nth-child(2) {
	animation-delay: 0.4s;
}
.year-section:nth-child(3) {
	animation-delay: 0.5s;
}

.year-header {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e2e8f0;
}

.year-badge {
	background: #ff0000;

	color: var(--white);
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 700;
	font-size: 1.1rem;
	margin-right: 20px;
	box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
}

h2.year-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0;
	text-align: left;
	position: relative;
	padding-bottom: 0;
}

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

.report-card {
	background: var(--white);
	border-radius: var(--red);
	box-shadow: var(--shadow);
	padding: 25px;
	transition: all 0.4s ease;
	border-left: 4px solid var(--accent);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.report-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
	border-left-color: var(--gold);
}

.report-period {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.report-period i {
	color: var(--accent);
}

.report-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 15px;
	line-height: 1.4;
}

.report-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.report-date {
	font-size: 0.9rem;
	color: var(--text-light);
}

.download-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fffd54;
	color: var(--accent);
	padding: 10px 18px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.download-btn:hover {
	background: var(--red);
	color: var(--white);
	transform: translateY(-2px);
}

/* Newsroom */
/* Dropdown Filter */
.filter-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s ease 0.4s forwards;
	z-index: 1;
	position: relative;
}

.section-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
}

.dropdown-container {
	position: relative;
	display: inline-block;
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--white);
	border: 1px solid #e2e8f0;
	padding: 12px 20px;
	border-radius: 10px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 180px;
	justify-content: space-between;
	box-shadow: var(--shadow);
}

.dropdown-toggle:hover {
	border-color: var(--accent-light);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-toggle i {
	color: var(--accent);
	transition: transform 0.3s ease;
}

.dropdown-toggle.active i {
	transform: rotate(180deg);
}
.dropdown-toggle::after {
	display: none;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	background: var(--white);
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	box-shadow: var(--shadow-hover);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	margin-top: 8px;
}

.dropdown-menu.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
	cursor: pointer;
	transition: all 0.2s ease;
	border-bottom: 1px solid #f1f5f9;
}

.dropdown-item:last-child {
	border-bottom: none;
}

.dropdown-item:hover {
	background: var(--light-bg);
	color: var(--accent);
}

.dropdown-item.active {
	background: var(--accent);
	color: var(--white);
}
.dropdown-item.active a {
	color: var(--white);
}

.year-count {
	background: var(--light-bg);
	color: var(--text-light);
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 600;
}

.dropdown-item.active .year-count {
	background: rgba(255, 255, 255, 0.2);
	color: var(--white);
}

/* Announcements Grid */
.news-content .attachment::before {
	display: inline-block;
	font: normal normal normal 14px/1 "Font Awesome 6 Pro";
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.news-content .attachment::before {
	vertical-align: -10%;
	font-size: 28px;
	display: inline-block;
	width: 1.07142857em;
	text-align: center;
	margin-right: 5px;
	font-weight: 900;
	content: "\f1c1";
	color: var(--red);
}
.news-content p.ex-url::before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.news-content p.ex-url::before {
	vertical-align: -20%;
	font-size: 28px;
	display: inline-block;
	width: 1.07142857em;
	text-align: center;
	margin-right: 25px;
	font-weight: 900;
	content: "\f0c1";
	color: var(--black);
}

.announcements-section {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease 0.6s forwards;
}

.announcements-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.announcement-card {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 25px;
	transition: all 0.4s ease;
	border-left: 4px solid #e12a2a;
	display: flex;
	gap: 20px;
}

.announcement-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
	border-left-color: var(--gold);
}

.date-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--light-bg);
	border-radius: 10px;
	padding: 15px;
	min-width: 80px;
	text-align: center;
	flex-shrink: 0;
}

.date-day {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
}

.date-month {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-light);
	text-transform: uppercase;
	margin-top: 4px;
}

.date-year {
	font-size: 0.7rem;
	color: var(--text-light);
	margin-top: 2px;
}

.announcement-content {
	flex: 1;
}

.announcement-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 10px;
	line-height: 1.4;
}

.announcement-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.announcement-category {
	background: var(--light-bg);
	color: var(--accent);
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--accent);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.read-more:hover {
	gap: 12px;
	color: var(--accent-light);
}

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

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

/* AR */
.header-description {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 700px;
	margin: 40px auto 0;
	font-weight: 400;
}

/* Featured Report */
.featured-report {
	background: url('../images/container-bg.jpg') no-repeat;
	border-radius: var(--border-radius);
	padding: 50px;
	margin-bottom: 50px;
	box-shadow: var(--shadow-hover);
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* .featured-report:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	border-radius: 50%;
	transform: translate(30%, -30%);
} */

.featured-title {
	font-size: var(--fontSize28);
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.3;
	color: var(--red);
}
.btn-download a {
	display: inline-block;
	background: var(--red);
	padding: 5px 25px;
	border-radius: 20px;
	color: var(--white);
	margin-top: 10px;
}
.btn-download a:hover {
	background: var(--redHover);
}
.btn-download a i {
	color: var(--white);
}

.featured-meta {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 0;
	flex-wrap: wrap;
}

.download-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--primary);
	padding: 14px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(255, 253, 84, 0.3);
}

.file-size {
	align-items: center;
	gap: 10px;
	font-size: 1rem;
	opacity: 0.9;
}

.file-size i {
	color: var(--gold);
}

/* Reports Grid */
.reports-section {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease 0.6s forwards;
}

.section-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--accent);
	border-radius: 2px;
}

.reports-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}

.report-card {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 30px;
	transition: all 0.4s ease;
	border-left: 4px solid var(--red);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.report-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
	border-left-color: var(--gold);
}

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

.report-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary);
	line-height: 1.4;
	flex: 1;
}

.report-type {
	background: var(--light-bg);
	color: var(--accent);
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-left: 15px;
}

.report-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.file-info {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: var(--text-light);
}

.file-info i {
	color: var(--accent);
}

.card-download {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--light-bg);
	color: var(--accent);
	padding: 10px 18px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.card-download:hover {
	background: var(--accent);
	color: var(--white);
	transform: translateY(-2px);
}

/* IPO Section */
.ipo-section {
	margin-top: 60px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease 0.8s forwards;
}

.ipo-card {
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
	border-radius: var(--border-radius);
	padding: 40px;
	color: var(--white);
	box-shadow: var(--shadow-hover);
}

.ipo-badge {
	display: inline-block;
	background: var(--gold);
	color: var(--primary);
	padding: 8px 20px;
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.9rem;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ipo-content {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 30px;
	align-items: center;
}

.ipo-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.ipo-description {
	opacity: 0.9;
	line-height: 1.6;
}

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

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

/* Email */
.content-email {
	margin: 0 auto;
	max-width: 600px;
}

/* Hero Slides */
.main-ir {
	background: url('../images/news-bg.jpg') no-repeat center center;
}
.ir-content {
	background: var(--white);
	padding: 35px;
	border-radius: 30px;
	max-width: 1000px;
	border-top: 5px solid var(--red);
	margin: 0 auto;
	margin-top: -100px;
	position: relative;
	z-index: 10;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
h1.main {
	font-size: var(--fontSize24);
	color: var(--red);
	padding: 0 10px 0 0;
}
h1.main span {
	color: var(--black);
	display: block;
}

.home-news h1 {
	font-size: var(--fontSize22);
	font-weight: var(--font600);
	color: var(--black);
}
.home-news ul {
	margin: 0;
	padding: 0;
}
.home-news ul li {
	list-style: none;
	border-bottom: 1px solid #dadada;
	padding: 20px 0;
}
.home-news ul li .date {
	color: #969696;
}
.home-news ul li a {
	color: #3467e6;
}
.home-news ul li i,
.all-news i,
.home-circular i,
a.subscription-link i {
	vertical-align: middle;
}
.slider-news .slick-dots {
	bottom: -62px;
	text-align: right;
}
.slider-news .slick-dots li {
	border-bottom: 0;
}
.slider-news .slick-dots li button:before {
	content: '_';
	font-size: 48px;
	color: #adadad;
}
.slick-dots li.slick-active button:before {
	opacity: .75;
	color: #cc1d3a;
}
.all-news a {
	border-radius: 20px;
	background: var(--red);
	padding: 8px 25px;
	color: var(--white);
	display: inline-block;
}
a.subscription-link {
	border-radius: 20px;
	background: var(--white);
	padding: 8px 25px;
	color: var(--black);
	display: inline-block;
}
.home-circular {
	background: url('../images/circular.jpg') no-repeat;
	border-radius: 8px;
	padding: 20px;
	width: auto;
	background-size: contain;
	height: 365px;
}
.home-circular h1 {
	font-size: var(--fontSize22);
	font-weight: var(--font600);
	color: var(--black);
}
.home-circular a {
	color: #3467e6;
}
.home-email-content {
	background: url('../images/email-alert-bg.jpg') no-repeat center center;
	min-height: 317px;
	padding: 150px 0 50px 0;
	color: var(--white);
}
.home-email-content h1 {
	font-size: var(--fontSize22);
	font-weight: var(--font600);
	color: var(--white);
}

/*Email */
.btn-submit {
	display: inline-block;
	background: var(--red);
	padding: 5px 25px;
	border-radius: 20px;
	color: var(--white);
	margin-top: 10px;
}
.btn-submit:hover {
	background: var(--redHover);
}

h2.news-date {
	font-size: var(--fontSize20);
	color: var(--black);
	font-weight: var(--font600);
	color: var(--black);
	margin-bottom: 15px;
}
h3.news-title {
	font-size: var(--fontSize20);
	color: var(--black);
}
.btn-newsroom {
	position: absolute;
	right: 15px;
}
.btn-newsroom a {
	color: var(--red);
}
.btn-newsroom a:hover {
	color: var(--redHover);
}

/* Contact us */
.contact-us {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	background: var(--white);
	border-radius: 10px;
	padding: 40px;
	max-width: 1200px;
	margin: 0 auto;
}
.hq-content {
	width: 100%;
}
.hq-content tr td {
	vertical-align: top;
}
.hq-content tr td:first-child {
	width: 60px;
}
.hq-content h1 {
	font-size: var(--fontSize18);
	color: var(--red);
	font-weight: var(--font600);
}
.contact-img {
	width: 50px;
	height: 50px;
	background: #ffdeda;
	text-align: center;
}
.contact-img img {
	text-align: center;
	margin: 0 auto;
	padding: 12px 0 10px 0;
}
.contact-line {
	border-bottom: 1px solid #ccc;
	clear: both;
	width: 100%;
	padding: 20px 0 0 0;
	margin-bottom: 40px;
}
.hq-content a {
	color: var(--red);
	font-size: var(--fontSize14);
}
.divider-overview {
	border-bottom: 1px solid #ccc;
}
.contact-inner {
	font-size: var(--fontSize16);
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 1200px) {
}
@media (max-width: 1199px) {
}

@media (max-width: 1024px) {
	.subsidiaries {
		gap: 30px;
	}

	.company-card {
		width: 220px;
	}

	.company-card.holding {
		width: 260px;
	}
}

@media (max-width: 991px) {
	.subsidiaries {
		gap: 25px;
	}

	.company-card {
		width: 200px;
	}

	.company-card.holding {
		width: 240px;
	}
}

@media only screen and (max-width: 959px) {
}

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

	.banner-subtitle {
		font-size: 1.2rem;
	}

	.banner-container {
		height: 50vh;
	}
	.org-chart {
		gap: 60px;
	}

	.level {
		margin-bottom: 60px !important;
	}

	.subsidiaries {
		flex-direction: column;
		gap: 60px;
		width: 100%;
	}

	/* Hide desktop connectors on mobile */
	.horizontal-connector-3,
	.subsidiary-connector {
		display: none;
	}

	/* Create mobile-friendly vertical connectors */
	.subsidiary-group {
		position: relative;
		width: 100%;
	}

	/* Add vertical connectors between stacked subsidiaries */
	.subsidiary-group:not(:last-child)::after {
		content: '';
		position: absolute;
		bottom: -40px;
		left: 50%;
		transform: translateX(-50%);
		width: 2px;
		height: 40px;
		background: linear-gradient(to bottom, #2a4a8c, #3a6acc);
		z-index: 1;
	}

	.company-card {
		width: 280px;
		margin: 0 auto;
	}

	.company-card.holding {
		width: 300px;
	}

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

	.card-header {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	h1 {
		font-size: 2.5rem;
	}

	.profile-img {
		width: 120px;
		height: 120px;
		font-size: 2.5rem;
	}
	.reports-grid {
		grid-template-columns: 1fr;
	}

	.year-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.year-badge {
		margin-right: 0;
	}
	.filter-section {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.dropdown-container {
		width: 100%;
	}

	.dropdown-toggle {
		width: 100%;
	}

	.announcement-card {
		flex-direction: column;
		gap: 15px;
	}

	.date-badge {
		flex-direction: row;
		justify-content: flex-start;
		gap: 15px;
		min-width: auto;
	}

	.featured-report {
		padding: 30px;
	}

	.featured-title {
		font-size: 1.8rem;
	}

	.featured-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

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

	.ipo-content {
		grid-template-columns: 1fr;
		gap: 20px;
		text-align: center;
	}

	.report-header {
		flex-direction: column;
		gap: 10px;
	}

	.report-type {
		align-self: flex-start;
		margin-left: 0;
	}

	.content-section {
		flex-direction: column;
	}

	.hero-slider,
	.hero-slide {
		height: 400px;
	}

	.hero-content h1 {
		font-size: 28px;
	}

	.hero-content p {
		font-size: 16px;
	}
}

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

/* Medium mobile devices */
@media (max-width: 576px) {
}

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

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

	.banner-container {
		height: 40vh;
	}
}

@media (max-width: 375px) {
	.company-card {
		width: 220px;
	}

	.company-card.holding {
		width: 240px;
	}

	.company-name {
		font-size: 15px;
	}

	.company-desc {
		font-size: 12px;
	}

	.service-tag {
		font-size: 11px;
	}
}
