@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: #db261d;
	--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: 16px;
	width: 100%;
	font-weight: 400;
	color: var(--primary);
}
body {
	overflow-x: hidden;
}

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

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

img,
video {
	display: inline-block;
	max-width: 100%;
	height: auto;
}
.title-one {
	font-size: var(--fontSize24);
	color: var(--red);
}
/* Banner Container */
.hero-banner {
	width: 100%;
	min-height: 523px;
	margin-top: 104px;
	display: flex;
	align-items: center;
	justify-content: flex-start; /* align left */

	text-align: left;
	color: #fff;
	overflow: hidden;

	/* background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
		url('https://skylink-ir.com/frontend/web/images/sub-banner-results.jpg'); */
	background: url(../images/sub-banner-overview.jpg) no-repeat center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.hero-banner.about {
	background: url(../images/sub-banner-overview.jpg) no-repeat center center;
}

.btn-newsroom {
	position: absolute;
	right: 15px;
}
.btn-newsroom a {
	color: var(--blue);
}
.btn-newsroom a:hover {
	color: var(--blueHover);
}
.news-date {
	font-size: var(--fontSize24);
	color: var(--red);
}

/* Financial */
.table-fin .fa {
	color: var(--red);
}
.table-fin {
	width: 100%;
}
.table-fin tr th {
	background: var(--red);
	padding: 10px;
	color: var(--white);
}
.table-fin tr td {
	padding: 10px;
	border-bottom: 1px solid #b2b2b2;
}
.table-fin tr td:first-child {
	width: 80%;
}
/* Mobile Cropping – Top Focus */
@media (max-width: 576px) {
	.hero-banner {
		height: 38vh;
		min-height: 240px;
		background-position: center top; /* Crop from top for mobile */
	}
}

.hero-inner {
	max-width: 1100px;
	padding: 20px;
}

.kicker {
	font-size: 18px;
	letter-spacing: 1px;
	opacity: 0.9;
	font-weight: var(--font600);
}

.headline {
	font-size: clamp(28px, 6vw, 48px);
	font-weight: 500;
	line-height: 1.05;
	margin: 0;
	/* text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45); */
}

/* Decorative underline */
/* .headline::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	margin: 18px auto 0;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 2px;
} */

/* Fade-in Animation */
.fade-in {
	opacity: 0;
	transform: translateY(25px);
	animation: fadeInUp 1.1s ease-out forwards;
}

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

.featured-report {
	padding: 50px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease 0.4s forwards;
}
.featured-report img {
	max-width: 280px;
}
.featured-title {
	font-size: var(--fontSize24);
	color: var(--red);
}
.featured-meta {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 0;
	flex-wrap: wrap;
}
.btn-download a,
.btn-submit {
	display: inline-block;
	background: var(--red);
	padding: 5px 25px;
	border-radius: 5px;
	color: var(--white);
	margin-top: 10px;
}
.btn-download a:hover,
.btn-submit:hover {
	background: var(--redHover);
}
.btn-submit i {
	padding-left: 8px;
}
.btn-download a i {
	color: var(--white);
	padding-left: 8px;
}
.footer-main {
	background: #f5f5f5;
}
footer {
	background: var(--white);
}
.footer-tel {
	display: flex;
}
.footer-tel li {
	display: flex;
	padding: 10px;
}
.footer-tel li a {
	font-size: var(--fontSize14);
}
.footer-tel li:first-child {
	padding-left: 0;
}
.address {
	margin-top: 20px;
}
.footer-m {
	padding: 0;
}
.footer-menu {
	margin: 0;
	padding: 0;
}
.footer-menu li a {
	font-weight: var(--font600);
}
.footer-menu li {
	padding: 10px 0;
}
.footer-bottom {
	color: #858585;
	font-size: var(--fontSize14);
}
.policy {
	margin: 0;
	padding: 0;
	float: right;
}
.policy li {
	float: left;
}
.policy li a {
	padding: 0 10px;
	color: #858585;
	font-size: var(--fontSize14);
}

/* 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;
	cursor: pointer;
	transition: all 0.2s ease;
	border-bottom: 1px solid #f1f5f9;
	padding: 0;
}
.dropdown-item a {
	display: block;
	cursor: pointer;
	padding: 12px 20px;
	width: 100%;
}

.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 {
	padding: 25px;
	transition: all 0.4s ease;
	display: flex;
	gap: 20px;
}

.announcement-card:hover {
	transform: translateY(-5px);
}

.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;
	}
}

.home-ir {
	background: url('../images/about-us-bg.jpg') no-repeat center center;
}
.home-ir h1 {
	color: var(--red);
	font-size: var(--fontSize36);
	font-weight: var(--font600);
}
.welcome {
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: var(--fontSize20);
	font-weight: var(--font600);
}
._divider-black {
	border-bottom: 1px solid #000;
	margin-bottom: 30px;
	padding-top: 30px;
}
.home-ir-inner {
	max-width: 700px;
	margin: 0 auto;
}
.home-news-content {
	background: url('../images/news-bg.jpg') no-repeat center center;
}
.home-ar {
	background: url('../images/ar-bg.jpg') no-repeat;
	background-size: cover;
	padding: 20px 0;
}
.home-ar .inner {
	padding: 20px;
	border: 1px solid #000;
	border-radius: 5px;
	margin: 0 20px;
}
.home-ar .inner h1 {
	font-size: var(--fontSize24);
	font-weight: var(--font600);
	padding: 10px 0;
}
.home-ar .inner a {
	font-size: var(--fontSize16);
	font-weight: var(--font600);
}

.news-section {
	max-width: 1100px;
	margin: 20px auto;
	padding: 0 20px;
	color: white;
}

.news-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news-header h2 {
	font-size: var(--fontSize30);
	margin-bottom: 5px;
	font-weight: var(--font600);
	padding-bottom: 5px;
}

.news-header .line {
	width: 80px;
	height: 2px;
	background: #ffdddd;
	margin-top: -10px;
	margin-bottom: 25px;
}

.view-all-btn {
	background: var(--black);
	color: var(--white);
	padding: 12px 28px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 2px;
	display: inline-flex;
	align-items: center;
	font-size: var(--fontSize16);
	gap: 10px;
}

.view-all-btn:hover {
	opacity: 0.8;
}

.news-card {
	display: flex;
	background: white;
	border-radius: 30px;
	margin-bottom: 22px;
	overflow: hidden;
}

.date-box {
	background: #000;
	color: white;
	width: 120px;
	padding: 25px 0;
	text-align: center;
	flex-shrink: 0;
}

.date-box .day {
	font-size: 30px;
	font-weight: bold;
	line-height: 1;
}

.date-box .month-year {
	font-size: 16px;
	margin-top: 5px;
}

.news-content {
	padding: 25px 30px;
	color: #333;
	font-size: 18px;
	line-height: 1.5;
}
.home-email-wrap {
	background: url('../images/email-alert-bg.jpg') no-repeat center center;
}
/* Background Section */
.email-alert-section {
	position: relative;
	width: 100%;
	height: 450px;

	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 80px;
}

/* Floating Glass Box */
.email-box {
	width: 420px;
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.email-box h2 {
	color: var(--red);
	font-size: 24px;
	margin: 0 0 10px;
	font-weight: 700;
}

.email-box p {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 25px;
}

/* Subscribe Button */
.email-btn {
	background: #000;
	color: #fff;
	padding: 12px 28px;
	font-size: 16px;
	font-weight: bold;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.email-btn:hover {
	background: #d64237;
	color: #fff;
}

.email-btn span {
	font-size: 18px;
	font-weight: bold;
}
.sub {
	background: url('../images/about-us-bg.jpg') no-repeat center center;
	background-size: cover;
}
.top-content h1 {
	color: var(--red);
	font-size: var(--fontSize36);
	font-weight: var(--font600);
}
.sub-title {
	padding: 20px 0 10px 0;
	font-size: var(--fontSize16);
	font-weight: var(--font600);
}
._sub-divider-black {
	border-bottom: 1px solid #000;
	margin-bottom: 30px;
	padding-top: 30px;
}
.top-content-inner {
	max-width: 800px;
	margin: 0 auto;
}
.page-wrapper {
	max-width: 100%;
	margin: 0 auto;
	padding: 60px 0;
}

.content-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	align-items: start;
}

/* TEXT CONTENT */
.text-content p {
	font-size: 15px;
	line-height: 1.75;
	margin: 0 0 22px;
	text-align: justify;
}

/* IMAGE SECTION */
.image-wrapper {
	position: relative;
	padding: 18px;
}

/* dashed red outline */
.image-wrapper::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px dashed var(--accent-red);
	border-radius: 0 220px 0 0;
	pointer-events: none;
}

/* image container */
.image-box {
	overflow: hidden;
}

.image-box img {
	width: 100%;
	height: auto;
	display: block;
}

/*corporate  */
/* OUTER WRAPPER */
.card-wrapper {
	position: relative;
	width: 420px;
	margin: 0 auto;
	padding: 18px;
}

/* DASHED BORDER */
.card-wrapper::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px dashed #ff6b6b;
	border-radius: 0 0 260px 0;
	pointer-events: none;
}

/* RED CONTAINER */
.red-card {
	position: relative;
	background: var(--red);
	border-radius: 0 0 240px 0;
	padding: 40px 28px 36px;
	min-height: 640px;
	display: flex;
	flex-direction: column;
}

/* DOCUMENT PREVIEW */
.doc-preview {
	background: var(--white);
	padding: 22px 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	margin-bottom: auto;
}

.doc-preview h4 {
	font-size: 12px;
	letter-spacing: 0.5px;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.doc-preview p {
	font-size: 10px;
	line-height: 1.5;
	margin: 0 0 8px;
	color: #444;
}
/* CTA SECTION */
.cta {
	margin-top: 40px;
	color: var(--white);
}

.cta-text {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 14px;
}

/* ARROW BUTTON */
.cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--white);
	color: var(--red);
	font-size: 18px;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.cta-btn:hover {
	transform: translateX(4px);
}

/* BOD */
/* PAGE WRAPPER */
.page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 40px;

	background-size: 600px 600px;
}

/* ACCORDION ITEM */
.accordion-item {
	border-bottom: 1px solid var(--red);
	padding: 26px 0;
}

/* HEADER */
.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.accordion-title {
	font-size: 22px;
	font-weight: 600;
}

.accordion-subtitle {
	font-size: 15px;
	color: var(--text-light);
	margin-top: 6px;
}
.bod-list {
	list-style-type: disc;
	padding-left: 25px;
}
.bod-list li {
	list-style-type: disc;
}

/* ICON */
.accordion-icon {
	font-size: 26px;
	color: var(--red);
	width: 30px;
	text-align: center;
	line-height: 1;
}

/* CONTENT */
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.accordion-content-inner {
	padding-top: 24px;
	font-size: 15px;
	line-height: 1.7;
	color: #222;
}

/* ACTIVE STATE */
.accordion-item.active .accordion-content {
	max-height: 2000px;
}

.accordion-item.active .accordion-icon {
	transform: rotate(180deg);
}

/* SECTIONS IN CONTENT */
.content-section {
	margin-bottom: 22px;
}

.content-section strong {
	display: block;
	margin-bottom: 6px;
}

/* Contact*/
.contact-wrap {
	background: var(--red);
	padding: 25px;
	border-radius: 5px;
	color: var(--white);
	z-index: 0;
	position: relative;
}
.contact-wrap h2 {
	font-size: var(--fontSize36);
	font-weight: var(--font500);
}
._divider-white {
	border-top: 1px solid var(--white);
	padding-top: 25px;
	margin-top: 20px;
}
.contact-wrap a {
	color: var(--white);
}
#map {
	height: 242px;
}
.leaflet-control-attribution a {
	font-size: var(--fontSize12);
	color: var(--black);
}

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

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

@media (max-width: 991px) {
	.footer-tel {
		display: block;
	}
	.footer-tel li:nth-child(2) {
		display: none;
	}
	.footer-tel li:last-child {
		padding-left: 0;
	}
	.content-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.image-wrapper::before,
	.image-box {
		border-radius: 0 140px 0 0;
	}
	.news-section .news-card:nth-of-type(2),
	.news-section .news-card:nth-of-type(3) {
		display: none;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.news-card {
		flex-direction: column;
	}

	.date-box {
		width: 100%;
		padding: 15px 0;
	}

	.news-content {
		padding: 20px;
	}
	.email-alert-section {
		height: auto;
		padding: 40px 20px;
		justify-content: center;
	}

	.email-box {
		width: 90%;
	}
	.news-list .news-card:nth-child(n + 2) {
		display: none;
	}
	.page {
		padding: 40px 20px;
	}

	.accordion-title {
		font-size: 18px;
	}
}
@media (max-width: 767px) {
	.col-md-6.float-right {
		float: left !important;
	}
	.policy li:first-child a {
		padding-left: 0;
	}
	.policy {
		float: left;
	}
}

/* Medium mobile devices */
@media (max-width: 576px) {
	.page-wrapper {
		padding: 40px 0;
	}
	.card-wrapper {
		width: 100%;
	}
	.image-wrapper {
		padding: 0;
	}

	.image-wrapper::before,
	.image-box {
		border-radius: 0 100px 0 0;
	}
}

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

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