/**
 * GK Results Pro - Core Premium Stylesheet
 */

:root {
	--theme-color: #00246b;
	--primary-blue: #00246b;
	--dark-bg: #0c1527;
	--light-gray: #f8f9fa;
	--border-color: #e2e8f0;
	--text-main: #333333;
	--text-muted: #64748b;
	--success-color: #128c7e;
	--telegram-color: #0088cc;
	--whatsapp-color: #25d366;
	--alert-red: #d62222;
	--pulse-color: #e53e3e;
}

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

body {
	font-family: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--text-main);
	background-color: #f0f2f5;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--theme-color);
	text-decoration: none;
	transition: color 0.15s ease;
}

a:hover {
	color: #0040a8;
}

/* Site Layout Wrapper */
.gk-site-container {
	max-width: 1200px;
	margin: 0 auto;
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

/* ==========================================
   HEADER SECTION
   ========================================== */

/* Top bar details */
.gk-header-top-bar {
	background-color: var(--primary-blue);
	color: #ffffff;
	padding: 8px 20px;
	font-size: 13px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
}

.gk-top-bar-left {
	display: flex;
	align-items: center;
	gap: 15px;
}

.gk-top-bar-right {
	display: flex;
	gap: 12px;
	align-items: center;
}

.gk-top-bar-right a {
	color: #ffffff;
	font-size: 14px;
	opacity: 0.85;
	transition: opacity 0.15s ease;
}

.gk-top-bar-right a:hover {
	opacity: 1;
}

/* Branding Core Wrap */
.gk-header-branding-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: #ffffff;
	border-bottom: 1px solid var(--border-color);
	flex-wrap: wrap;
	gap: 15px;
}

.gk-branding-logo-box {
	display: flex;
	align-items: center;
	gap: 15px;
}

.gk-branding-logo-box img {
	max-height: 70px;
	width: auto;
}

.gk-branding-text {
	display: flex;
	flex-direction: column;
}

.gk-branding-text h1, 
.gk-branding-text p.site-title {
	font-size: 32px;
	font-weight: 800;
	color: var(--alert-red);
	line-height: 1.1;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: -0.5px;
}

.gk-branding-text p.site-title a {
	color: var(--alert-red);
}

.gk-branding-text p.site-tagline {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 500;
	margin-top: 3px;
}

/* Header Buttons Group */
.gk-header-action-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gk-action-btn-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 6px;
	color: #ffffff;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	min-width: 220px;
}

.gk-action-btn-link:hover {
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gk-action-btn-link.whatsapp {
	background-color: var(--success-color);
}

.gk-action-btn-link.telegram {
	background-color: var(--telegram-color);
}

/* Search Box Box */
.gk-header-search-box {
	position: relative;
	width: 280px;
}

.gk-header-search-box input[type="search"] {
	width: 100%;
	padding: 12px 45px 12px 15px;
	border: 2px solid var(--primary-blue);
	border-radius: 6px;
	font-size: 14px;
	outline: none;
	font-weight: 500;
}

.gk-header-search-box button {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--primary-blue);
	color: #ffffff;
	border: none;
	padding: 8px 12px;
	border-radius: 4px;
	cursor: pointer;
}

/* Search Dropdown suggest list */
.gk-live-search-results {
	position: absolute;
	left: 0;
	right: 0;
	top: 105%;
	background: #ffffff;
	border: 1px solid var(--border-color);
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
	border-radius: 6px;
	z-index: 1000;
	max-height: 400px;
	overflow-y: auto;
}

.gk-search-suggestion-item {
	display: block;
	padding: 10px 15px;
	border-bottom: 1px solid var(--border-color);
	transition: background 0.1s ease;
}

.gk-search-suggestion-item:last-child {
	border-bottom: none;
}

.gk-search-suggestion-item:hover {
	background-color: #f1f5f9;
}

.gk-suggest-meta {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.gk-suggest-cat {
	color: var(--theme-color);
}

.gk-search-badge.urgent {
	background: var(--alert-red);
	color: #ffffff;
	padding: 1px 4px;
	border-radius: 3px;
}

.gk-suggest-title {
	font-size: 13px;
	font-weight: 600;
	color: #222;
}

.gk-search-no-result {
	padding: 15px;
	color: var(--text-muted);
	font-size: 13px;
	text-align: center;
}

/* ==========================================
   PRIMARY NAVIGATION MENU
   ========================================== */
.gk-primary-navbar {
	background-color: var(--primary-blue);
	border-top: 1px solid rgba(255,255,255,0.1);
}

.gk-primary-navbar ul.menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.gk-primary-navbar ul.menu li {
	position: relative;
}

.gk-primary-navbar ul.menu li a {
	display: block;
	padding: 14px 20px;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	border-right: 1px solid rgba(255,255,255,0.08);
	transition: background-color 0.15s ease;
}

.gk-primary-navbar ul.menu li a:hover {
	background-color: rgba(255,255,255,0.12);
}

/* Home Icon styling */
.gk-primary-navbar ul.menu li.home-menu-icon a {
	background-color: var(--alert-red);
}

.gk-primary-navbar ul.menu li.home-menu-icon a:hover {
	background-color: #b71c1c;
}

/* ==========================================
   STRIPS & ANNOUNCEMENT BAR
   ========================================== */

/* News Scrolling Marquee */
.gk-news-marquee-strip {
	display: flex;
	background: #ffffff;
	border-bottom: 2px solid var(--border-color);
	align-items: stretch;
	overflow: hidden;
}

.gk-marquee-title-badge {
	background-color: var(--alert-red);
	color: #ffffff;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 13px;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	z-index: 10;
	white-space: nowrap;
	box-shadow: 5px 0 10px rgba(0,0,0,0.1);
}

.gk-marquee-scroll-container {
	flex: 1;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.gk-marquee-scroll {
	display: inline-block;
	white-space: nowrap;
	padding-left: 100%;
	animation: gk-marquee-slide 35s linear infinite;
	font-weight: 600;
	font-size: 14px;
	color: #222;
}

.gk-marquee-scroll a {
	color: #222;
	margin-right: 40px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.gk-marquee-scroll a:hover {
	color: var(--theme-color);
}

@keyframes gk-marquee-slide {
	0% { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(-100%, 0, 0); }
}

/* Blinking New Badge */
.gk-badge-new-blink {
	background-color: var(--alert-red);
	color: #ffffff;
	font-size: 9px;
	padding: 2px 5px;
	border-radius: 3px;
	font-weight: 800;
	animation: gk-blink 1s ease infinite;
	text-transform: uppercase;
}

@keyframes gk-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

/* Announcement strip display block */
.gk-live-badge-strip {
	background: #ffe359;
	color: #000;
	font-size: 14px;
	padding: 10px 20px;
	font-weight: 700;
	text-align: center;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.gk-live-badge-tag {
	background-color: var(--alert-red);
	color: #ffffff;
	font-size: 11px;
	padding: 3px 8px;
	border-radius: 3px;
	animation: gk-blink 1.2s infinite;
}

.gk-live-badge-strip a {
	color: #000;
	text-decoration: underline;
}

/* ==========================================
   SHORTCUTS BUTTONS GRID
   ========================================== */
.gk-shortcuts-grid-wrap {
	padding: 20px;
	background: #ffffff;
}

.gk-shortcuts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 12px;
}

.gk-shortcut-box-card {
	padding: 15px;
	border-radius: 6px;
	color: #ffffff;
	font-weight: 700;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	position: relative;
	overflow: hidden;
}

.gk-shortcut-box-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	color: #ffffff;
}

.gk-shortcut-box-card i {
	font-size: 22px;
	margin-bottom: 8px;
	opacity: 0.9;
}

.gk-shortcut-card-title {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.gk-shortcut-card-count {
	font-size: 11px;
	opacity: 0.85;
	margin-top: 4px;
	font-weight: 500;
}

/* ==========================================
   HOMEPAGE JOB COLUMNS GRIDS
   ========================================== */
.gk-homepage-jobs-section {
	padding: 0 20px 20px 20px;
	background: #ffffff;
}

.gk-jobs-columns-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gk-jobs-column-card {
	border: 1px solid var(--border-color);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.02);
	background: #ffffff;
	display: flex;
	flex-direction: column;
}

.gk-jobs-column-card.latest-jobs-col { --col-color: var(--alert-red); }
.gk-jobs-column-card.results-col { --col-color: var(--primary-blue); }
.gk-jobs-column-card.admit-card-col { --col-color: #2a9d8f; }
.gk-jobs-column-card.answer-key-col { --col-color: #6a0dad; }
.gk-jobs-column-card.upcoming-col { --col-color: #006400; }
.gk-jobs-column-card.last-date-col { --col-color: #d94819; }

.gk-column-header-box {
	background-color: var(--col-color, var(--primary-blue));
	color: #ffffff;
	padding: 12px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gk-column-header-box h2 {
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0;
}

.gk-column-header-box a.view-all-link {
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	text-decoration: underline;
	opacity: 0.9;
}

.gk-column-header-box a.view-all-link:hover {
	opacity: 1;
}

/* List Item links inside column boxes */
.gk-column-list-feed {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}

.gk-column-list-feed li {
	border-bottom: 1px solid var(--border-color);
	font-size: 13.5px;
}

.gk-column-list-feed li:last-child {
	border-bottom: none;
}

.gk-column-list-feed li a {
	display: flex;
	padding: 12px 15px;
	color: #333333;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
	transition: background 0.1s ease;
}

.gk-column-list-feed li a:hover {
	background-color: #f8fafc;
	color: var(--theme-color);
}

.gk-job-title-text-wrap {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.gk-job-link-title-inner {
	font-weight: 600;
	line-height: 1.3;
}

.gk-job-post-date {
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 500;
	white-space: nowrap;
}

/* Special styling for calendar updates grid (Upcoming Jobs) */
.gk-upcoming-date-badge {
	background: #f1f5f9;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	padding: 2px 8px;
	text-align: center;
	min-width: 60px;
}

.gk-upcoming-date-badge span.day {
	display: block;
	font-size: 13px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.1;
}

.gk-upcoming-date-badge span.month {
	display: block;
	font-size: 9px;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
}

/* Special styling for countdown alerts (Last Date Near) */
.gk-days-left-badge-tag {
	background: #ffe2e2;
	color: var(--alert-red);
	border: 1px solid #ffa4a4;
	font-size: 11px;
	font-weight: 800;
	padding: 3px 6px;
	border-radius: 4px;
	white-space: nowrap;
}

/* ==========================================
   ICONS CATEGORY ROW
   ========================================== */
.gk-categories-icon-section {
	padding: 10px 20px;
	background: #ffffff;
}

.gk-categories-icon-row-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	gap: 10px;
	border: 1px solid var(--border-color);
	padding: 15px;
	border-radius: 6px;
	background: var(--light-gray);
}

.gk-category-icon-btn-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	text-align: center;
	transition: all 0.15s ease;
}

.gk-category-icon-btn-card:hover {
	transform: translateY(-1px);
	border-color: var(--theme-color);
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.gk-category-icon-btn-card i {
	font-size: 20px;
	color: var(--theme-color);
	margin-bottom: 6px;
}

.gk-category-icon-btn-card span {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #333;
}

/* ==========================================
   EXAMS BUTTONS GRID
   ========================================== */
.gk-exams-grid-section {
	padding: 20px;
	background: #ffffff;
}

.gk-exams-grid-section h3.section-header-title {
	background-color: var(--alert-red);
	color: #ffffff;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
	border-radius: 4px;
	margin-bottom: 15px;
}

.gk-exams-buttons-grid-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 8px;
}

.gk-exam-btn-link-card {
	display: block;
	text-align: center;
	padding: 8px;
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	color: #333333;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.gk-exam-btn-link-card:hover {
	background-color: var(--primary-blue);
	color: #ffffff;
	border-color: var(--primary-blue);
}

.gk-exam-btn-link-card.view-all {
	background-color: var(--light-gray);
}

.gk-exam-btn-link-card.view-all:hover {
	background-color: #eaeaea;
	color: #333;
	border-color: #cbd5e1;
}

/* ==========================================
   INFO BADGES STRIP (Authentic, Fast Update)
   ========================================== */
.gk-info-badges-row-section {
	padding: 10px 20px 25px 20px;
	background: #ffffff;
}

.gk-info-badges-grid-wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.gk-info-badge-item-card {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	background: var(--light-gray);
}

.gk-badge-icon-wrap {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #ffe3e3;
	color: var(--alert-red);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.gk-info-badge-item-card:nth-child(2) .gk-badge-icon-wrap { background: #e3f9e5; color: #2e7d32; }
.gk-info-badge-item-card:nth-child(3) .gk-badge-icon-wrap { background: #e3f2fd; color: #1565c0; }
.gk-info-badge-item-card:nth-child(4) .gk-badge-icon-wrap { background: #fff8e1; color: #ff8f00; }

.gk-badge-text-box h4 {
	font-size: 13.5px;
	font-weight: 700;
	color: #111;
}

.gk-badge-text-box p {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 2px;
}

/* ==========================================
   HOMEPAGE DESCRIPTION & ACCORDION FAQS
   ========================================== */
.gk-homepage-desc-section {
	padding: 25px 20px;
	background: var(--light-gray);
	border-top: 1px solid var(--border-color);
}

.gk-home-desc-editor-content {
	font-size: 13.5px;
	color: #475569;
	line-height: 1.7;
	margin-bottom: 25px;
}

.gk-home-desc-editor-content h2, 
.gk-home-desc-editor-content h3 {
	color: #0f172a;
	margin-bottom: 10px;
}

.gk-home-desc-editor-content p {
	margin-bottom: 12px;
}

/* FAQs accordions blocks */
.gk-faqs-container {
	margin-top: 25px;
}

.gk-faq-section-title {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.gk-faq-accordion-item {
	border: 1px solid var(--border-color);
	border-radius: 6px;
	margin-bottom: 10px;
	background: #ffffff;
	overflow: hidden;
}

.gk-faq-acc-title {
	width: 100%;
	text-align: left;
	padding: 15px 20px;
	background: #ffffff;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.15s ease;
}

.gk-faq-acc-title:hover {
	background-color: #f8fafc;
}

.gk-faq-acc-title.active {
	background-color: #f1f5f9;
	border-bottom: 1px solid var(--border-color);
}

.gk-faq-acc-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	background: #ffffff;
	padding: 0 20px;
}

.gk-faq-acc-panel p {
	font-size: 13px;
	color: #475569;
	line-height: 1.6;
}

/* ==========================================
   BREADCRUMBS NAVIGATION
   ========================================== */
.gk-breadcrumbs-nav {
	padding: 12px 20px;
	background: var(--light-gray);
	border-bottom: 1px solid var(--border-color);
	font-size: 12.5px;
	font-weight: 500;
	color: var(--text-muted);
}

.gk-breadcrumbs-nav a {
	color: var(--text-muted);
}

.gk-breadcrumbs-nav a:hover {
	color: var(--theme-color);
}

.gk-breadcrumbs-nav i.separator {
	font-size: 10px;
	margin: 0 6px;
	opacity: 0.6;
}

.gk-breadcrumbs-nav span.active-item {
	color: #0f172a;
	font-weight: 600;
}

/* ==========================================
   SINGLE JOB PAGE COMPILED TABLE
   ========================================== */
.gk-job-details-container {
	padding: 25px 20px;
	background: #ffffff;
}

.gk-job-table-wrapper {
	width: 100%;
	overflow-x: auto;
	margin-bottom: 25px;
}

.gk-info-main-table {
	width: 100%;
	border-collapse: collapse;
	border: 3px solid var(--highlight-color, var(--primary-blue));
	font-size: 14px;
}

.gk-info-main-table th, 
.gk-info-main-table td {
	border: 1px solid var(--highlight-color, var(--primary-blue));
	padding: 12px;
	text-align: left;
}

.gk-table-header-main {
	background-color: var(--highlight-color, var(--primary-blue));
	color: #ffffff;
	font-size: 20px;
	font-weight: 800;
	text-align: center !important;
	text-transform: uppercase;
	line-height: 1.3;
}

.gk-table-advt {
	background-color: #f1f5f9;
	font-size: 13px;
	text-align: center !important;
	font-weight: 600;
}

.gk-header-sub {
	background-color: #f8fafc;
	color: var(--highlight-color, var(--primary-blue));
	font-weight: 800;
	text-transform: uppercase;
	font-size: 13.5px;
	border-bottom: 2px solid var(--highlight-color, var(--primary-blue));
	text-align: center !important;
	padding: 8px !important;
}

.gk-split-td {
	width: 50%;
	vertical-align: top;
	padding: 0 !important;
}

.gk-inner-split-table {
	width: 100%;
	border-collapse: collapse;
	border: none;
}

.gk-inner-split-table td {
	border: none;
	border-bottom: 1px solid #e2e8f0;
	padding: 10px 12px;
}

.gk-inner-split-table tr:last-child td {
	border-bottom: none;
}

.gk-small-td-text {
	font-size: 12.5px;
	color: var(--text-muted);
}

.gk-full-width-td {
	padding: 0 !important;
}

.gk-vacancy-banner-td {
	background-color: #f1f5f9;
	font-size: 16px;
	font-weight: 800;
	text-align: center !important;
}

.gk-highlight-text {
	color: var(--alert-red);
}

/* Vacancy Post Grid Subtable */
.gk-vacancy-grid-table {
	width: 100%;
	border-collapse: collapse;
	border: none;
}

.gk-vacancy-grid-table th {
	background-color: #f1f5f9;
	font-weight: 700;
	border: none;
	border-bottom: 1px solid var(--highlight-color, var(--primary-blue));
	padding: 10px 12px;
}

.gk-vacancy-grid-table td {
	border: none;
	border-bottom: 1px solid #e2e8f0;
	padding: 10px 12px;
	vertical-align: top;
}

.gk-badge-count {
	background-color: var(--primary-blue);
	color: #ffffff;
	padding: 2px 8px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 12px;
}

.gk-notes-td {
	background-color: #fef8ec;
}

.gk-notes-container {
	margin-top: 6px;
	font-size: 13px;
	color: #664d03;
}

/* Action useful links buttons */
.gk-action-links-td {
	padding: 0 !important;
}

.gk-action-links-table {
	width: 100%;
	border-collapse: collapse;
	border: none;
}

.gk-action-links-table td {
	border: none;
	border-bottom: 1px solid #e2e8f0;
	padding: 12px 15px;
}

.gk-action-links-table tr:last-child td {
	border-bottom: none;
}

.gk-action-link-btn {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 4px;
	color: #ffffff;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	transition: background 0.15s;
}

.gk-action-link-btn:hover {
	color: #ffffff;
	opacity: 0.9;
}

.gk-action-link-btn.green { background-color: var(--success-color); }
.gk-action-link-btn.blue { background-color: #1e88e5; }
.gk-action-link-btn.purple { background-color: #8e24aa; }
.gk-action-link-btn.red { background-color: var(--alert-red); }
.gk-action-link-btn.orange { background-color: #fb8c00; }
.gk-action-link-btn.gray { background-color: #708090; }

/* ==========================================
   FOOTER SECTION
   ========================================== */
.gk-footer-core-wrap {
	background-color: var(--dark-bg);
	color: #cbd5e1;
	padding: 40px 20px 20px 20px;
	font-size: 13.5px;
	border-top: 3px solid var(--alert-red);
}

.gk-footer-columns-grid {
	display: grid;
	grid-template-columns: 2fr repeat(3, 1.2fr) 1.5fr;
	gap: 30px;
	margin-bottom: 35px;
}

.gk-footer-widget-box h3 {
	color: #ffffff;
	font-size: 14.5px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 18px;
	border-left: 3px solid var(--alert-red);
	padding-left: 10px;
}

.gk-footer-widget-box p {
	line-height: 1.7;
	color: #94a3b8;
}

.gk-footer-widget-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.gk-footer-widget-box ul li {
	margin-bottom: 10px;
}

.gk-footer-widget-box ul li a {
	color: #94a3b8;
	display: block;
	transition: color 0.15s, padding-left 0.15s;
}

.gk-footer-widget-box ul li a:hover {
	color: #ffffff;
	padding-left: 4px;
}

.gk-footer-contact-details {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gk-contact-row-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.gk-contact-row-item i {
	color: var(--alert-red);
	font-size: 14px;
	margin-top: 3px;
}

/* Social icons bottom group */
.gk-footer-social-links-box {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.gk-footer-social-links-box a {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #1e293b;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: background 0.15s;
}

.gk-footer-social-links-box a:hover {
	background-color: var(--alert-red);
}

/* Copyright banner bottom */
.gk-footer-copyright-banner {
	border-top: 1px solid #1e293b;
	padding-top: 20px;
	text-align: center;
	font-size: 12px;
	color: #64748b;
}

/* ==========================================
   MOBILE FLOATING & STICKY NAVIGATION
   ========================================== */
.gk-mobile-sticky-bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ffffff;
	box-shadow: 0 -3px 15px rgba(0,0,0,0.1);
	z-index: 9999;
	grid-template-columns: repeat(5, 1fr);
	height: 60px;
}

.gk-mobile-nav-tab-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.gk-mobile-nav-tab-item i {
	font-size: 20px;
	margin-bottom: 3px;
}

.gk-mobile-nav-tab-item.active,
.gk-mobile-nav-tab-item:hover {
	color: var(--theme-color);
}

.gk-mobile-nav-tab-item.apply-float-btn {
	background-color: var(--success-color);
	color: #ffffff;
}

/* Floating contact links */
.gk-floating-action-buttons-wrap {
	display: flex;
	flex-direction: column;
	position: fixed;
	bottom: 80px;
	right: 20px;
	gap: 10px;
	z-index: 999;
}

.gk-float-circle-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.25);
	transition: transform 0.15s;
}

.gk-float-circle-btn:hover {
	transform: scale(1.05);
	color: #ffffff;
}

.gk-float-circle-btn.wa { background-color: var(--whatsapp-color); }
.gk-float-circle-btn.tg { background-color: var(--telegram-color); }

/* ==========================================
   RESPONSIVENESS MEDIA TARGETS
   ========================================== */

@media (max-width: 1024px) {
	.gk-jobs-columns-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.gk-footer-columns-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.gk-header-top-bar {
		display: none;
	}
	
	.gk-header-branding-wrap {
		justify-content: center;
		text-align: center;
		padding: 15px;
	}
	
	.gk-branding-logo-box {
		flex-direction: column;
		gap: 10px;
	}
	
	.gk-header-action-buttons {
		flex-direction: row;
		width: 100%;
		justify-content: center;
	}
	
	.gk-action-btn-link {
		min-width: unset;
		flex: 1;
	}
	
	.gk-header-search-box {
		width: 100%;
	}
	
	.gk-primary-navbar ul.menu {
		justify-content: center;
	}
	
	.gk-jobs-columns-grid {
		grid-template-columns: 1fr;
	}
	
	.gk-info-badges-grid-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.gk-split-td {
		width: 100%;
		display: block;
	}
	
	.gk-footer-columns-grid {
		grid-template-columns: 1fr;
	}
	
	/* Show Mobile sticky navigation */
	.gk-mobile-sticky-bottom-nav {
		display: grid;
	}
	
	/* Adjust body padding for sticky nav height */
	body {
		padding-bottom: 60px;
	}

	.gk-floating-action-buttons-wrap {
		bottom: 75px;
		right: 15px;
	}
}
