@charset "UTF-8";
/*
	Theme Name: eka 
	Theme URI: https://www.vishmax.com/eka/
	Author: Vishmax
	Author URI: https://www.vishmax.com
	Description: eka CSS framework.
	Version: 3.0.0
	
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Theme Variables
# Reset Styles
# Base Element Styles
# Typography
# Grid System
# Utilities 
# Display & Hide Utilities
# Badge, Message, Alert, Panel Card and Toast Container Utilities
# Core Button Styles
# Core Icon Styles
# Layout Wrappers, Containers & Main content holder
# Header
# Navigation 
# Sidebar Container
# Footer Container
# Search Form Container
# Section Container
# Pagination
# Responsive additional settings

/*--------------------------------------------------------------
# Theme Variables
--------------------------------------------------------------*/
:root {
  --base-font: "Open Sans", Arial, sans-serif;
  --base-color: #000;
  --spacing-unit: 1rem;
  --max-width: 1280px;
  --wrapper-max-width: 1200px;
  --wrapper-padding: 1.25rem; /* ~20px */
  --hover-color: #4184f3; /* colour: vibrant blue */
  --text-color: #333;
  --meta-color: #777;
  --bg-color: #fff;
  --border-color: #eee;
}

/*--------------------------------------------------------------
# Reset Styles
--------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul[class], ol[class] {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

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

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/*--------------------------------------------------------------
# Base Element Styles
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font: 400 1rem/1.8 var(--base-font);
  color: var(--base-color);
  background-color: #fff;
  min-height: 100vh;
  text-transform: none;
  
  padding-top: 40; /* If header becomes sticky and shrinks to 40px */
}

ul, ol {
  margin: 0 0 1.5em 3em;
}
ul { list-style-type: disc; }
ol { list-style-type: decimal; }
li > ul, li > ol {
  margin-left: 1.5em;
  margin-bottom: 0;
}

b, strong { font-weight: bold; }
dfn, cite, em, i { font-style: italic; }
small { font-size: 75%; }
big { font-size: 125%; }
mark, ins {
  background: transparent;
  text-decoration: none;
}

blockquote {
  border-left: 5px solid rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
  font-size: 1.2rem;
  font-style: italic;
  margin: 0 0 1.5em;
  quotes: none;
}

address {
  margin-bottom: 1.5em;
  font-style: normal;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

pre {
  background-color: rgba(0, 0, 0, 0.05);
  font-family: inherit;
  line-height: normal;
  padding: 1.25rem;
  overflow: auto;
  margin-bottom: 1.5em;
  max-width: 100%;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 0.9375rem;
}

hr {
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  height: 1px;
  margin: 1.25rem 0;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: 1.5em;
}
th {
  font-weight: bold;
}
th, td {
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	 color: inherit;
	 font-family: inherit;
	 font-weight: 500;
	 line-height: 1.2;
	 text-transform: none;
	 margin-bottom: 1rem;
}
h1 { font-size: 2.5rem;  }
h2 { font-size: 2rem;    }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem;  } 
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem;	 }

/*--------------------------------------------------------------
# Grid System
--------------------------------------------------------------*/

/* ------------------------------
   Grid Row
------------------------------ */
.eka-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  margin-inline: auto;
  box-sizing: border-box;
}

/* ------------------------------
   Grid Column Base
------------------------------ */
.eka-col {
  flex: 1 1 0;
  padding: 1rem;
  box-sizing: border-box;
}

/* ------------------------------
   Column Widths (12-column grid)
------------------------------ */
.eka-col-1  { flex: 0 0 calc(8.333% - 1rem);  max-width: calc(8.333% - 1rem);  }
.eka-col-2  { flex: 0 0 calc(16.666% - 1rem); max-width: calc(16.666% - 1rem); }
.eka-col-3  { flex: 0 0 calc(25% - 1rem);     max-width: calc(25% - 1rem);     }
.eka-col-4  { flex: 0 0 calc(33.333% - 1rem); max-width: calc(33.333% - 1rem); }
.eka-col-6  { flex: 0 0 calc(50% - 1rem);     max-width: calc(50% - 1rem);     }
.eka-col-8  { flex: 0 0 calc(66.666% - 1rem); max-width: calc(66.666% - 1rem); }
.eka-col-12 { flex: 0 0 100%;                 max-width: 100%;                 }

/* ------------------------------
   Responsive Design
------------------------------ */
@media screen and (max-width: 768px) {
  .eka-col-1,
  .eka-col-2,
  .eka-col-3,
  .eka-col-4,
  .eka-col-6,
  .eka-col-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Utilities 
--------------------------------------------------------------*/
/* Layout Utilities */
.eka-full        { width: 100%; box-sizing: border-box;                  }
.eka-two-thirds  { width: calc(66.6667% - 1rem); box-sizing: border-box; }
.eka-half        { width: calc(50% - 1rem); box-sizing: border-box;      }
.eka-third       { width: calc(33.3333% - 1rem); box-sizing: border-box; }
.eka-fourth      { width: calc(25% - 1rem); box-sizing: border-box;      }

/* Font Size Utilities */
.eka-font-size-small  { font-size: 14px;    }
.eka-font-size-medium { font-size: 1rem;    }
.eka-font-size-large  { font-size: 1.25rem; } 

/* Font Weight Utilities */
.eka-narrow           { font-weight: 300; }
.eka-regular          { font-weight: 500; }
.eka-bolder           { font-weight: 700; }

/* Text Transformation Utilities */
.eka-lowercase        { text-transform: lowercase;  } 
.eka-uppercase        { text-transform: uppercase;  }
.eka-capitalize       { text-transform: capitalize; }

/* Alignment Text Utilities */
.eka-aligntext-left   { text-align: left;   }
.eka-aligntext-right  { text-align: right;  }
.eka-aligntext-center { text-align: center; }

/* Alignment Utilities */
.eka-alignleft        { margin-right: auto; }
.eka-alignright       { margin-left: auto;  }
.eka-aligncenter      { display: block; margin: 0 auto; clear: both; }

/* Alignment Utilities Extras */
.eka-align-start      { align-items: flex-start; }
.eka-align-center     { align-items: center;     }
.eka-align-end        { align-items: flex-end;   }

/* Margin Utilities */
.eka-margin-0         { margin: 0;             }
.eka-margin-default   { margin: 16px;          }

.eka-margin-top-10    { margin-top: 10px;      }
.eka-margin-bottom-10 { margin-bottom: 10px;   }
.eka-margin-left-10   { margin-left: 10px;     }
.eka-margin-right-10  { margin-right: 10px;    }

.eka-margin-top-20    { margin-top: 20px;      }
.eka-margin-bottom-20 { margin-bottom: 20px;   }

.eka-margin-top-30    { margin-top: 30px;      }
.eka-margin-bottom-30 { margin-bottom: 30px;   }

.eka-margin-top-40    { margin-top: 40px;      }
.eka-margin-bottom-40 { margin-bottom: 40px;   }

.eka-margin-top-50    { margin-top: 50px;      }
.eka-margin-bottom-50 { margin-bottom: 50px;   }

/* Padding Utilities */
.eka-padding-0         { padding: 0;           }
.eka-padding-default   { padding: 16px;        }

.eka-padding-top-10    { padding-top: 10px;    }
.eka-padding-bottom-10 { padding-bottom: 10px; }
.eka-padding-left-10   { padding-left: 10px;   }
.eka-padding-right-10  { padding-right: 10px;  }

.eka-padding-top-20    { padding-top: 20px;    }
.eka-padding-bottom-20 { padding-bottom: 20px; }

.eka-padding-top-30    { padding-top: 30px;    }
.eka-padding-bottom-30 { padding-bottom: 30px; }

.eka-padding-top-40    { padding-top: 40px;    }
.eka-padding-bottom-40 { padding-bottom: 40px; }

.eka-padding-top-50    { padding-top: 50px;    }
.eka-padding-bottom-50 { padding-bottom: 50px; }

/* Color Utilities */
.eka-white         { color: #fff;    }
.eka-ash           { color: #999;    }
.eka-grey          { color: #ccc;    }
.eka-yellow        { color: #fcd003; }
.eka-green         { color: #7bbf38; }
.eka-purple        { color: #af1166; }
.eka-violet        { color: #474789; }
.eka-blue          { color: #0b5cab; }
.eka-blue-deep     { color: #004071; }
.eka-blue-classic  { color: #4184f3; }
.eka-orange        { color: #ff5722; }
.eka-red           { color: #fb0203; }
.eka-red-deep      { color: #e30405; }
.eka-black-matt    { color: #666;    }

/* Color Background Utilities */
.eka-bg-white      { background-color: #fff; 	}
.eka-bg-light      { background-color: #fefffa; }
.eka-bg-dark       { background-color: #343a40; }
.eka-bg-primary    { background-color: #007bff; }
.eka-bg-success    { background-color: #28a745; }
.eka-bg-error      { background-color: #dc3545; }

/* Border Utilities */
.eka-border-none   { border: none;                  }
.eka-border        { border: 1px solid #eee;        }
.eka-border-top    { border-top: 1px solid #eee;    }
.eka-border-bottom { border-bottom: 1px solid #eee; }
.eka-border-left   { border-left: 1px solid #eee;   }
.eka-border-right  { border-right: 1px solid #eee;  }

.eka-rounded       { border-radius: 5px;  }
.eka-rounded-sm    { border-radius: 3px;  }
.eka-rounded-lg    { border-radius: 10px; }

/* Overlays */
.eka-overlay      { background-color: rgba(0, 35, 82, 0.1); }
.eka-overlay-dark { background-color: rgba(0, 35, 82, 0.2); }

/* Images */
.eka-image {
  max-width: 100%;
  height: auto;
}
.eka-no-white-space img { display: block;         }
img                     { vertical-align: middle; }

/*--------------------------------------------------------------
# Display & Hide Utilities
--------------------------------------------------------------*/
/* Hide on large devices (desktop) */
.eka-large-devices-hidden {
  display: none;
}

@media (max-width: 767px) {
  .eka-large-devices-hidden {
    display: list-item; /* or block/flex depending on context */
  }
}

/* Hide on small devices (mobile) */
.eka-small-devices-hidden {
  display: list-item;
  list-style: none;
}

@media (max-width: 767px) {
  .eka-small-devices-hidden {
    display: none;
  }
}

/* Sticky Styling */
.sticky-bar {
  position: sticky;
  top: 0;
  z-index: 1000; /* ensures it stays above other elements */
  background-color: white; /* optional, prevents transparency */
  padding: 6px 10px; /* adjust as needed */
  border-bottom: 1px solid #eee; /* optional visual cue */
}

/*--------------------------------------------------------------
# Badge, Message, Alert, Panel Card and Toast Container Utilities
--------------------------------------------------------------*/
/* ------------------------------
   Badge Utilities
------------------------------ */
.eka-badge {
  display: inline-block;
  padding: 0.25em 0.5em;
  font-size: 0.75rem;
  font-weight: 300;
  border-radius: 2px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
/* Badge Colors */
.eka-badge-light     { background-color: #f8f9fa; color: #212529;}
.eka-badge-dark      { background-color: #343a40; color: #fff;   }
.eka-badge-primary   { background-color: #387ed1; color: #fff;   }
.eka-badge-secondary { background-color: #6c757d; color: #fff;   }
.eka-badge-success   { background-color: #28a745; color: #fff;   }
.eka-badge-error     { background-color: #dc3545; color: #fff;   }
.eka-badge-warning   { background-color: #ffc107; color: #212529;}
.eka-badge-info      { background-color: #17a2b8; color: #fff;   } 

.eka-badge-yellow    { background-color: #fce786; color: #000; line-height: normal;}

/* ------------------------------
   Message / Alert Utilities
------------------------------ */
.eka-alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
}
/* Message / Alert Types */
.eka-alert-light     { background-color: #fefefe; color: #818182; }
.eka-alert-dark      { background-color: #d6d8d9; color: #1b1e21; }
.eka-alert-primary   { background-color: #cce5ff; color: #004085; }
.eka-alert-secondary { background-color: #e2e3e5; color: #383d41; }
.eka-alert-success   { background-color: #d4edda; color: #155724; }
.eka-alert-error     { background-color: #f8d7da; color: #721c24; }
.eka-alert-warning   { background-color: #fff3cd; color: #856404; }
.eka-alert-info      { background-color: #d1ecf1; color: #0c5460; }

.eka-alert-dismissible {
  position: relative;
  padding-right: 2.5rem;
}
.eka-alert-dismissible .close-btn {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}

/* ------------------------------
   Panel Utilities
------------------------------ */
.eka-panel {
  border-radius: 6px;
  padding: 1rem;
  background-color: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Panel visibility */
.eka-panel-hidden  { display: none;  }
.eka-panel-visible { display: block; }

/* Panel themes */
.eka-panel-light   { background-color: #ffffff; color: #333; }
.eka-panel-dark    { background-color: #333; color: #fff;    }
.eka-panel-primary { background-color: #007bff; color: #fff; }
.eka-panel-success { background-color: #28a745; color: #fff; }
.eka-panel-error   { background-color: #dc3545; color: #fff; }

/* Panel positions */
.eka-panel-left,
.eka-panel-right {
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 1000;
}
.eka-panel-left {
  left: 0;
}
.eka-panel-right {
  right: 0;
}
.eka-panel-top,
.eka-panel-bottom {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.eka-panel-top {
  top: 0;
}
.eka-panel-bottom {
  bottom: 0;
}

/* Responsive widths */
.eka-panel-sm {
  width: 100%;
  max-width: 300px;
}
.eka-panel-md {
  width: 100%;
  max-width: 500px;
}
.eka-panel-lg {
  width: 100%;
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .eka-panel-sm,
  .eka-panel-md,
  .eka-panel-lg {
    width: 100%;
    max-width: none;
    border-radius: 0;
  }

  .eka-panel-left,
  .eka-panel-right {
    width: 100%;
  }

  .eka-panel-top,
  .eka-panel-bottom {
    height: auto;
  }
}

/* ------------------------------
   Card Utilities
------------------------------ */
.eka-card {
  border-radius: 8px;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.eka-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Card sizes */
.eka-card-sm { max-width: 250px; }
.eka-card-md { max-width: 400px; }
.eka-card-lg { max-width: 600px; }

/* Card layout */
.eka-card-horizontal {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.eka-card-vertical {
  display: flex;
  flex-direction: column;
}

/* Card themes */
.eka-card-light   { background-color: #f9f9f9; color: #333; }
.eka-card-dark    { background-color: #333; color: #fff;    }
.eka-card-primary { background-color: #007bff; color: #fff; }
.eka-card-success { background-color: #28a745; color: #fff; }
.eka-card-error   { background-color: #dc3545; color: #fff; }

/* Responsive Design */
@media (max-width: 768px) {
  .eka-card-sm,
  .eka-card-md,
  .eka-card-lg {
    max-width: 100%;
  }

  .eka-card-horizontal {
    flex-direction: column;
  }
}

/* ------------------------------
   Toast Container
------------------------------ */
.eka-toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
/* Toast */
.eka-toast {
  min-width: 250px;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  animation: fadeIn 0.3s ease-out;
}
/* Toast Types */
.eka-toast-success { background-color: #d4edda; color: #155724; }
.eka-toast-error   { background-color: #f8d7da; color: #721c24; }
.eka-toast-info    { background-color: #d1ecf1; color: #0c5460; }
.eka-toast-warning { background-color: #fff3cd; color: #856404; }

/*--------------------------------------------------------------
# Core Button Styles
--------------------------------------------------------------*/
/* Base button */
.eka-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.2;
  box-sizing: border-box;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .eka-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}

/* ------------------------------
   Size Variants
------------------------------ */
/* Small Button */
.eka-btn-sm {
  height: 28px;
  padding: 0 12px;
  font-size: 13px;
}

/* Medium Button (default) */
.eka-btn-md {
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
}

/* Large Button */
.eka-btn-lg {
  height: 44px;
  padding: 0 20px;
  font-size: 16px;
}

/* Full-width button */
.eka-btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ------------------------------
   Type Variants
------------------------------ */
/* Primary button */
.eka-btn-primary {
  background-color: #4184f3;
  color: #fff;
}

.eka-btn-primary:hover {
  background-color: #679cf5;
}

/* Secondary button */
.eka-btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.eka-btn-secondary:hover {
  background-color: #545b62;
}

/* Success button */
.eka-btn-success {
  background-color: #28a745;
  color: #fff;
}

.eka-btn-success:hover {
  background-color: #218838;
}

/* Error button */
.eka-btn-error {
  background-color: #dc3545;
  color: #fff;
}

.eka-btn-error:hover {
  background-color: #c82333;
}

/*--------------------------------------------------------------
# Core Icon Styles
--------------------------------------------------------------*/
.icon-eka {
  float: right;
  width: 60px;
  height: 40px;
  padding: 0 15px 10px 0;
  background: url(../images/eka-logo.png) no-repeat;
}
.fa { padding : 0 5px 0 0; }

/*--------------------------------------------------------------
# Layout Wrappers, Containers & Main content holder
--------------------------------------------------------------*/

/* -----------------------------------
  Wrappers
----------------------------------- */
.eka-wrapper {
  max-width: var(--wrapper-max-width);
  margin-inline: auto;
  padding-inline: var(--wrapper-padding);
  box-sizing: border-box;
  width: 100%;
}

.eka-wrapper-full {
  width: 100%;
  padding-inline: var(--wrapper-padding);
  box-sizing: border-box;
}

/* ------------------------------
   Shared Container Styles
------------------------------ */
.eka-container,
.eka-container-fluid,
.eka-contents {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  box-sizing: border-box;
  height: auto;
}

/* ------------------------------
   Standard Container (.eka-container, .eka-contents)
------------------------------ */
.eka-container,
.eka-contents {
  width: 90%;
  padding-inline: var(--spacing-unit);
  padding-block: var(--spacing-unit);
}

/* Flex layout for .eka-container */
.eka-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* ------------------------------
   Fluid Container (.eka-container-fluid)
------------------------------ */
.eka-container-fluid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-inline: 1rem;
  padding-block: 1rem;
}

/* ------------------------------
   Responsive Design
------------------------------ */
@media (max-width: 768px) {
  .eka-wrapper,
  .eka-wrapper-full {
    padding-inline: 0.75rem; /* tighter spacing on tablets */
  }
  
  .eka-container,
  .eka-contents {
    width: 100%;
    padding-inline: 0.75rem;
    padding-block: 0.75rem;
  }

  .eka-container-fluid {
    flex-direction: column;
    justify-content: flex-start;
    padding-inline: 0.5rem;
    padding-block: 0.75rem;
  }
}

@media (min-width: 1280px) {
  .eka-wrapper, .eka-container-fluid {
    max-width: 90vw; /* slightly more fluid on large screens */
  }
}

/* Main content holder */
.eka-main-content-holder {
  order: 1;
  flex: 1;
  padding-inline: 3rem;
  box-sizing: border-box;
  margin-left: 280px; /* Push content to the right of the sidebar */
  padding: 0; /* Optional: for inner spacing */
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background-color: transparent;*/
  background-color: white;
  color: white;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid #eee;
}

/* Scroll-triggered Header Style */
header.scrolled {
  background-color: #fff;
  color: #000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Optional: Shrink logo on scroll */
header.scrolled .eka-site-logo img {
  transform: scale(0.85);
  transition: transform 0.3s ease;
}

/* ------------------------------
   Logo Styles
------------------------------ */
.eka-site-logo {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
}

.eka-site-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/*--------------------------------------------------------------
# Navigation 
--------------------------------------------------------------*/
nav {
  margin-top: 0;
}

.menu {
  width: 70%;
}

/* ------------------------------
   Toggle Button (Hamburger)
------------------------------ */
.menu-toggle {
  width: 30px;
  height: 25px;
  position: relative;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle .bar:nth-child(1) { top: 0; }
.menu-toggle .bar:nth-child(2) { top: 11px; }
.menu-toggle .bar:nth-child(3) { top: 22px; }

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* ------------------------------
   Navigation Container
------------------------------ */
.eka-topnav {
  display: flex;
  gap: 15px;
}

/* ------------------------------
   Navigation List
------------------------------ */
.eka-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.eka-nav-list li {
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.eka-nav-list a {
  text-decoration: none;
  font-weight: 500;
}

/* ------------------------------
   Overlay
------------------------------ */
.eka-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.eka-overlay.visible {
  display: block;
  opacity: 1;
}

/* ------------------------------
    Mobile Styles (=768px)
------------------------------ */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .eka-topnav {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #eee;
    padding: 60px 20px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .eka-topnav.open {
    transform: translateX(0);
  }

  .eka-nav-list {
    flex-direction: column;
	gap: 5px;
	font-size: 1rem;
  }

  .eka-nav-list li {
    width: 100%;
	position: relative;
  }

  .eka-nav-list a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #ccc;
    color: #000;
    box-sizing: border-box;
	font-weight: 600;
  }

  .eka-nav-list a:hover {
    color: #666;
  }
  
  .eka-nav-list .fa {
   color: #555;
   padding: 0 10px 0 0;
   font-size: 22px;
  }
  
  .eka-nav-list a:hover .fa {
   color: var(--hover-color);
  }
  
   /* Base badge style */
  .eka-nav-list .badge {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 12px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    font-weight: 400;
  }

  .badge-ash {
    background-color: #e1e1e1;
    color: #000;
  }

  .badge-yellow {
    background-color: #fce786;
    color: #000;
  }

  .badge-blue {
    background-color: #3498db;
    color: #fff;
  }
  
  .badge-green {
    background-color: #7bbf38;
    color: #fff;
  }
  
  .badge-red {
    background-color: #e74c3c;
    color: #fff;
  }


  /* Show only on mobile */
  .eka-nav-list li.eka-large-devices-hidden {
    display: list-item;
  }

  /* Hide only on mobile */
  .eka-nav-list li.eka-small-devices-hidden {
    display: none;
  }
}

/* ------------------------------
    Desktop Styles (=769px)
------------------------------ */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .eka-topnav {
    position: static;
    height: auto;
    padding: 10px 20px;
    transform: none;
  }

  .eka-nav-list {
    flex-direction: row;
	font-size: 0.88rem;
  }

  .eka-nav-list a {
    color: #555;
  }

  .eka-nav-list a:hover {
    color: #555;
  }

  .eka-nav-list .fa {
   color: #999;
  }
  
  .eka-nav-list a:hover .fa {
   color: var(--hover-color);
  }

  /* Hide only on desktop */
  .eka-nav-list li.eka-large-devices-hidden {
    display: none;
  }

  /* Show only on desktop */
  .eka-nav-list li.eka-small-devices-hidden {
    display: list-item;
  }
}

/*--------------------------------------------------------------
# Sidebar Container
--------------------------------------------------------------*/
.eka-sidebar {
  order: 0; /* Sidebar first on desktop */
  position: fixed;
  top: 46px; /* Push sidebar below the header */
  left: 0; /* Align to the left */
  width: 100%; 
  max-width: 280px;
  height: calc(100vh - 40px); /* Adjust based on header/footer height */
  overflow-y: auto;
  padding: 15px;
  border-right: 1px solid #eee;

  /* Scrollbar styling (Firefox) */
  scrollbar-width: thin;
  scrollbar-color: #eee #fff;
}

/* ------------------------------
   Scrollbar Styling (WebKit)
------------------------------ */
.eka-sidebar::-webkit-scrollbar {
  width: 8px;
}

.eka-sidebar::-webkit-scrollbar-track {
  background: #eee;
}

.eka-sidebar::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

.eka-sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #eee;
}

/* ------------------------------
   Sidebar List Items
------------------------------ */
.eka-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eka-sidebar li {
  font-size: 0.88rem;
  padding: 8px;
  border-bottom: 1px solid #f4f4f4;
  position: relative;
}

.eka-sidebar li:last-child {
  border-bottom: none;
}

/* ------------------------------
   Sidebar Links
------------------------------ */
.eka-sidebar a {
  display: block;
  color: #000;
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.3s ease;
  outline: none;
}
.eka-sidebar .fa {
  width: 40px;
  padding: 10px;
  font-size: 18px;
  color: #999;
  transition: color 0.3s ease;
}
.eka-sidebar a:hover .fa {
  color: var(--hover-color);
}

/* ------------------------------
   Submenu Styles
------------------------------ */
.eka-sidebar .submenu {
  padding-left: 5px;
}

.eka-sidebar .submenu li.extra {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  transform: scaleY(0.95);
  transition: height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.eka-sidebar .submenu.expanded li.extra {
  height: 55px; /* Adjust based on your actual item height */
  opacity: 1;
  padding: 8px 9px;
  margin: 0;
  transform: scaleY(1);
}

/* ------------------------------
   Toggle Button
------------------------------ */
.toggle-submenu {
  display: flex;
  justify-content: space-between; /* Push icon to the right */
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  width: 100%; /* Optional: ensures full width */
  box-sizing: border-box;
  text-align: left;
}

/* Icon styling */
.toggle-submenu .fa {
  margin-left: auto; /* Pushes icon to the far right */
  padding: 3px 0 0 0;
  color: inherit;
  transition: color 0.3s ease;
  font-size: 1.25rem; /* size (20px) */
}

/* Hover effect */
.toggle-submenu:hover .fa {
  color: #4184f3;
}

/* ------------------------------
   Responsive Design
------------------------------ */
@media (max-width: 768px) {
  .eka-sidebar {
    max-width: 100%;
    padding: 10px;
	margin-top: 10px;
	top: 0px; 
  }

  .eka-sidebar li {
    padding: 15px;
	font-size: 1.2rem;
  }

  .eka-sidebar .fa {
    font-size: 18px;
  }
  
  .eka-sidebar .submenu.expanded li.extra {
    height: 68px; /* Adjust based on your actual item height */
    padding: 15px 17px;
  }
}

/*--------------------------------------------------------------
# Footer Container
--------------------------------------------------------------*/
.eka-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px;
  width: 100%;
  margin-left: 0;
  box-sizing: border-box;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
  gap: 15px; /* Adds spacing between wrapped items */
  background-color:#f2f8fe;
}

/* Tablet view */
@media (max-width: 768px) {
  .eka-footer {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
	border-top: none;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .eka-footer {
    padding: 15px 20px;
    font-size: 18px;
	border-top: none;
  }
}

/* ------------------------------
   Footer Sections
------------------------------ */
.eka-footer-section-block01,
.eka-footer-section-block02,
.eka-footer-section-block03,
.eka-footer-section-block04 {
  flex: 1 1 20%;
  margin: 5px;
  box-sizing: border-box;
}

/* ------------------------------
   Footer Headings
------------------------------ */
.eka-footer h5 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ------------------------------
   Footer Navigation Lists
------------------------------ */
.eka-footer ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  width: 100%;
}

.eka-footer ul li {
  padding: 10px 0;
  font-size: 0.9em;
}

/* ------------------------------
   Footer Links
------------------------------ */
.eka-footer a {
  color: #555;
  text-decoration: none;
  position: relative;
}

.eka-footer a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #999;
  transition: width 0.3s ease, left 0.3s ease;
}

.eka-footer a:hover::after {
  width: 100%;
  left: 0;
}

/* ------------------------------
   Bold Notes
------------------------------ */
.eka-footer-notes-bold {
  font-size: 1.5rem;
  font-weight: bold;
}

/* ------------------------------
   Footer Paragraphs
------------------------------ */
.eka-footer p {
  text-align: center;
  margin: 30px 0;
  width: 100%;
}

/* ------------------------------
   Small Info Blocks
------------------------------ */
.eka-copyright,
.eka-developer,
.eka-social-icon-holder {
  color: #999;
  font-size: 14px;
  margin: 5px;
  padding: 0 12px;
}

/* ------------------------------
   Responsive Design
------------------------------ */
@media (max-width: 768px) {
  .eka-footer-section-block01,
  .eka-footer-section-block02,
  .eka-footer-section-block03,
  .eka-footer-section-block04 {
    flex: 1 1 100%;
    margin: 10px 0;
  }

  .eka-footer p {
    margin: 20px 0;
  }
}

/*--------------------------------------------------------------
# Search Form Container
--------------------------------------------------------------*/
.eka-search-form {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: stretch; /* Ensures children match height */
}

/* ------------------------------
   Search Input Field
------------------------------ */
.eka-search-form input[type="text"] {
  flex: 4;
  padding: 6px 12px;
  font-size: 17px;
  border: 1px solid #ddd;
  border-right: none;
  box-sizing: border-box;
  outline: none;
  height: auto; /* Let content define height */
  line-height: 1.5;
}

/* ------------------------------
   Search Button
------------------------------ */
.eka-search-form button {
  flex: 1;
  padding: 6px;
  font-size: 17px;
  color: #fff;
  background-color: #ddd;
  border: 1px solid #eee;
  border-left: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  height: auto; /* Let content define height */
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.eka-search-form button:hover {
  background-color: #f6f4f4;
  color: #333;
}

/* ------------------------------
   Responsive Design
------------------------------ */
@media (max-width: 600px) {
  .eka-search-form {
    flex-direction: column;
  }

  .eka-search-form input[type="text"],
  .eka-search-form button {
    flex: none;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0;
    margin-bottom: 8px;
  }

  .eka-search-form button {
    border-left: 1px solid #ddd;
  }
}

@media screen and (max-width: 768px) {

  /* Override all styles and hide eka-search-form on tab and mobile without changing default styles*/
  .eka-search-form  {
    display:none;
  }
}

/*--------------------------------------------------------------
# Section Container
--------------------------------------------------------------*/
.eka-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  row-gap: 2.5rem; /* replaces nth-child spacing */
  margin-top: 1rem;
  box-sizing: border-box;
  width: 100%;
}

/* ------------------------------
   Section Blocks (Default: 3 columns)
------------------------------ */
.eka-section-block {
  flex: 1 1 calc(33.333% - 1rem); /* 3 per row with gap compensation */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  border-right: 1px solid #eee;
  transition: background-color 0.3s ease;
}

/* Hover effect */
.eka-section-block:hover {
  background-color: #fff;
}

/* Remove right border on every 3rd item */
.eka-section-block:nth-child(3n) {
  border-right: none;
}

/* Add margin on last child */
.eka-section:last-child {
  margin-bottom: 1rem;
}

/* ------------------------------
   Headings
------------------------------ */
.eka-section-block h3,
.eka-bolder-large {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0.5rem 0;
}

/* ------------------------------
   Tablet: 2 columns
------------------------------ */
@media screen and (max-width: 768px) {
  .eka-section {
    gap: 0.75rem;
    row-gap: 1.5rem;
    margin-bottom: 0; /* Prevent extra space below */
  }

  .eka-section-block {
    flex: 1 1 calc(50% - 0.75rem);
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 1rem;
    margin-bottom: 0; /* Remove extra spacing */
  }
}

/* ------------------------------
   Mobile: 1 column
------------------------------ */
@media screen and (max-width: 600px) {
  .eka-section {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.4rem;
    margin-bottom: 0;
  }

  .eka-section-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 1rem;
    font-size: 1.2rem;
    background: #f9fbfc;
    border: none;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    text-align: left;
  }
  
  .eka-section-block h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .eka-section-block .eka-bolder {
    margin: 0;
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
/* Pagination container */
.eka-pagination-container {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
}

/* Pagination block */
div.eka-pagination {
  padding: 10px;
  margin: 10px;
  text-align: right;
  font-family: Tahoma, Helvetica, sans-serif;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Pagination links */
div.eka-pagination a {
  border: 1px solid #ccdbe4;
  padding: 5px 12px;
  background-position: bottom;
  text-decoration: none;
  color: #555;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

/* Hover and active states */
div.eka-pagination a:hover,
div.eka-pagination a:active {
  border: 1px solid #000;
  background-color: #387ed1;
  color: #fff;
  text-decoration: none;
}

/* Current page */
div.eka-pagination span.current {
  padding: 5px 12px;
  font-weight: bold;
  color: #387ed1;
  background-color: #e6f0ff;
  border-radius: 2px;
}

/* Disabled pages */
div.eka-pagination span.disabled {
  display: none;
}

/* Next and Prev buttons */
div.eka-pagination a.next,
div.eka-pagination a.prev {
  border: 2px solid #000;
  padding: 5px 12px;
}

/* ------------------------------
   Responsive Design
------------------------------ */
@media screen and (max-width: 600px) {
  div.eka-pagination {
    justify-content: center;
    font-size: 13px;
    padding: 8px;
    margin: 8px;
  }

  div.eka-pagination a,
  div.eka-pagination span.current {
    padding: 6px 10px;
    font-size: 13px;
  }

  div.eka-pagination a.next,
  div.eka-pagination a.prev {
    padding: 6px 10px;
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Responsive additional settings
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	.eka-two-thirds, 
	.eka-half, 
	.eka-third, 
	.eka-fourth           { width: 100%; }	
    .eka-icon-eye-field {
        margin-right: 8px;
        margin-left: -25px;
        margin-top: 1px;
        position: relative;
        z-index: 2;
    }
    .eka-main-content-holder {
        padding-inline: 1rem;
		margin-left: 0;
    }	
    .eka-sidebar {
	    position: relative; /* Remove sticky */
	    height: auto;
	    width: 100%;
	    max-width: 100%;
		border-right: none;
	    overflow: visible;
	    order: 1; /* Sidebar after main content */
    }
    .eka-main-content-holder {
	    order: 0; /* Main content first */
    }

}
