#ct-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 260px;
  z-index: 999;
  background: inherit;
}

.ct-content {
  margin-left: 260px;
}

@media (max-width: 1024px) {
  #ct-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  #ct-sidebar.active {
    transform: translateX(0);
  }

  .ct-content {
    margin-left: 0;
  }
}

/* ===== LEFT MENU + CONTENT ===== */

/* Left menu width */
:root{
  --leftmenu: 20%;
}

/* Push all site content right */
body{
  margin-left: var(--leftmenu);
  overflow-x: hidden;
}

/* Make sure content can expand fully */
#page,
.site,
.site-content,
.content-area,
main{
  max-width: 100% !important;
  width: 100% !important;
}




/* ===== Desktop + Tablet: left menu (20%) + content (80%) ===== */
:root{
  --leftmenu: 20%;
}

/* Apply only when side menu exists (desktop + tablet) */
@media (min-width: 768px){
  body{
    margin-left: var(--leftmenu);
    overflow-x: hidden;
  }

  /* Ensure content can use the remaining space */
  #page,
  .site,
  .site-content,
  .content-area,
  main{
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* ===== Mobile: no side menu, full width ===== */
@media (max-width: 767px){
  body{
    margin-left: 0 !important;
  }
}



/* Force the whole widget to 600px */
.etps{
  height: 500px !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Make the panels area take the remaining height */
.etps-panel{
  flex: 1 1 auto !important;
  min-height: 0 !important; /* important for scrolling inside flex */
}

/* Let the list fill the panel and scroll */
.etps-list{
  max-height: none !important;   /* removes the old 260px cap */
  height: 100% !important;
  overflow-y: auto !important;
}


/* ===============================
   Jetpack Related Posts Slider (JP)
   3 desktop, 2 tablet/mobile | no arrows
   Rounded thumbs 13px | title ellipsis | headline 13px
   =============================== */

.single-post .jp-relatedposts {
  margin-top: 28px;
  width: 100%;
  max-width: 100%;
}

/* Heading "Related" */
.single-post .jp-relatedposts h3.jp-relatedposts-headline {
  font-size: 25px !important;
  font-weight: 700;
  margin: 0 0 12px;
}

/* Slider row */
.single-post .jp-relatedposts .jp-relatedposts-items {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3); /* 3 visible desktop */
  gap: 16px;

  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  padding-bottom: 8px;
  width: 100%;
}

/* Hide scrollbar */
.single-post .jp-relatedposts .jp-relatedposts-items::-webkit-scrollbar { display: none; }
.single-post .jp-relatedposts .jp-relatedposts-items { scrollbar-width: none; }

/* Card */
.single-post .jp-relatedposts .jp-relatedposts-post {
  scroll-snap-align: start;

  width: auto !important;
  float: none !important;
  margin: 0 !important;

  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 13px;
  overflow: hidden;
  padding: 12px;
  background: #fff;
  min-height: 160px;
}

/* ===== Thumbnail radius FIX (this is the important part) =====
   Jetpack often styles the IMG in a way that ignores radius.
   We clip the wrapper with overflow hidden and give wrapper radius.
*/
.single-post .jp-relatedposts .jp-relatedposts-post-img {
  border-radius: 13px !important;
  overflow: hidden !important;
  line-height: 0;          /* removes tiny gaps */
}

/* Make sure the image fills the wrapper */
.single-post .jp-relatedposts .jp-relatedposts-post-img img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;

  /* Keep corners clean by letting wrapper do the rounding */
  border-radius: 0 !important;

  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Title (limit letters visually + ellipsis) */
.single-post .jp-relatedposts .jp-relatedposts-post-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;   /* 2 lines then ... */
  overflow: hidden;

  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;

  transition: color 0.2s ease;
}

/* Title hover -> gray */
.single-post .jp-relatedposts .jp-relatedposts-post-title a:hover {
  color: #888;
}

/* Meta */
.single-post .jp-relatedposts .jp-relatedposts-post-date,
.single-post .jp-relatedposts .jp-relatedposts-post-context {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 6px;
}

/* Responsive: 2 visible cards on tablet & mobile */
@media (max-width: 1024px) {
  .single-post .jp-relatedposts .jp-relatedposts-items {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}
@media (max-width: 600px) {
  .single-post .jp-relatedposts .jp-relatedposts-items {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}

/* ===============================
   Single Post – Featured Image
   Border Radius: 13px
   =============================== */

/* Elementor Theme Builder featured image */
.single-post
.elementor-widget-theme-post-featured-image
.elementor-widget-container {
  border-radius: 13px;
  overflow: hidden;
}

/* Image itself */
.single-post
.elementor-widget-theme-post-featured-image img {
  border-radius: 13px;
  width: 100%;
  height: auto;
  display: block;
}

/* WordPress default featured image fallback */
.single-post .post-thumbnail,
.single-post img.wp-post-image {
  border-radius: 13px;
  overflow: hidden;
}

/* Safety: prevent themes from overriding */
.single-post img.wp-post-image {
  display: block;
}






/* GOLD SIDEBAR NAV MENU */
.side-magic-menu .elementor-nav-menu a {
  position: relative;
  display: block;
  padding: 12px 18px;
  transition: all .3s ease;
  border-radius: 8px;
  color: inherit;
}

/* Animated gold underline */
.side-magic-menu .elementor-nav-menu a::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 8px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #eaad0d, #ffd95a);
  transition: width .3s ease;
}

/* Hover */
.side-magic-menu .elementor-nav-menu a:hover {
  transform: translateX(6px);
  background: rgba(234, 173, 13, 0.1);
  color: #eaad0d !important;
}

/* Underline expands */
.side-magic-menu .elementor-nav-menu a:hover::after {
  width: 65%;
}

/* Active menu item */
.side-magic-menu .elementor-nav-menu .current-menu-item > a {
  color: #eaad0d !important;
  background: rgba(234, 173, 13, 0.12);
}

.side-magic-menu .elementor-nav-menu .current-menu-item > a::after {
  width: 65%;
}





/* ===== PREMIUM SINGLE POST META ===== */

.single-meta-premium {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  padding: 16px 0;
  color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Meta items */
.single-meta-premium .elementor-post-info__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Icons */
.single-meta-premium i {
  color: #eaad0d;
  font-size: 13px;
}

/* Links */
.single-meta-premium a {
  text-decoration: none;
  transition: all .3s ease;
  font-weight: 500;
}

.single-meta-premium a:hover {
  color: #eaad0d !important;
}

/* Category pills */
.single-meta-premium .elementor-post-info__terms-list a {
  background: rgba(234,173,13,0.08);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: all .3s ease;
}

.single-meta-premium .elementor-post-info__terms-list a:hover {
  background: #eaad0d;
  color: #fff !important;
}

/* Slight spacing polish */
.single-meta-premium .elementor-post-info__item:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  background: #eaad0d;
  border-radius: 50%;
  margin-left: 12px;
  opacity: .6;
}






/* Layout */
.subscribe_holder{
  display:flex;
  gap:10px;
  width:100%;
  max-width:400px;
  margin:0 auto 12px auto;
}

/* Email input */
.subscribe_holder input[type="email"]{
  flex:1;
  padding:10px 12px;
  font-size:12px;
  border:1px solid #ccc;
  border-radius:6px;
  box-sizing:border-box;
}

/* Button */
.subscribe_holder input[type="submit"]{
  padding:10px 16px;
  font-size:12px;
  border-radius:6px;
  border:none;
  cursor:pointer;
}

/* Consent text */
.agree,
.agree span,
.agree a{
  font-size:12px !important;
  line-height:1.4;
}

/* ✅ Mobile Fix */
@media (max-width:600px){
  .subscribe_holder{
    flex-direction:column;
  }

  .subscribe_holder input[type="submit"]{
    width:100%;
  }
}





.reward-box{
  width:100%;
  max-width:300px;
  margin:0 auto;
  font-family:inherit;
}

/* Top section */
.reward-top{
  font-size:13px;
  font-weight:600;
  text-align:center;
  padding:6px 0;
  border:1px solid #777;
  border-bottom:none;
  border-radius:6px 6px 0 0;
  background:#F5F4F4;
  color:#333;
}

/* Bottom section */
.reward-bottom{
  font-size:12px;
  font-weight:600;
  text-align:center;
  padding:6px 0;
  border:1px solid #777;
  border-radius:0 0 6px 6px;
  background:#DCDCDC;
  color:#222;
}




/* ===== Minimal Editorial Style ===== */
.btc-article{
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;       /* same size everywhere */
  line-height: 1.8;
  color: #1a1a1a;
  letter-spacing: 0.1px;
}

/* Headings (same size, just stronger weight) */
.btc-article h1,
.btc-article h2,
.btc-article h3{
  font-size: 16px;       /* same as paragraph */
  font-weight: 800;
  margin: 22px 0 10px;
  color: #111;
}

/* Paragraph spacing */
.btc-article p{
  margin: 0 0 18px;
}

/* Subtle section spacing */
.btc-article h2:not(:first-child){
  margin-top: 28px;
}

/* Links */
.btc-article a{
  color: #1a5cff;
  text-decoration: none;
  font-weight: 600;
}

.btc-article a:hover{
  text-decoration: underline;
}

/* Lists */
.btc-article ul,
.btc-article ol{
  margin: 12px 0 18px 20px;
}

.btc-article li{
  margin-bottom: 8px;
}

/* Blockquote – clean left accent */
.btc-article blockquote{
  margin: 20px 0;
  padding-left: 14px;
  border-left: 3px solid #f7931a;
  color: #444;
  font-style: italic;
}
.btc-article hr{
  border: none;
  height: 3px;
  margin: 28px 0;
  background: linear-gradient(to right, transparent, #dcdcdc, transparent);
}


.blogimage {
    background: #F5F4F4;
    padding: 20px;
    border-radius: 13px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.blogimage img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    display: block;
}







/* ===== TOC Wrapper ===== */
.review-toc,
.review-toc .elementor-widget-container{
  background:#F5F4F4;
  padding:24px;
  border-radius:16px;
  box-shadow:0 4px 18px rgba(0,0,0,.05);
  margin:30px 0;
}

/* ===== Title inside TOC ===== */
.review-toc h2,
.review-toc h3,
.review-toc .elementor-heading-title{
  font-size:20px;
  font-weight:700;
  margin:0 0 14px;
}

/* ===== Links (works for Elementor TOC widget) ===== */
.review-toc a{
  text-decoration:none !important;
  color:#222 !important;
  font-weight:500;
  display:block;
  padding:10px 12px;
  border-radius:10px;
  transition:all .2s ease;
}

/* Hover */
.review-toc a:hover{
  background:#fff;
  transform:translateX(3px);
  padding-left:16px;
  color:#000 !important;
}

/* ===== Remove ugly bullets + spacing for common TOC outputs ===== */
.review-toc ul,
.review-toc ol,
.review-toc .elementor-icon-list-items{
  list-style:none !important;
  padding:0 !important;
  margin:0 !important;
}

/* List items spacing */
.review-toc li,
.review-toc .elementor-icon-list-item,
.review-toc .elementor-toc__list-item{
  margin:0 !important;
}

/* Divider line between items */
.review-toc li:not(:last-child),
.review-toc .elementor-icon-list-item:not(:last-child),
.review-toc .elementor-toc__list-item:not(:last-child){
  border-bottom:1px solid rgba(0,0,0,.06);
}

/* If using Icon List, remove default icon gap weirdness */
.review-toc .elementor-icon-list-icon{
  margin-right:8px;
}









.container11 {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.left-review,
.right-review {
  flex: 1;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
}

.left-review {
  background-color: #f0f0f0;
  overflow-y: auto;
}

.right-review {
  background-color: #e0e0e0;
  overflow-y: auto;
}

/* Tablet & Mobile Fix */
@media (max-width: 1024px) {
  .container11 {
    flex-direction: column;
    height: auto;        /* Allow natural height */
    overflow: visible;   /* Allow page scrolling */
  }

  .left-review,
  .right-review {
    height: auto;        /* Remove forced 100% height */
  }
}




@media (max-width: 767px) {
    .jb-job-breadcrumbs {
        margin-top: 45px !important;
    }
}

.jp-relatedposts {
    background: #F5F4F4;
    padding: 30px;
    border-radius: 16px;
    margin-top: 50px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

/* Title inside related posts */
.jp-relatedposts h3,
.jp-relatedposts h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 4px solid #111;
    padding-left: 12px;
}

/* Individual related post items */
.jp-relatedposts .related-item,
.jp-relatedposts li {
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

/* Hover effect */
.jp-relatedposts .related-item:hover,
.jp-relatedposts li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Links */
.jp-relatedposts a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.jp-relatedposts a:hover {
    color: #2c6cff;
}

/* Mobile spacing */
@media (max-width: 767px) {
    .jp-relatedposts {
        padding: 20px;
        border-radius: 14px;
    }
}
.jp-relatedposts img {
    border-radius: 9px;
}



.tcp-item:hover .tcp-left span,
.tcp-item:hover .tcp-price {
    color: #D5011B !important;
}





@media (max-width: 768px) {
  .single_job_listing {
    margin-top: 40px;
	}
}



.company_twitter {
  display: inline-block;
  width: 22px;
  height: 22px;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* X logo */
.company_twitter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/x.svg") no-repeat center;
  background-size: contain;
  opacity: 0.8;
}

/* Hover effect */
.company_twitter:hover {
  transform: scale(1.12);
}

.company_twitter:hover::before {
  opacity: 1;
}

.website {
  display: inline-block;
  width: 22px;
  height: 22px;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Globe icon */
.website::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://cdn.jsdelivr.net/npm/lucide-static/icons/globe.svg") no-repeat center;
  background-size: contain;
  opacity: 0.8;
}

/* Hover effect */
.website:hover {
  transform: scale(1.12);
}

.website:hover::before {
  opacity: 1;
}
.company {
  border-radius: 12px;
  overflow: hidden;
}
.application_button.button {
  border-radius: 12px;
  overflow: hidden;
}
.company_logo {
  border-radius: 8px;
  overflow: hidden;
}

 .animatedbackground {
  background: linear-gradient(-45deg, #eaad0d, #f5f4f4, #28282a, #e05453);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}