@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* -------------------- */
/* CSS Variables & Root */
/* -------------------- */

:root {
  --default-font: system-ui, -apple-system, "Roboto", "Segoe UI",
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    
  --heading-font: "Merriweather Sans", sans-serif;
  --nav-font: "Poppins", sans-serif;
  
  /* Base Colors */
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #2d465e;
  --accent-color: #ff4228;
  --contrast-color: #ffffff;
  --surface-color: #ffffff;
  
  /* Navigation Colors */
  --nav-color: #000000;
  --nav-hover-color: #ff4228;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #ff4228;
  
  /* Scroll Behavior */
  scroll-behavior: smooth;
}

/* Theme Variations */
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* -------------------- */
/* Base Styles          */
/* -------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  top: 0 !important;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  /*overflow-x: hidden;*/
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

/*p {*/
/*  margin-bottom: 1rem;*/
/*  line-height: 1.6;*/
/*}*/

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -------------------- */
/* Preloader            */
/* -------------------- */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* -------------------- */
/* Scroll Top Button    */
/* -------------------- */

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* -------------------- */
/* Page Title           */
/* -------------------- */

.page-title {
  text-align: center;
  padding: 20px 0;
  background-color: var(--background-color);
}

.page-title .breadcrumbs .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background: transparent;
  list-style: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  padding: 0 0.5rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: var(--default-color);
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover,
.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/* -------------------- */
/* Sections             */
/* -------------------- */

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding:30px 0;
  /*scroll-margin-top: 90px;*/
  /*overflow: hidden;*/
  position: relative;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
    padding: 40px 0;
  }
}

/* Section Title */
.section-title {
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: inline-block;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title div {
    font-size: 24px;
  }
}

/* -------------------- */
/* Blog Hero Section    */
/* -------------------- */

.blog-hero {
  padding-top: 20px;
}

.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease-in-out;
  background-color: var(--surface-color);
}

.blog-hero .blog-item:hover {
  transform: translateY(-5px);
}

.blog-hero .blog-item:hover img {
  transform: scale(1.05);
}

.blog-hero .blog-item:hover .blog-content {
  background: linear-gradient(0deg, 
    color-mix(in srgb, var(--default-color), transparent 10%) 0%, 
    transparent 100%);
}

.blog-hero .blog-item.featured {
  grid-column: span 8;
}

.blog-hero .blog-item:not(.featured) {
  grid-column: span 4;
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.blog-hero .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, 
    color-mix(in srgb, var(--default-color), transparent 20%) 0%, 
    transparent 100%);
  transition: background 0.3s ease-in-out;
}

.blog-hero .blog-item.featured .post-title {
  font-size: 2rem;
}

.blog-hero .blog-item .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--contrast-color);
}

.blog-hero .blog-item .post-meta .date,
.blog-hero .blog-item .post-meta .category {
  display: flex;
  align-items: center;
}

.blog-hero .blog-item .post-meta .date::before,
.blog-hero .blog-item .post-meta .category::before {
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-hero .blog-item .post-meta .date::before {
  content: "\f282";
}

.blog-hero .blog-item .post-meta .category::before {
  content: "\f5d3";
}

.blog-hero .blog-item .post-title {
  margin: 0;
  font-family: var(--heading-font);
}

.blog-hero .blog-item .post-title a {
  color: var(--contrast-color);
}

.blog-hero .blog-item .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

/* -------------------- */
/* Featured Posts       */
/* -------------------- */

.featured-posts {
  overflow: hidden;
  position: relative;
}

.featured-posts .blog-posts-slider .swiper-wrapper {
  height: auto !important;
}

.featured-posts .blog-post-item {
  position: relative;
  height: 375px;
  overflow: hidden;
  border-radius: 15px;
}

.featured-posts .blog-post-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-posts .blog-post-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 75%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.featured-posts .blog-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: var(--contrast-color);
  z-index: 2;
}

.featured-posts .blog-post-content .post-meta {
  margin-bottom: 15px;
  font-size: 14px;
}

.featured-posts .blog-post-content .post-meta span {
  display: inline-block;
  margin-right: 20px;
}

.featured-posts .blog-post-content .post-meta span i {
  margin-right: 5px;
  font-size: 16px;
}

.featured-posts .blog-post-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
  line-height: 1.3;
}

.featured-posts .blog-post-content h2 a {
  color: var(--contrast-color);
  transition: color 0.3s ease;
}

.featured-posts .blog-post-content h2 a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

.featured-posts .blog-post-content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.featured-posts .blog-post-content .read-more:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content .read-more i {
  margin-left: 8px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.featured-posts .blog-post-content .read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-item {
    height: 450px;
  }
  
  .featured-posts .blog-post-content {
    padding: 25px;
  }
  
  .featured-posts .blog-post-content h2 {
    font-size: 20px;
  }
}

/* -------------------- */
/* Category Section     */
/* -------------------- */

.category-section .featured-post {
  margin-bottom: 40px;
}

.category-section .featured-post .post-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.category-section .featured-post .post-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.category-section .featured-post .category-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.category-section .featured-post .post-category {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-section .featured-post .author-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.category-section .featured-post .author-meta .author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.category-section .featured-post .author-meta .author-name {
  color: var(--heading-color);
  font-weight: 500;
}

.category-section .featured-post .author-meta .post-date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .featured-post .author-meta .post-date:before {
  content: "-";
  margin: 0 8px;
}

.category-section .featured-post .title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 10px;
}

.category-section .featured-post .title a,
.category-section .list-post .title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.category-section .featured-post .title a:hover,
.category-section .list-post .title a:hover {
  color: var(--accent-color);
}

/* List Posts */
.category-section .list-post {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.category-section .list-post:last-child {
  margin-bottom: 0;
}

.category-section .list-post .post-img {
  flex: 0 0 100px;
  border-radius: 8px;
  overflow: hidden;
}

.category-section .list-post .post-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.category-section .list-post .post-content {
  flex: 1;
}

.category-section .list-post .post-category {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 8px;
  display: inline-block;
}

.category-section .list-post .title {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 8px;
}

.category-section .list-post .post-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .list-post .post-meta .read-time:after {
  content: "•";
  margin: 0 8px;
}

/* -------------------- */
/* Call to Action 2     */
/* -------------------- */

.call-to-action-2 {
  position: relative;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
}

.call-to-action-2 .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.call-to-action-2 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.call-to-action-2 p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.call-to-action-2 .features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.call-to-action-2 .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action-2 .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action-2 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action-2 .features .feature-item span {
  font-weight: 500;
}

/* CTA Buttons */
.call-to-action-2 .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.call-to-action-2 .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.call-to-action-2 .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action-2 .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  background-color: transparent;
}

.call-to-action-2 .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Content Right */
.call-to-action-2 .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
  position: relative;
}

.call-to-action-2 .content-right img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action-2 .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action-2 .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-2 .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action-2 .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action-2 .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action-2 .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Decoration */
.call-to-action-2 .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action-2 .decoration .circle-1,
.call-to-action-2 .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action-2 .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action-2 .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* -------------------- */
/* Latest Posts         */
/* -------------------- */

.latest-posts article,
.category-postst article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.latest-posts .post-img,
.category-postst .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.latest-posts .post-img img,
.category-postst .post-img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.latest-posts article:hover .post-img img,
.category-postst article:hover .post-img img {
  transform: scale(1.05);
}

.latest-posts .post-category,
.category-postst .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
  display: inline-block;
}

.latest-posts .title,
.category-postst .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px;
}

.latest-posts .title a,
.category-postst .title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.latest-posts .title a:hover,
.category-postst .title a:hover {
  color: var(--accent-color);
}

.latest-posts .post-author-img,
.category-postst .post-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.latest-posts .post-author,
.category-postst .post-author {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.latest-posts .post-date,
.category-postst .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/* -------------------- */
/* Call to Action       */
/* -------------------- */

.call-to-action .container {
  padding: 80px 80px 0;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.call-to-action .cta-form {
  display: flex;
  max-width: 500px;
}

.call-to-action .cta-form .form-control {
  height: 50px;
  border-radius: 25px 0 0 25px;
  border: 1px solid var(--accent-color);
  border-right: none;
  padding: 0 20px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.call-to-action .cta-form .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.call-to-action .cta-form .btn {
  height: 50px;
  border-radius: 0 25px 25px 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 30px;
  font-weight: 600;
  border: 1px solid var(--accent-color);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.call-to-action .cta-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

/* -------------------- */
/* Blog Details         */
/* -------------------- */

.blog-details {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Image */
.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Article Content */
.blog-details .article-content {
  padding: 0 1rem;
}

/* Content Header */
.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

/* Article Body */
.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
}

/* Content Image */
.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

/* Highlight Box */
.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

/* Content Grid */
.blog-details .article-content .content .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Blockquote */
.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

/* Meta Bottom */
.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/* -------------------- */
/* Blog Author          */
/* -------------------- */

.blog-author .author-box {
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-author .author-box:hover {
  transform: translateY(-5px);
}

.blog-author .author-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--surface-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-author .author-img:hover {
  transform: scale(1.05);
}

.blog-author .author-social-links {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.blog-author .author-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.blog-author .author-social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.blog-author .author-social-links a.linkedin:hover { background-color: #0077b5; }
.blog-author .author-social-links a.twitter:hover { background-color: #000000; }
.blog-author .author-social-links a.github:hover { background-color: #333333; }
.blog-author .author-social-links a.facebook:hover { background-color: #1877f2; }
.blog-author .author-social-links a.instagram:hover { 
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.blog-author .author-content {
  padding-left: 2rem;
  flex: 1;
}

.blog-author .author-content .author-name {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: var(--heading-color);
  font-weight: 700;
}

.blog-author .author-content .author-title {
  display: inline-block;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.blog-author .author-content .author-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin: 1rem 0;
}

.blog-author .author-content .author-website {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.blog-author .author-content .author-website a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-author .author-content .author-website a i {
  font-size: 1.1rem;
}

.blog-author .author-content .author-website a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  transform: translateX(3px);
}

.blog-author .author-content .author-website .more-posts {
  font-weight: 500;
}

/* -------------------- */
/* Blog Comments        */
/* -------------------- */

.blog-comments {
  padding-bottom: 30px;
}

.blog-comments .section-header {
  margin-bottom: 40px;
}

.blog-comments .section-header h3 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-comments .section-header h3 .comment-count {
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
  font-size: 24px;
  font-weight: 500;
}

.blog-comments .comments-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-comments .comment-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-card:hover {
  border-left-color: var(--accent-color);
  transform: translateX(5px);
}

.blog-comments .comment-card.reply {
  margin-left: 48px;
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background-color: color-mix(in srgb, var(--surface-color), black 3%);
}

@media (min-width: 768px) {
  .blog-comments .comment-card.reply {
    margin-left: 85px;
  }
}

.blog-comments .reply-thread {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Comment Header */
.blog-comments .comment-header {
  margin-bottom: 20px;
}

.blog-comments .comment-header .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-comments .comment-header .user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comments .comment-header .user-info .meta .name {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-comments .comment-header .user-info .meta .date i {
  font-size: 13px;
}

/* Comment Content */
.blog-comments .comment-content p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Comment Actions */
.blog-comments .comment-actions {
  display: flex;
  gap: 20px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: var(--accent-color);
}

/* -------------------- */
/* Blog Comment Form    */
/* -------------------- */

.blog-comment-form {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 30px;
}

.blog-comment-form form {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-comment-form .section-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.blog-comment-form .section-header h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.blog-comment-form .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin: 0;
}

/* Form Groups */
.blog-comment-form .form-group {
  margin-bottom: 20px;
}

.blog-comment-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 14px;
}

.blog-comment-form .form-group .form-control {
  height: 48px;
  padding: 10px 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.blog-comment-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  outline: none;
}

.blog-comment-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .form-group textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

/* Submit Button */
.blog-comment-form .btn-submit {
  padding: 12px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.blog-comment-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.blog-comment-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* -------------------- */
/* Quest Guide Banner   */
/* -------------------- */
.quest-guid-banner {
  display: flex;
  align-items: end;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  padding-bottom: 50px;
  margin: 0;
  height: 550px;
  border-bottom: 6px solid #fe7033; /* removed conflicting border */
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.shade-overlay {
  position: absolute;
  inset: 0; /* cleaner than top/left/width/height */
  background: linear-gradient(to top, #0000009e, #00000047, transparent);
  z-index: 1;
}
/* Pagination position */
.qg-home-banner.js-slick-carousel 
.u-slick__pagination:not(.u-slick__pagination--block) {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px;
    transform: translateX(-235%);
}

/* Active dot */
.qg-home-banner.js-slick-carousel 
.u-slick__pagination li.slick-active span {
    background: var(--accent-color) !important;
}

/* Default dots */
.qg-home-banner.js-slick-carousel 
.u-slick__pagination li span {
    background-color: var(--background) !important;
    /*border: 2px solid var(--background) !important;*/
}

.quest-content {
  position: relative;
  z-index: 2;
  max-width: 1224px;
  width: 100%;
  padding: 0 2rem;
}
.sec-2 h1,
.sec-2 h2{
    letter-spacing: 0.2px;
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 500;
    word-spacing: 0.5px;
}
.content-box h1,
.content-box h2,
.content-box span:first-child{
  font-weight: 500;
  font-size: clamp(20px, 4vw, 36px);
  color: #ffffff;
  letter-spacing: -1.04px;
  margin-bottom: 0.5rem; 
  font-family: var(--heading-font);
      line-height: 50px;
}

.content-box span {
font-weight: 400;
font-size: clamp(22px, 4.5vw, 13px);

}

.content-box p {
  font-weight: 400;
    color: rgb(255 255 255 / 81%);
  font-size: 1.1rem;
margin: 1rem 0rem 2rem 0;
}

.quest-logo-img img {
  width: 144px;
  height: 40px;
  object-fit: contain;
}

#quest-img {
  position: absolute;
  top: 0;
  transform: translateY(40px);
}

.qg-title {
  font-weight: 500;
  font-size: 20px;  /* fixed missing semicolon */
  letter-spacing: -1.04px;
}

.quest-btn:hover {
  background-color: var(--accent-color);
  box-shadow: none;
  color: #ffffff;
}

.color_theme {
  color: #f75815;
}
.banner-side-info {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  background: #0000004f;
  padding: 20px;
  border-radius:1rem;
  z-index: 3;
  max-width: 350px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}
.banner-side-info .info-text span {
  margin: 0;
color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.banner-side-info .info-text p {
  margin: 0;
  font-size: 13px;
  text-align: justify;
  color: rgba(255,255,255,0.8); 
    margin-top: 10px
}
/* -------------------- */
/* Location Quest       */
/* -------------------- */

.location-quest {
  position: relative; 
  z-index: 9;
  font-size: 0.975rem;
  font-weight: 500;
  letter-spacing: 0.95px;
  text-transform: capitalize;
  display: inline-block;
  background: rgba(0, 0, 0, 0.38);
  padding: 5px 10px;
  border-radius: 1rem;
  margin-top: 15px;
  margin-left: 15px;
  color: var(--background-color);
}

.location-quest .fa-circle {
  font-size: 12px;
  margin-right: 5px;
  color: var(--accent-color);
}

/* -------------------- */
/* Quest Box Guide      */
/* -------------------- */

.quest-box-guide .p-3 {
  height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--nav-dropdown-background-color);
  border: 1px solid var(--accent-color);
  padding: 1.5rem;
  text-align: center;
}

.quest-box-guide p {
  font-size: 1rem;
  color: #555555;
  font-weight: 400;
  margin-bottom: 0;
}

/* -------------------- */
/* Footer Styles        */
/* -------------------- */

.footer-text {
  letter-spacing: 0;
  word-spacing: -1px;
  text-align: justify;
  margin-top: 15px;
}

.footer-text p {
  font-weight: 400;
  font-size: 14px;
  color: #8c98a4;
  text-align: start;
  margin-bottom: 0;
}

.footer {
  border-radius: 8px;
  border-top: none;
  background-image: linear-gradient(90deg, #ff4228 5.36%, #ffd698fa, #ffc172);
  background-size: 100% 6px;
  background-repeat: no-repeat;
  background-position: top;
}

.footer-top {
  padding-top: 6px;
}

.footer-bottom {
  background: #6d6d6d;
  color: var(--contrast-color);
  padding: 1rem 0;
}

.footer li a {
  color: var(--default-color);
  transition: color 0.3s ease;
}

.footer li a:hover {
  color: var(--accent-color);
}

/* -------------------- */
/* Quest Components     */
/* -------------------- */

.quest-image-container img {
  width: 200px;
  height: 70px;
  object-fit: cover;
}

.quest-dmc h4 {
  color: var(--background-color);
  font-weight: 400;
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  text-align: right;
}

/* Partners */
.partner-card {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
}

.partner-logo-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.site-logo img {
  max-width: 200px;
  max-height: 60px;
  object-fit: contain;
}

.partners-section .card {
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.partners-section .card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Blog Post Content */
.blog-post-content h3 a {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffd026f2;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.blog-post-content h3 a:hover {
  color: color-mix(in srgb, #ffd026f2, black 20%);
}

.bg-color-quest {
  background: rgba(223, 223, 223, 0.75);
}

/* Post Category */
.post-category img {
  height: 28px;
  width: auto;
  object-fit: cover;
  margin-right: 5px;
  border-radius: 30px;
}

/* Inclusion List */
.inclusion {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin: 0;
  gap: 10px;
}

.inclusion li {
  font-size: 0.89rem;
  list-style: none;
  flex-grow: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.inclusion li i {
  font-size: 10px;
  padding-right: 7px;
  color: var(--accent-color);
}

/* -------------------- */
/* Google Translate Hide */
/* -------------------- */

.VIpgJd-ZVi9od-ORHb-OEVmcd,
.goog-te-gadget,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
  visibility: hidden !important;
}

/* -------------------- */
/* Dropdown & Currency  */
/* -------------------- */

.custom-dropdown {
  position: relative;
}

.dropdown-btn {
    background: var(--background-color);
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 5px;
    width: auto;
    height: 35px;
}
.shopping-cart{
    padding-left: 0px !important;
}
.dropdown-btn span {
  font-size: 18px;
}

.dropdown-btn img {
  width: 20px;
  height: 18px;
  object-fit: cover;
}

.dropdown-btn .bi-chevron-down {
  transform: rotate(0);
  transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-btn .bi-chevron-down {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--surface-color);
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 160px;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-content li {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.dropdown-content li img {
  width: 20px;
  height: 15px;
  object-fit: cover;
}

.dropdown-content li:hover {
  background-color: #f0f0f0;
}

.custom-dropdown.open .dropdown-content,
.custom-dropdown:hover .dropdown-content {
  display: block;
}

/* Currency List */
.currency-list {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--surface-color);
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  width: 160px;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.currency-list li {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.currency-list li img {
  width: 20px;
  height: 15px;
  object-fit: cover;
}

.currency-list li:hover {
  background-color: #f0f0f0;
}

.currency-list.open {
  display: block;
}

/* Language Currency */
.language-currency {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}

.currency-translate {
  display: inline-block;
}

#selected-flag {
  display: inline-block;
  width: 20px;
  height: 16px;
  object-fit: cover;
}

#selected-language {
  width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* -------------------- */
/* Right Icons          */
/* -------------------- */

.right-ico {
  padding-left: 0;
}

.right-ico li {
  list-style: none;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.right-ico li i {
  color: var(--accent-color);
  margin-right: 10px;
}

.right-ico li span {
  margin-right: 10px;
}

/* -------------------- */
/* Tour & Sightseeing   */
/* -------------------- */

.sightseeing img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.tour-d {
  border: 2px dashed var(--accent-color);
  padding: 10px 0;
  border-radius: 1rem;
}

/* -------------------- */
/* Packages Container   */
/* -------------------- */

#packages-container .card-body h5 {
    font-size: 1.2rem;
    color: var(--bs-emphasis-color);
    margin: 10px 0px;
    font-weight: 500;
}

#packages-container .card-body p {
  font-size: 0.9rem;
  color: #555555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

#packages-container .card-body .tour-duration .nght {
  display: inline-block;
  border: 1px solid #cccccc;
  padding: 5px 10px;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

/* -------------------- */
/* HL Rating            */
/* -------------------- */

.hl-rating {
  position: relative;
  font-size: 0.875rem;
  display: inline-block;
  color: var(--background-color);
  background: #000000;
  padding: 4px 10px 4px 30px;
  border-radius: 0 16px 16px 0;
  font-weight: 400;
  overflow: hidden;
}

.hl-rating::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 30px;
  height: 37px;
  background: #ffffff;
  border-radius: 50%;
}

/* -------------------- */
/* Quest Cards          */
/* -------------------- */

.q-card {
  height: 250px;
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
}

.package-category .badge {
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: auto;
  height: auto;
}

/* QG Stay Strip */
.qg-stay-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.qg-location {
  font-weight: 500;
  font-size: 0.9rem;
}

.qg-duration {
  font-weight: 700;
  color: #1a1a1a;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
}

.qg-separator {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  margin: 0 2px;
}

.qg-separator .fa-circle:before {
  font-size: 0.65rem;
}

/* QG Section */
.qg-section {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

/* Package Pricing */
.mp-package-pricing {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mp-price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* Rack Rate */
.rack-rate {
  position: relative;
  display: inline-block;
  color: #484848;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0;
  text-decoration: none;
}

.rack-rate:before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #e00000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-10deg);
}

/* Discount Badge */
.qg-discount-badge {
  background: #e8f5e9;
  padding: 3px 10px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.qg-save-text {
  font-size: 10px;
  color: #2e7d32;
  font-weight: 600;
  text-transform: uppercase;
}

.qg-save-amount {
  font-size: 12px;
  color: #2e7d32;
  font-weight: 700;
}

/* Final Price */
.mp-final-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.qg-current-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e00000;
}

.qg-per-person {
  font-size: 12px;
  color: #666666;
}

/* Package Item */
.package-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 8px;
  padding-bottom: 3px;
  border-bottom: 1px dashed #cccccc;
  font-size: 0.8rem;
}

.package-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.package-item .package-title {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 500;
  color: #3b444f;
}

.package-item .package-title i.fa-circle {
  padding-right: 3px;
  font-size: 7px;
}

/* NS Badge */
.ns {
  padding: 4px 6px;
  background: var(--accent);
  color: #3b444f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ns .fa-arrow-right:before {
  font-size: 10px;
  vertical-align: middle;
}

/* Strip Section */
.strip-qg-pck-sec {
  border: 1px solid rgba(54, 54, 54, 0.38);
  border-radius: 1rem;
  padding: 10px;
  background: rgba(239, 239, 239, 0.51);
}

.qg-pricing {
  border-right: 1px dashed #aeaeae;
  padding-right: 15px;
}

.qgi-pck-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
}

/* Package Description */
.pdesc p {
  font-size: 0.9rem;
  text-align: justify;
  line-height: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Holiday Card */
.holiday-pck-card {
  border: 1px dashed var(--accent-color);
  background-color: rgba(243, 243, 243, 0.76);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.holiday-pck-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* -------------------- */
/* Accordion            */
/* -------------------- */

#basicsAccordion1 .card {
  border-radius: 1rem;
  border: 1px solid #cccccc;
  margin-bottom: 0.5rem;
}

/* -------------------- */
/* Reach Out QG         */
/* -------------------- */

.reach-out-qg {
  background: #ebebeb;
  padding: 1rem;
}

/* -------------------- */
/* Testimonial Card     */
/* -------------------- */

.testimonial-card .card-body {
  border-bottom: 5px solid;
  border-image: linear-gradient(to right, #ff5858, #ffad14) 1;
  padding: 1.5rem;
}

.testimonial-card .flex-shrink-0 img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* -------------------- */
/* Quest Tab Package    */
/* -------------------- */

.quest-tab-pck {
  position: relative;
}

.quest-tab-pck .tab-link.nav-link {
  color: #000000;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.quest-tab-pck .tab-link.nav-link:hover {
  color: var(--accent-color);
}

.quest-tab-pck .tab-link.nav-link.active {
  color: var(--background-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* -------------------- */
/* Catalog Package      */
/* -------------------- */

.catalog-pck {
  width: 100%;
  max-width: 500px;
  margin: 5px 0;
  padding: 10px;
  border: 1px solid var(--accent-color);
  border-radius: 0.8rem;
  background-color: var(--surface-color);
}

/* -------------------- */
/* Share Component      */
/* -------------------- */

.share {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #e9ecef;
  border-radius: 0 8px 8px 0;
  padding: 10px 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.share ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.share li {
  margin: 0;
  padding: 0;
  display: block;
}

.share a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.share a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.share a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Tooltips */
.share a::before,
.share a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.share a::after {
  content: attr(data-tooltip);
  left: 110%;
  background: #333333;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1001;
}

.share a::before {
  content: "";
  left: 100%;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #333333;
}

.share a:hover::before,
.share a:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Like Button */
.share .like {
  position: relative;
}

.share .like .like-count {
  position: absolute;
  top: -5px;
  right: -15px;
  background: var(--accent-color);
  color: var(--background-color);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.share .like.liked {
  background: #ffeef0;
}

.share .like.liked img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(89%) saturate(2878%)
    hue-rotate(346deg) brightness(104%) contrast(97%);
}

.share .like.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.share .like:not(.liked):hover .like-count {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* -------------------- */
/* Responsive Styles    */
/* -------------------- */

@media (max-width: 1199px) {
  .blog-hero .blog-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .blog-hero .blog-item.featured {
    grid-column: span 6;
  }
  
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 3;
  }
}

@media (max-width: 991.98px) {
  .call-to-action-2 {
    padding: 2rem;
  }
  
  .call-to-action-2 .content-right {
    width: 100%;
    margin-top: 2rem;
  }
  
  .call-to-action-2 .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
  
  .call-to-action .cta-content {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .call-to-action .cta-image {
    text-align: center;
  }
  
  .category-section .featured-post .title {
    font-size: 18px;
  }
  
  .call-to-action .container {
    padding: 60px 60px 0;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 0.875rem !important;
  }
    #quest-guid-banner{
    height: 100%;
    aspect-ratio: 4 / 3;
    }
    .content-box h1, .content-box h2, .content-box span:first-child{
    line-height: 1.5;
    }
    .fn-f {font-size: 13px;}
    .qg-home-banner.js-slick-carousel .u-slick__pagination:not(.u-slick__pagination--block){
    left: 0;
    right: auto;
    transform: none;
    }
    .banner-side-info .info-text p{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;

    }
  #scrollLogo{
  margin-left:10px;
  }
    .navbar-toggler {
        order: 1 !important;
            margin-left: 0rem !important;
    }

    .others-options {
        order: 2 !important;
    }

    .others-options .quest-guide img {
        max-width: 150px;
    
    }

    .shopping-cart {
        order: 3 !important;
       
    }



  .qg-imp-gallery {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
   .dropdown-btn{
      border:none;
   }
  .u-header__section{
      padding:0px !important;
  }
  .quest-image-container {
    margin-top: 15px;
  }
  
  .list-group li {
    font-size: 0.9rem !important; 
    text-align: justify;
  }
  .quest-content{
    padding: 15px;
    padding-top: 150px;
  }
  .blog-hero .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-hero .blog-item.featured,
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 1;
  }
  
  .blog-hero .blog-item.featured .post-title {
    font-size: 1.5rem;
  }
  
  .featured-posts .blog-post-item {
    height: 450px;
  }
  
  .featured-posts .blog-post-content {
    padding: 25px;
  }
  
  .featured-posts .blog-post-content h2 {
    font-size: 22px;
  }
  
  .featured-posts .blog-post-content p {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .category-section .list-post .post-img {
    flex: 0 0 80px;
  }
  
  .category-section .list-post .post-img img {
    width: 80px;
    height: 80px;
  }
  
  .category-section .list-post .title {
    font-size: 15px;
  }
  
  .blog-details .hero-img {
    height: 350px;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
  
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
  
  .blog-details .article-content .meta-bottom {
    grid-template-columns: 1fr;
  }
  
  .blog-author .author-box {
    flex-direction: column;
    text-align: center;
  }
  
  .blog-author .author-content {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .blog-author .author-content .author-website {
    justify-content: center;
  }
  
  .blog-comments .section-header {
    margin-bottom: 30px;
  }
  
  .blog-comments .section-header h3 {
    font-size: 28px;
  }
  
  .blog-comments .section-header h3 .comment-count {
    font-size: 20px;
  }
  
  .blog-comments .comment-card {
    padding: 20px;
  }
  
  .blog-comments .comment-card.reply {
    margin-left: 20px;
  }
  
  .blog-comments .comment-header .user-info img {
    width: 40px;
    height: 40px;
  }
  
  .blog-comments .comment-header .user-info .meta .name {
    font-size: 15px;
  }
  
  .blog-comments .comment-header .user-info .meta .date {
    font-size: 13px;
  }
  
  .blog-comments .comment-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .blog-comments .comment-actions .action-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
  
  .blog-comment-form {
    padding: 20px;
  }
  
  .blog-comment-form .section-header h3 {
    font-size: 24px;
  }
  
  .blog-comment-form .btn-submit {
    width: 100%;
  }
  
  .share {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    gap: 15px;
    margin-bottom: 0;
  }
  
  .share ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .share a::after,
  .share a::before {
    display: none;
  }
  
  .share .like .like-count {
    top: -10px;
    right: 0;
    width: 21px;
    height: 18px;
    font-size: 9px;
  }
  
  .main-banner img {
    height: 250px !important;
    object-fit: cover;
  }
  
  .quest-tab-pck .tab-link.nav-link {
    padding: 8px 12px;
    font-size: 0.89rem;
  }
  
  .quest-tab-pck {
    top: 0 !important;
  }
  
  .tour-d span,
  .inc li,
  .list-unstyled li {
    font-size: 0.89rem;
  }
  
  .tour_details_top_bottom_text .flex-column {
    flex-direction: row !important;
  }
  
  .blogs figure img {
    height: 250px !important;
    object-fit: cover;
  }
  
  .tour_details_top_bottom_text li span.d-md-none {
    display: none !important;
  }
  
  .tour_details_top_bottom_text li img {
    display: block !important;
  }
  
  .qg-banner-title {
    font-size: 1.5rem !important;
  }
  
  .qg-banner-description,
  .qg-banner-feature {
    font-size: 0.95rem !important;
  }
  
  .quest-dmc h4 {
    margin-top: 25px;
    text-align: left;
    font-size: 1.1rem;
  }
  .content-box p {
      line-height: 1.4; 
      margin-bottom: 10px;

  }
  .btn,
  .footer li a {
    font-size: 0.875rem;
  }
  
  .pcontent {
    padding-bottom: 0;
  }
  
  .product-card-carousel-block .text-dark {
    margin-bottom: 0;
  }
  
  .qg-stay-strip.compact {
    font-size: 12px;
    padding: 6px 12px;
    gap: 6px;
  }
  
  .qg-stay-item {
    gap: 3px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    padding: 25px 15px 0;
    border-radius: 0;
  }
  
  .call-to-action .cta-form .btn {
    padding: 0 15px;
  }
  
  .call-to-action .cta-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .call-to-action .cta-form .form-control,
  .call-to-action .cta-form .btn {
    border-radius: 25px;
    width: 100%;
  }
  
  .call-to-action .cta-form .form-control {
    border-right: 1px solid var(--accent-color);
  }
}

@media (max-width: 480px) {
  .qg-imp-gallery {
    grid-template-columns: 1fr !important;
  }
  
  .qg-stay-item {
    white-space: normal;
  }
  
  .mp-price-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------------------- */
/* AOS Animation Fix    */
/* -------------------- */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* -------------------- */
/* Utility Classes      */
/* -------------------- */

.thumb-t {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.fn-f {
  color: #3b444f;
}

.h-strip1 .hl-rating,
.h-strip1 .nght {
  font-size: 0.8rem;
}

.h-strp {
  font-size: 0.8rem;
}
 .reach-out-qg .btn-icon .fab:before{
 color:var(--background);
 }
.image-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem; 
width: 100%;
height:100%;
}

.grid-img {
width: 100%;
height: auto;
object-fit: cover;
display: block;
}

.image-grid {
grid-auto-rows: minmax(150px, auto); 
}

.grid-img {
height: 100%;
object-fit: cover;
}

.sticky-top.quest-tab-pck {
top: 90px;
background-color: #ffffff !important;
width: 100% !important;
}
.sticky-top.quest-tab-pck,
.sticky-top.quest-tab-pck * {
transform: none !important;
z-index: 1;
}
section:has(.sticky-top),
.section:has(.sticky-top) {
overflow: visible !important;
}
.sticky-top.quest-tab-pck,
.sticky-top.quest-tab-pck::before,
.sticky-top.quest-tab-pck::after {
-webkit-transform: translateZ(0);
transform: translateZ(0);
}

.quest-tab-pck {
position: sticky !important;
top: 0;
z-index: 9999;
}
.rating-badge{
    border: 1px solid #f56632ad;
    border-radius: 0.8rem;
}