/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #031119;
  /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.8);
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e0e9f2;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1d60ec;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1b262c;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --primary-rgb: 29, 96, 236;
  --secondary-rgb: 0, 128, 255;
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.8);
  /* The default color of the main navmenu links */
  --nav-hover-color: #1d60ec;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #29343a;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #29343a;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(255, 255, 255, 0.8);
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1d60ec;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #0d1d26;
  --surface-color: #16262f;
}

.dark-background {
  --background-color: #1d60ec;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 70px;
  /* Set your desired navbar height */

}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 1px;
  height: 100%;
  /* Take full navbar height */
}

.header .logo img {
  width: 150px;
  /* Your desired logo width */
  height: 120px;
  /* Your desired logo height */
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# 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;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 80px 0 40px;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
  padding-right: 20px;
}

.hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

.hero .company-badge {
  display: inline-block;
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
}

.hero .hero-video {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero .hero-video video {
  transform: scale(0.9);
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-color: white;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero .hero-video video:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.hero .stat-item:hover {
  transform: translateY(-5px);
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
  font-size: 36px;
  color: #0d6efd;
}

.hero .stat-item .stat-icon i {
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero .hero-buttons .btn {
    margin: 5px 0;
  }
}

@media (min-width: 992px) {
  .hero .hero-video video {
    margin-left: 90px;
    margin-bottom: 8px;
    transform: scale(1.0);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero .hero-video video {
    margin-left: 0;
    margin-bottom: 30px;
    transform: scale(1.1);
  }
}

@media (max-width: 767px) {
  .hero .hero-video video {
    margin-left: 0;
    margin-bottom: 30px;
    transform: scale(1);
    width: 85%;
    margin: 0 auto;
  }

  .hero .company-badge {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero .stat-item {
    padding: 1.5rem;
  }

  .hero .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .hero .hero-video video {
    width: 95%;
    transform: scale(1.0);
  }
}


@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  left: 5%;
  bottom: 0px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 2;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: badgeFloat 4s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: auto;
    width: fit-content;
    margin: 0;
    z-index: 10;
    transform: scale(0.85);
    transform-origin: bottom left;
  }

  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}



/*--------------------------------------------------------------
# Features 2 Section (How It Works)
--------------------------------------------------------------*/
.features-2 {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.features-2 .feature-item {
  margin-bottom: 40px;
}

.features-2 .feature-content-wrap {
  gap: 20px;
}

.features-2 .feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-size: 32px;
  flex-shrink: 0;
}

.features-2 .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .image-column {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

.features-2 .profile {
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.features-2 .profile img {
  max-width: 90%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.features-2 .profile img:hover {
  transform: scale(1.03) translateY(-5px);
}

.features-2 .section-title h2 {
  margin-bottom: 2rem;
}

.features-2 .section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: none;
  bottom: -15px;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

@media (min-width: 992px) {
  .features-left .feature-content-wrap {
    flex-direction: row-reverse;
    justify-content: flex-start;
    text-align: right;
  }

  .features-right .feature-content-wrap {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 991px) {
  .features-2 {
    padding: 60px 0;
  }

  .features-2 .feature-content-wrap {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .features-2 .feature-icon {
    margin: 0 auto 15px;
  }

  .features-2 .row {
    flex-direction: column;
  }

  .features-2 .image-column {
    order: 1;
    margin-bottom: 40px;
  }

  .features-2 .features-left {
    order: 2;
  }

  .features-2 .features-right {
    order: 3;
  }
}

@media (max-width: 575px) {
  .features-2 .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer-compact {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  padding: 30px 0 20px 0;
}

.footer-compact .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-compact .footer-brand {
  flex: 1;
  min-width: 300px;
}

.footer-compact .footer-brand .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.footer-compact .footer-brand .logo img {
  max-height: 60px;
  transform: scale(2.3);
  margin-left: 30px;
}

.footer-compact .footer-links {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 250px;
}

.footer-compact .links-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.footer-compact .links-horizontal a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
  white-space: nowrap;
}

.footer-compact .links-horizontal a:hover {
  color: var(--accent-color);
}

.footer-compact .footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 200px;
  gap: 15px;
}

.footer-compact .social-links {
  display: flex;
  gap: 8px;
}

.footer-compact .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
  text-decoration: none;
}

.footer-compact .footer-email {
  font-size: 40px;
  color: var(--default-color);
  font-family: var(--heading-font);
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .footer-right {
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Utility Classes & Components (from app.css)
--------------------------------------------------------------*/
.text-custom-blue {
  color: #1d60ec !important;
}

.text-custom-blue-hover:hover {
  color: #164db3 !important;
}

[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
  margin: 0 auto;
}

.custom-tabs {
  border: none;
  background: var(--surface-color);
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: nowrap;
  width: auto;
  max-width: max-content;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.custom-tabs .nav-item {
  margin: 0;
  display: flex;
  align-items: center;
}

.custom-tabs .nav-link {
  padding: 12px 36px;
  border-radius: 50px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-tabs .nav-link h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: inherit;
  transition: color 0.3s ease;
}

.custom-tabs .nav-link:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.custom-tabs .nav-link.active {
  background: var(--accent-color) !important;
  color: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.custom-tabs .nav-link.active h4 {
  font-weight: 600;
  color: var(--contrast-color);
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(var(--primary-rgb), 0.3);
}

/*--------------------------------------------------------------
# Industry & Use Cases (from solutions.css)
--------------------------------------------------------------*/
.industry-card {
  height: 280px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.industry-card .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease;
}

.industry-card:hover .bg-image {
  transform: scale(1.1);
}

.industry-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(3, 17, 25, 0.9) 10%, transparent 100%);
  transition: all 0.4s ease;
}

.industry-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(3, 17, 25, 0.95) 30%, rgba(3, 17, 25, 0.7) 100%);
}

.industry-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  color: var(--contrast-color);
}

.industry-card h3 {
  color: var(--contrast-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.industry-card p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

.industry-card:hover p {
  max-height: 150px;
  opacity: 1;
  margin-bottom: 1rem;
}

.industry-card .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.industry-card:hover .read-more {
  opacity: 1;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.tab-pane {
  transition: all 0.3s ease;
}

.tab-pane:not(.show) {
  opacity: 0;
  transform: translateY(20px);
}

.tab-pane.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .industry-card {
    height: 250px;
  }

  .industry-card:hover {
    height: auto;
    min-height: 300px;
  }

  .industry-card .card-content {
    padding: 1.5rem;
  }

  .usecase-main-image {
    max-height: 200px;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section (from team.css)
--------------------------------------------------------------*/
.team-modern {
  padding: 80px 0;
  background-color: var(--surface-color);
}

.team-card {
  background-color: var(--background-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  transition: transform 0.5s ease;
  object-fit: cover;
  height: 250px;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(15px);
  transition: all 0.3s ease;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(0);
}

.team-social a {
  width: 32px;
  height: 32px;
  background-color: var(--surface-color);
  border-radius: 50%;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-content {
  padding: 18px;
  text-align: center;
}

.team-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}

.team-content .position {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
}

.team-content .team-bio {
  font-size: 12px;
  color: var(--default-color);
  opacity: 0.7;
}

/*--------------------------------------------------------------
# Success Stories (from success-stories.css)
--------------------------------------------------------------*/
.stat-box {
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.stat-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

.success-story-card {
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: 10px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 40px;
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.story-content {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.client-details h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-details p {
  opacity: 0.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Base Styles & Component Overrides (app.css)
--------------------------------------------------------------*/
/* Base styles - Unique utility classes and component overrides */

/* Global color variables moved to main.css if unique */
:root {
  --primary-rgb: 29, 96, 236;
  --secondary-rgb: 0, 128, 255;
}

/* Custom button states if needed beyond main.css */
.btn-outline-secondary {
  color: var(--default-color);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

/* GLightbox Overrides - Important for site functionality */
.glightbox-container .gslide-description {
  background: var(--surface-color) !important;
}

.glightbox-container .gslide-title {
  color: var(--heading-color) !important;
  font-family: var(--heading-font) !important;
}

/*--------------------------------------------------------------
# Blog Base Styles (blogs.css)
--------------------------------------------------------------*/
/* Blog Header Section */
.blog-header-section {
  background: var(--background-color);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.blog-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 96, 236, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.blog-header-section .container {
  position: relative;
  z-index: 2;
}

.blog-header-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blog-header-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  position: relative;
  display: inline-block;
}

.blog-header-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.blog-header-description {
  font-size: 18px;
  color: var(--default-color);
  line-height: 1.6;
  margin: 30px 0 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Blog Content Section */
.blog-content-section {
  background: var(--background-color);
  padding: 80px 0 120px;
}

/* Blog Posts - Updated for Vertical Layout with Width Constraints */
.blog-posts {
  margin-bottom: 50px;
  max-width: 600px;
  /* Limit the width of the blog posts container */
}

.blog-post-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

/* Override Bootstrap grid to make vertical layout */
.blog-post-card .row {
  display: block;
}

.blog-post-card .col-md-5,
.blog-post-card .col-md-7 {
  width: 100%;
  max-width: 100%;
  flex: none;
}

.blog-post-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  width: 100%;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post-content {
  padding: 30px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.blog-post-meta i {
  color: var(--accent-color);
  margin-right: 5px;
}

.blog-post-title {
  margin-bottom: 15px;
}

.blog-post-title a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--heading-font);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-post-title a:hover {
  color: var(--accent-color);
}

.blog-post-excerpt {
  font-size: 15px;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: var(--contrast-color);
}

.blog-read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

.blog-post-tags {
  display: flex;
  gap: 10px;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--default-color);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

/* Pagination */
.blog-pagination {
  margin-top: 50px;
}

.blog-pagination .pagination {
  justify-content: center;
  margin: 0;
}

.blog-pagination .page-link {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--default-color);
  padding: 10px 15px;
  margin: 0 3px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination .page-item.active .page-link {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

/* No Posts Message */
.no-posts-message {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-posts-icon {
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.7;
}

.no-posts-message h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.no-posts-message p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
}

/* Sidebar */
.blog-sidebar {
  padding-left: 30px;
}

.sidebar-widget {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  position: relative;
  padding-bottom: 10px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Recent Posts Widget */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-image {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
}

.recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content h6 {
  margin-bottom: 8px;
  line-height: 1.4;
}

.recent-post-content h6 a {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h6 a:hover {
  color: var(--accent-color);
}

.recent-post-meta {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.recent-post-meta i {
  color: var(--accent-color);
  margin-right: 3px;
}

/* Categories Widget */
.categories-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-item:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateX(5px);
}

.category-count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.category-item:hover .category-count {
  background: rgba(255, 255, 255, 0.3);
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, var(--accent-color), #2d5cff);
  color: var(--contrast-color);
}

.newsletter-widget .widget-title {
  color: var(--contrast-color);
}

.newsletter-widget .widget-title::after {
  background: rgba(255, 255, 255, 0.3);
}

.widget-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.newsletter-form .input-group {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
  background: transparent;
  border: none;
  color: var(--contrast-color);
  padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
  background: transparent;
  border: none;
  color: var(--contrast-color);
  box-shadow: none;
}

.newsletter-form .btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--contrast-color);
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .blog-sidebar {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .blog-header-title {
    font-size: 42px;
  }

  .blog-sidebar {
    padding-left: 0;
    margin-top: 50px;
  }

  .sidebar-widget {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .blog-header-section {
    padding: 100px 0 40px;
  }

  .blog-header-title {
    font-size: 36px;
  }

  .blog-header-description {
    font-size: 16px;
  }

  .blog-content-section {
    padding: 60px 0 80px;
  }

  .blog-post-image {
    height: 200px;
  }

  .blog-post-content {
    padding: 25px;
  }

  .blog-post-title a {
    font-size: 20px;
  }

  .blog-post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .blog-header-title {
    font-size: 32px;
  }

  .blog-post-content {
    padding: 20px;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .recent-post-item {
    gap: 10px;
  }

  .recent-post-image {
    width: 60px;
    height: 60px;
  }
}



/*!* Blog Header Section *!*/
/*.blog-header-section {*/
/*    background: var(--background-color);*/
/*    padding: 120px 0 60px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.blog-header-section::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: linear-gradient(135deg, rgba(29, 96, 236, 0.1) 0%, transparent 50%);*/
/*    z-index: 1;*/
/*}*/

/*.blog-header-section .container {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

/*.blog-header-subtitle {*/
/*    display: inline-block;*/
/*    font-size: 14px;*/
/*    font-weight: 700;*/
/*    letter-spacing: 2px;*/
/*    color: var(--accent-color);*/
/*    text-transform: uppercase;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.blog-header-title {*/
/*    font-size: 48px;*/
/*    font-weight: 700;*/
/*    margin-bottom: 20px;*/
/*    color: var(--heading-color);*/
/*    font-family: var(--heading-font);*/
/*    position: relative;*/
/*    display: inline-block;*/
/*}*/

/*.blog-header-title::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    bottom: -10px;*/
/*    width: 60px;*/
/*    height: 4px;*/
/*    background: var(--accent-color);*/
/*    border-radius: 2px;*/
/*}*/

/*.blog-header-description {*/
/*    font-size: 18px;*/
/*    color: var(--default-color);*/
/*    line-height: 1.6;*/
/*    margin: 30px 0 0;*/
/*    max-width: 600px;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*}*/

/*!* Blog Content Section *!*/
/*.blog-content-section {*/
/*    background: var(--background-color);*/
/*    padding: 80px 0 120px;*/
/*}*/

/*!* Blog Posts - Updated for Vertical Layout *!*/
/*.blog-posts {*/
/*    margin-bottom: 50px;*/
/*}*/

/*.blog-post-card {*/
/*    background: var(--surface-color);*/
/*    border-radius: 15px;*/
/*    overflow: hidden;*/
/*    margin-bottom: 40px;*/
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    transition: all 0.4s ease;*/
/*}*/

/*.blog-post-card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
/*    border-color: var(--accent-color);*/
/*}*/

/*!* Override Bootstrap grid to make vertical layout *!*/
/*.blog-post-card .row {*/
/*    display: block;*/
/*}*/

/*.blog-post-card .col-md-5,*/
/*.blog-post-card .col-md-7 {*/
/*    width: 100%;*/
/*    max-width: 100%;*/
/*    flex: none;*/
/*}*/

/*.blog-post-image {*/
/*    position: relative;*/
/*    height: 250px;*/
/*    overflow: hidden;*/
/*    width: 100%;*/
/*}*/

/*.blog-post-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    transition: transform 0.4s ease;*/
/*}*/

/*.blog-post-card:hover .blog-post-image img {*/
/*    transform: scale(1.05);*/
/*}*/

/*.blog-post-category {*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    left: 15px;*/
/*    background: var(--accent-color);*/
/*    color: var(--contrast-color);*/
/*    padding: 5px 12px;*/
/*    border-radius: 20px;*/
/*    font-size: 12px;*/
/*    font-weight: 600;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.5px;*/
/*}*/

/*.blog-post-content {*/
/*    padding: 30px;*/
/*}*/

/*.blog-post-meta {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 20px;*/
/*    margin-bottom: 15px;*/
/*    font-size: 13px;*/
/*    color: rgba(255, 255, 255, 0.6);*/
/*}*/

/*.blog-post-meta i {*/
/*    color: var(--accent-color);*/
/*    margin-right: 5px;*/
/*}*/

/*.blog-post-title {*/
/*    margin-bottom: 15px;*/
/*}*/

/*.blog-post-title a {*/
/*    color: var(--heading-color);*/
/*    font-size: 24px;*/
/*    font-weight: 700;*/
/*    font-family: var(--heading-font);*/
/*    text-decoration: none;*/
/*    line-height: 1.3;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.blog-post-title a:hover {*/
/*    color: var(--accent-color);*/
/*}*/

/*.blog-post-excerpt {*/
/*    font-size: 15px;*/
/*    color: var(--default-color);*/
/*    line-height: 1.6;*/
/*    margin-bottom: 25px;*/
/*}*/

/*.blog-post-footer {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    flex-wrap: wrap;*/
/*    gap: 15px;*/
/*}*/

/*.blog-read-more {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    color: var(--accent-color);*/
/*    text-decoration: none;*/
/*    font-weight: 600;*/
/*    font-size: 14px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.blog-read-more:hover {*/
/*    color: var(--contrast-color);*/
/*}*/

/*.blog-read-more i {*/
/*    margin-left: 8px;*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.blog-read-more:hover i {*/
/*    transform: translateX(5px);*/
/*}*/

/*.blog-post-tags {*/
/*    display: flex;*/
/*    gap: 10px;*/
/*}*/

/*.tag {*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    color: var(--default-color);*/
/*    padding: 4px 10px;*/
/*    border-radius: 15px;*/
/*    font-size: 12px;*/
/*    font-weight: 500;*/
/*}*/

/*!* Pagination *!*/
/*.blog-pagination {*/
/*    margin-top: 50px;*/
/*}*/

/*.blog-pagination .pagination {*/
/*    justify-content: center;*/
/*    margin: 0;*/
/*}*/

/*.blog-pagination .page-link {*/
/*    background: var(--surface-color);*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    color: var(--default-color);*/
/*    padding: 10px 15px;*/
/*    margin: 0 3px;*/
/*    border-radius: 8px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.blog-pagination .page-link:hover {*/
/*    background: var(--accent-color);*/
/*    border-color: var(--accent-color);*/
/*    color: var(--contrast-color);*/
/*}*/

/*.blog-pagination .page-item.active .page-link {*/
/*    background: var(--accent-color);*/
/*    border-color: var(--accent-color);*/
/*    color: var(--contrast-color);*/
/*}*/

/*!* No Posts Message *!*/
/*.no-posts-message {*/
/*    background: var(--surface-color);*/
/*    border-radius: 15px;*/
/*    padding: 60px 40px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/

/*.no-posts-icon {*/
/*    font-size: 4rem;*/
/*    color: var(--accent-color);*/
/*    opacity: 0.7;*/
/*}*/

/*.no-posts-message h3 {*/
/*    color: var(--heading-color);*/
/*    margin-bottom: 15px;*/
/*    font-family: var(--heading-font);*/
/*}*/

/*.no-posts-message p {*/
/*    color: var(--default-color);*/
/*    font-size: 16px;*/
/*    line-height: 1.6;*/
/*}*/

/*!* Sidebar *!*/
/*.blog-sidebar {*/
/*    padding-left: 30px;*/
/*}*/

/*.sidebar-widget {*/
/*    background: var(--surface-color);*/
/*    border-radius: 15px;*/
/*    padding: 30px;*/
/*    margin-bottom: 30px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.sidebar-widget:hover {*/
/*    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);*/
/*}*/

/*.widget-title {*/
/*    color: var(--heading-color);*/
/*    font-size: 20px;*/
/*    font-weight: 700;*/
/*    margin-bottom: 20px;*/
/*    font-family: var(--heading-font);*/
/*    position: relative;*/
/*    padding-bottom: 10px;*/
/*}*/

/*.widget-title::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 40px;*/
/*    height: 3px;*/
/*    background: var(--accent-color);*/
/*    border-radius: 2px;*/
/*}*/

/*!* Recent Posts Widget *!*/
/*.recent-posts-list {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 20px;*/
/*}*/

/*.recent-post-item {*/
/*    display: flex;*/
/*    gap: 15px;*/
/*    padding-bottom: 20px;*/
/*    border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/

/*.recent-post-item:last-child {*/
/*    border-bottom: none;*/
/*    padding-bottom: 0;*/
/*}*/

/*.recent-post-image {*/
/*    flex-shrink: 0;*/
/*    width: 70px;*/
/*    height: 70px;*/
/*    border-radius: 8px;*/
/*    overflow: hidden;*/
/*}*/

/*.recent-post-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.recent-post-content h6 {*/
/*    margin-bottom: 8px;*/
/*    line-height: 1.4;*/
/*}*/

/*.recent-post-content h6 a {*/
/*    color: var(--heading-color);*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    text-decoration: none;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.recent-post-content h6 a:hover {*/
/*    color: var(--accent-color);*/
/*}*/

/*.recent-post-meta {*/
/*    display: flex;*/
/*    gap: 10px;*/
/*    font-size: 11px;*/
/*    color: rgba(255, 255, 255, 0.6);*/
/*}*/

/*.recent-post-meta i {*/
/*    color: var(--accent-color);*/
/*    margin-right: 3px;*/
/*}*/

/*!* Categories Widget *!*/
/*.categories-list {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 10px;*/
/*}*/

/*.category-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    padding: 12px 15px;*/
/*    background: rgba(255, 255, 255, 0.05);*/
/*    border-radius: 8px;*/
/*    color: var(--default-color);*/
/*    text-decoration: none;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.category-item:hover {*/
/*    background: var(--accent-color);*/
/*    color: var(--contrast-color);*/
/*    transform: translateX(5px);*/
/*}*/

/*.category-count {*/
/*    background: rgba(255, 255, 255, 0.2);*/
/*    color: var(--contrast-color);*/
/*    padding: 3px 8px;*/
/*    border-radius: 12px;*/
/*    font-size: 11px;*/
/*    font-weight: 600;*/
/*}*/

/*.category-item:hover .category-count {*/
/*    background: rgba(255, 255, 255, 0.3);*/
/*}*/

/*!* Newsletter Widget *!*/
/*.newsletter-widget {*/
/*    background: linear-gradient(135deg, var(--accent-color), #2d5cff);*/
/*    color: var(--contrast-color);*/
/*}*/

/*.newsletter-widget .widget-title {*/
/*    color: var(--contrast-color);*/
/*}*/

/*.newsletter-widget .widget-title::after {*/
/*    background: rgba(255, 255, 255, 0.3);*/
/*}*/

/*.widget-description {*/
/*    color: rgba(255, 255, 255, 0.9);*/
/*    font-size: 14px;*/
/*    line-height: 1.5;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.newsletter-form .input-group {*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    border-radius: 50px;*/
/*    overflow: hidden;*/
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
/*}*/

/*.newsletter-form .form-control {*/
/*    background: transparent;*/
/*    border: none;*/
/*    color: var(--contrast-color);*/
/*    padding: 12px 20px;*/
/*}*/

/*.newsletter-form .form-control::placeholder {*/
/*    color: rgba(255, 255, 255, 0.7);*/
/*}*/

/*.newsletter-form .form-control:focus {*/
/*    background: transparent;*/
/*    border: none;*/
/*    color: var(--contrast-color);*/
/*    box-shadow: none;*/
/*}*/

/*.newsletter-form .btn {*/
/*    background: rgba(255, 255, 255, 0.2);*/
/*    border: none;*/
/*    color: var(--contrast-color);*/
/*    padding: 12px 20px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.newsletter-form .btn:hover {*/
/*    background: rgba(255, 255, 255, 0.3);*/
/*    transform: scale(1.05);*/
/*}*/

/*!* Responsive Design *!*/
/*@media (max-width: 1200px) {*/
/*    .blog-sidebar {*/
/*        padding-left: 20px;*/
/*    }*/
/*}*/

/*@media (max-width: 991px) {*/
/*    .blog-header-title {*/
/*        font-size: 42px;*/
/*    }*/

/*    .blog-sidebar {*/
/*        padding-left: 0;*/
/*        margin-top: 50px;*/
/*    }*/

/*    .sidebar-widget {*/
/*        padding: 25px;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .blog-header-section {*/
/*        padding: 100px 0 40px;*/
/*    }*/

/*    .blog-header-title {*/
/*        font-size: 36px;*/
/*    }*/

/*    .blog-header-description {*/
/*        font-size: 16px;*/
/*    }*/

/*    .blog-content-section {*/
/*        padding: 60px 0 80px;*/
/*    }*/

/*    .blog-post-image {*/
/*        height: 200px;*/
/*    }*/

/*    .blog-post-content {*/
/*        padding: 25px;*/
/*    }*/

/*    .blog-post-title a {*/
/*        font-size: 20px;*/
/*    }*/

/*    .blog-post-footer {*/
/*        flex-direction: column;*/
/*        align-items: flex-start;*/
/*    }*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .blog-header-title {*/
/*        font-size: 32px;*/
/*    }*/

/*    .blog-post-content {*/
/*        padding: 20px;*/
/*    }*/

/*    .sidebar-widget {*/
/*        padding: 20px;*/
/*    }*/

/*    .recent-post-item {*/
/*        gap: 10px;*/
/*    }*/

/*    .recent-post-image {*/
/*        width: 60px;*/
/*        height: 60px;*/
/*    }*/
/*}*/

/*--------------------------------------------------------------
# Blog Home Sections (blogs-home.css)
--------------------------------------------------------------*/
/* Blog Section Base */
.blog-section {
  padding: 100px 0;
  background-color: var(--background-color);
  color: var(--default-color);
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1350px;
  /* Increased container width for 4 cards */
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Title */
.blog-section .section-title {
  margin-bottom: 60px;
  text-align: center;
}

.blog-section .section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  position: relative;
  display: inline-block;
}

.blog-section .section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.blog-section .section-title .section-description {
  max-width: 700px;
  margin: 25px auto 0;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.6;
}

/* Blog Slider Container */
.blog-slider-container {
  position: relative;
  max-width: 1400px;
  /* Increased for 4 cards */
  margin: 0 auto;
  padding: 0 60px;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 120px);
  left: -60px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.slider-btn {
  pointer-events: all;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
  border-color: var(--accent-color);
}

.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: scale(1);
}

/* Blog Slider */
.blog-slider {
  overflow: hidden;
  border-radius: 15px;
}

.blog-cards-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  /* Reduced gap for 4 cards */
  width: calc(100% * 4/4);
  /* 6 cards with 4 visible */
}

/* Blog Card Styling - Updated for 4 cards */
.blog-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  flex: 0 0 calc((100% - 60px) / 4);
  /* 1/4 width minus gaps */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

/* Blog Image - Reduced height for 4 cards */
.blog-image {
  position: relative;
  height: 160px;
  /* Further reduced from 180px */
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Blog Content - Adjusted for 4 cards */
.blog-content {
  padding: 18px;
  /* Slightly reduced padding */
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  /* Reduced gap */
  margin-bottom: 12px;
  font-size: 12px;
  /* Smaller font */
  color: rgba(255, 255, 255, 0.6);
}

.blog-meta i {
  margin-right: 4px;
  color: var(--accent-color);
}

.blog-title {
  font-size: 18px;
  /* Reduced font size */
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--accent-color);
}

.blog-excerpt {
  font-size: 13px;
  /* Smaller font */
  color: var(--default-color);
  line-height: 1.5;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Reduced to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: var(--contrast-color);
}

.blog-read-more i {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

/* Slider Indicators */
.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: var(--accent-color);
  transform: scale(1.2);
}

/* View All Button */
.blog-section .btn-primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.blog-section .btn-primary:hover {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(29, 96, 236, 0.3);
}

.text-center {
  text-align: center;
}

.mt-5 {
  margin-top: 3rem;
}

.ms-2 {
  margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .blog-slider-container {
    max-width: 1200px;
  }

  .blog-cards-wrapper {
    width: calc(100% * 3/3);
    /* Show 3 cards */
  }

  .blog-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

@media (max-width: 1200px) {
  .blog-slider-container {
    max-width: 900px;
  }

  .blog-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

@media (max-width: 992px) {
  .blog-section {
    padding: 80px 0;
  }

  .blog-cards-wrapper {
    width: calc(100% * 2/2);
    /* Show 2 cards */
  }

  .blog-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 768px) {
  .blog-slider-container {
    padding: 0 40px;
  }

  .blog-cards-wrapper {
    width: calc(100% * 1/1);
    /* Show 1 card */
    gap: 15px;
  }

  .blog-card {
    flex: 0 0 100%;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-slider-container {
    padding: 0 15px;
  }

  .slider-nav {
    display: none;
  }

  .blog-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .blog-slider::-webkit-scrollbar {
    display: none;
  }
}

/*--------------------------------------------------------------
# Blog Breadcrumbs (blogs-breadcrumb.css)
--------------------------------------------------------------*/
/* Simple Breadcrumb - No Background Box */
.breadcrumb-section {
  background: var(--background-color);
  padding: 15px 0 0;
}

.breadcrumb {
  margin: 0 0 0 10px;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.breadcrumb-item {
  color: var(--default-color);
}

.breadcrumb-item a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--accent-color);
}

.breadcrumb-item.active {
  color: var(--accent-color);
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
  margin: 0 10px;
}

.breadcrumb i {
  margin-right: 5px;
  font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 10px 0 0;
  }

  .breadcrumb {
    font-size: 13px;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    margin: 0 8px;
  }
}

@media (max-width: 576px) {
  .breadcrumb {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    margin: 0 6px;
  }
}

/*--------------------------------------------------------------
# Blog Details Page (blog-details.css)
--------------------------------------------------------------*/
/* Blog Detail Content Section */
.blog-detail-page .blog-detail-content {
  background: var(--background-color);
  padding: 10px 0 120px;
}

/* Blog Article */
.blog-detail-page .blog-article {
  background: var(--surface-color);
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Featured Image with Overlay */
.blog-detail-page .blog-featured-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(45deg, var(--accent-color), #2d5cff);
}

.blog-detail-page .blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-detail-page .blog-featured-image:hover img {
  transform: scale(1.05);
}

/* Content Overlay - Main overlay with title and meta */
.blog-detail-page .blog-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 60px 40px 40px;
  color: white;
  z-index: 3;
}

/* Category Badge within Image */
.blog-detail-page .blog-content-overlay .blog-category-badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(29, 96, 236, 0.4);
}

.blog-detail-page .blog-content-overlay .blog-category-badge i {
  margin-right: 6px;
  font-size: 13px;
}

/* Blog Title within Image */
.blog-detail-page .blog-content-overlay .blog-detail-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  font-family: var(--heading-font);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Blog Meta within Image */
.blog-detail-page .blog-content-overlay .blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}

/* Author Info */
.blog-detail-page .blog-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-detail-page .author-avatar-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.blog-detail-page .author-name {
  font-weight: 600;
  color: white;
  font-size: 15px;
}

/* Meta Items */
.blog-detail-page .meta-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-detail-page .blog-content-overlay .meta-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.blog-detail-page .blog-content-overlay .meta-item i {
  color: var(--accent-color);
  margin-right: 6px;
  font-size: 16px;
}

/* Share Buttons Overlay (on hover) - Updated to show in top right corner */
.blog-detail-page .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-start;
  /* Changed from center to flex-start */
  justify-content: flex-end;
  /* Changed from center to flex-end */
  padding: 20px;
  /* Added padding to give some space from the edge */
  z-index: 4;
}

.blog-detail-page .blog-featured-image:hover .image-overlay {
  opacity: 1;
}

.blog-detail-page .share-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.blog-detail-page .share-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-right: 10px;
}

.blog-detail-page .share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.blog-detail-page .share-btn.facebook {
  background: #1877f2;
  color: white;
}

.blog-detail-page .share-btn.twitter {
  background: #000000;
  color: white;
}

.blog-detail-page .share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.blog-detail-page .share-btn.email {
  background: #ea4335;
  color: white;
}

.blog-detail-page .share-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Blog Content Text */
.blog-detail-page .blog-content-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 40px;
  padding: 50px;
}

.blog-detail-page .blog-content-text h1,
.blog-detail-page .blog-content-text h2,
.blog-detail-page .blog-content-text h3,
.blog-detail-page .blog-content-text h4,
.blog-detail-page .blog-content-text h5,
.blog-detail-page .blog-content-text h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  margin: 40px 0 20px;
  scroll-margin-top: 100px;
}

.blog-detail-page .blog-content-text h1 {
  font-size: 2.3rem;
}

.blog-detail-page .blog-content-text h2 {
  font-size: 2.0rem;
}

.blog-detail-page .blog-content-text h3 {
  font-size: 1.7rem;
}

.blog-detail-page .blog-content-text h4 {
  font-size: 1.4rem;
}

.blog-detail-page .blog-content-text h5 {
  font-size: 1.2rem;
}

.blog-detail-page .blog-content-text h6 {
  font-size: 1.1rem;
}

.blog-detail-page .blog-content-text p {
  margin-bottom: 25px;
}

.blog-detail-page .blog-content-text ul,
.blog-detail-page .blog-content-text ol {
  margin: 25px 0;
  padding-left: 30px;
}

.blog-detail-page .blog-content-text li {
  margin-bottom: 10px;
}

.blog-detail-page .blog-content-text blockquote {
  background: rgba(29, 96, 236, 0.1);
  border-left: 4px solid var(--accent-color);
  padding: 25px 30px;
  margin: 30px 0;
  font-style: italic;
  font-size: 20px;
  border-radius: 0 15px 15px 0;
}

.blog-detail-page .blog-content-text code {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  color: var(--accent-color);
}

.blog-detail-page .blog-content-text pre {
  background: rgba(0, 0, 0, 0.8);
  padding: 25px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 30px 0;
}

.blog-detail-page .blog-content-text pre code {
  background: none;
  color: #fff;
  padding: 0;
}

.blog-detail-page .blog-content-text img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Blog Tags */
.blog-detail-page .blog-tags-section {
  padding: 0 50px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 30px;
}

.blog-detail-page .blog-tags-section h5 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
}

.blog-detail-page .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-detail-page .blog-tag {
  background: linear-gradient(135deg, var(--accent-color), #2d5cff);
  color: white;
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.blog-detail-page .blog-tag:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(29, 96, 236, 0.4);
}

/* Blog Navigation */
.blog-detail-page .blog-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.blog-detail-page .nav-previous {
  text-align: left;
}

.blog-detail-page .nav-next {
  text-align: right;
}

.blog-detail-page .nav-link {
  display: block;
  background: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-detail-page .nav-link:hover {
  background: linear-gradient(135deg, var(--accent-color), #2d5cff);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(29, 96, 236, 0.3);
  border-color: var(--accent-color);
}

.blog-detail-page .nav-direction {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog-detail-page .nav-direction i {
  font-size: 16px;
}

.blog-detail-page .nav-previous .nav-direction {
  justify-content: flex-start;
}

.blog-detail-page .nav-next .nav-direction {
  justify-content: flex-end;
}

.blog-detail-page .nav-previous .nav-direction i {
  margin-right: 8px;
}

.blog-detail-page .nav-next .nav-direction i {
  margin-left: 8px;
}

.blog-detail-page .nav-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.3;
}

.blog-detail-page .nav-link:hover .nav-title,
.blog-detail-page .nav-link:hover .nav-direction {
  color: white;
}

/* Related Posts */
.blog-detail-page .related-posts {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-detail-page .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.blog-detail-page .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #2d5cff);
  border-radius: 2px;
}

.blog-detail-page .related-post-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.blog-detail-page .related-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.blog-detail-page .related-post-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-detail-page .related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-detail-page .related-post-card:hover .related-post-image img {
  transform: scale(1.1);
}

.blog-detail-page .related-post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 96, 236, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-detail-page .related-post-card:hover .related-post-overlay {
  opacity: 1;
}

.blog-detail-page .read-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
  color: var(--accent-color);
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.blog-detail-page .read-more-btn:hover {
  transform: scale(1.2);
  color: var(--accent-color);
}

.blog-detail-page .related-post-content {
  padding: 20px;
}

.blog-detail-page .related-post-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.blog-detail-page .related-post-meta i {
  color: var(--accent-color);
  margin-right: 5px;
}

.blog-detail-page .related-post-content h5 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.blog-detail-page .related-post-content h5 a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-detail-page .related-post-content h5 a:hover {
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .blog-detail-page .blog-content-overlay .blog-detail-title {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .blog-detail-page .blog-content-overlay .blog-detail-title {
    font-size: 28px;
  }

  .blog-detail-page .blog-content-text {
    padding: 40px;
  }

  .blog-detail-page .blog-tags-section {
    padding: 0 40px 40px;
  }

  .blog-detail-page .blog-navigation {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-detail-page .nav-next {
    text-align: left;
  }

  .blog-detail-page .nav-next .nav-direction {
    justify-content: flex-start;
  }

  .blog-detail-page .nav-next .nav-direction i {
    margin-left: 0;
    margin-right: 8px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .blog-detail-page .blog-detail-content {
    padding: 40px 0 70px;
  }

  .blog-detail-page .blog-featured-image {
    height: 400px;
  }

  .blog-detail-page .blog-content-overlay {
    padding: 40px 30px 30px;
  }

  .blog-detail-page .blog-content-overlay .blog-detail-title {
    font-size: 24px;
  }

  .blog-detail-page .blog-detail-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .blog-detail-page .meta-items {
    gap: 15px;
  }

  .blog-detail-page .blog-content-text {
    font-size: 16px;
    padding: 30px;
  }

  .blog-detail-page .blog-tags-section {
    padding: 0 30px 30px;
  }

  .blog-detail-page .share-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-detail-page .related-posts {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .blog-detail-page .blog-featured-image {
    height: 350px;
  }

  .blog-detail-page .blog-content-overlay {
    padding: 30px 25px 25px;
  }

  .blog-detail-page .blog-content-overlay .blog-detail-title {
    font-size: 20px;
  }

  .blog-detail-page .blog-content-text {
    padding: 25px;
  }

  .blog-detail-page .blog-tags-section {
    padding: 0 25px 25px;
  }

  .blog-detail-page .share-buttons {
    padding: 12px 20px;
    gap: 10px;
  }

  .blog-detail-page .share-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .blog-detail-page .author-avatar-small {
    width: 35px;
    height: 35px;
  }

  .blog-detail-page .author-name {
    font-size: 14px;
  }

  .blog-detail-page .blog-content-overlay .meta-item {
    font-size: 13px;
  }

  .blog-detail-page .blog-content-text h1 {
    font-size: 1.6rem;
  }

  .blog-detail-page .blog-content-text h2 {
    font-size: 1.4rem;
  }

  .blog-detail-page .blog-content-text h3 {
    font-size: 1.2rem;
  }

  .blog-detail-page .blog-content-text h4 {
    font-size: 1.1rem;
  }

  .blog-detail-page .blog-content-text h5 {
    font-size: 1rem;
  }

  .blog-detail-page .blog-content-text h6 {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Blog Details Breadcrumb (blog-details-breadcrumb.css)
--------------------------------------------------------------*/
/* Breadcrumb for Blog Details Page */
.blog-detail-page .breadcrumb-section {
  background: var(--background-color);
  padding: 160px 0 20px;
  margin-top: 0;
}

.blog-detail-page .breadcrumb-wrapper {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-detail-page .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.blog-detail-page .breadcrumb-item {
  color: var(--default-color);
}

.blog-detail-page .breadcrumb-item a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-detail-page .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.blog-detail-page .breadcrumb-item.active {
  color: var(--accent-color);
  font-weight: 600;
}

.blog-detail-page .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
  margin: 0 10px;
}

.blog-detail-page .breadcrumb i {
  margin-right: 5px;
  font-size: 13px;
}

/* Blog Title in Breadcrumb - Truncate if too long */
.blog-detail-page .breadcrumb-blog-title {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

/* Blog Detail Content Section - Adjust padding since breadcrumb now has top padding */
.blog-detail-page .blog-detail-content {
  background: var(--background-color);
  padding: 20px 0 120px;
  /* Further reduced top padding to minimize gap */
}

@media (max-width: 768px) {
  .blog-detail-page .breadcrumb-section {
    padding: 120px 0 0 0;
  }

  .blog-detail-page .breadcrumb {
    font-size: 13px;
  }

  .blog-detail-page .breadcrumb-item+.breadcrumb-item::before {
    margin: 0 8px;
  }

  .blog-detail-page .breadcrumb-blog-title {
    max-width: 150px;
  }
}

@media (max-width: 576px) {
  .blog-detail-page .breadcrumb-section {
    padding: 120px 0 10px;
  }

  .blog-detail-page .breadcrumb-wrapper {
    padding: 8px 12px;
  }

  .blog-detail-page .blog-detail-content {
    padding: 10px 0 60px;
  }

  .blog-detail-page .breadcrumb {
    font-size: 12px;
  }

  .blog-detail-page .breadcrumb-item+.breadcrumb-item::before {
    margin: 0 6px;
  }

  .blog-detail-page .breadcrumb-blog-title {
    max-width: 120px;
  }
}

/*!* Breadcrumb for Blog Details Page *!*/
/*.blog-detail-page .breadcrumb-section {*/
/*    background: var(--background-color);*/
/*    padding: 120px 0 0; !* Reduced bottom padding to minimize gap *!*/
/*    margin-top: 0;*/
/*}*/

/*.blog-detail-page .breadcrumb {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    background: transparent;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    font-size: 14px;*/
/*}*/

/*.blog-detail-page .breadcrumb-item {*/
/*    color: var(--default-color);*/
/*}*/

/*.blog-detail-page .breadcrumb-item a {*/
/*    color: var(--default-color);*/
/*    text-decoration: none;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.blog-detail-page .breadcrumb-item a:hover {*/
/*    color: var(--accent-color);*/
/*}*/

/*.blog-detail-page .breadcrumb-item.active {*/
/*    color: var(--accent-color);*/
/*    font-weight: 600;*/
/*}*/

/*.blog-detail-page .breadcrumb-item + .breadcrumb-item::before {*/
/*    content: "/";*/
/*    color: rgba(255, 255, 255, 0.4);*/
/*    margin: 0 10px;*/
/*}*/

/*.blog-detail-page .breadcrumb i {*/
/*    margin-right: 5px;*/
/*    font-size: 13px;*/
/*}*/

/*!* Blog Title in Breadcrumb - Truncate if too long *!*/
/*.blog-detail-page .breadcrumb-blog-title {*/
/*    max-width: 200px;*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*    white-space: nowrap;*/
/*    display: inline-block;*/
/*}*/

/*!* Blog Detail Content Section - Adjust padding since breadcrumb now has top padding *!*/
/*.blog-detail-page .blog-detail-content {*/
/*    background: var(--background-color);*/
/*    padding: 20px 0 120px; !* Further reduced top padding to minimize gap *!*/
/*}*/
/*@media (max-width: 768px) {*/
/*    .blog-detail-page .breadcrumb-section {*/
/*        padding: 10px 0 0;*/
/*    }*/

/*    .blog-detail-page .breadcrumb {*/
/*        font-size: 13px;*/
/*    }*/

/*    .blog-detail-page .breadcrumb-item + .breadcrumb-item::before {*/
/*        margin: 0 8px;*/
/*    }*/

/*    .blog-detail-page .breadcrumb-blog-title {*/
/*        max-width: 150px;*/
/*    }*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .blog-detail-page .breadcrumb-section {*/
/*        padding: 100px 0 10px; !* Even smaller padding for mobile phones *!*/
/*    }*/

/*    .blog-detail-page .blog-detail-content {*/
/*        padding: 10px 0 60px; !* Minimal gap on small screens *!*/
/*    }*/

/*    .blog-detail-page .breadcrumb {*/
/*        font-size: 12px;*/
/*    }*/

/*    .blog-detail-page .breadcrumb-item + .breadcrumb-item::before {*/
/*        margin: 0 6px;*/
/*    }*/

/*    .blog-detail-page .breadcrumb-blog-title {*/
/*        max-width: 120px;*/
/*    }*/
/*}*/

/*--------------------------------------------------------------
# Pinned Blogs Section (pinned-blogs.css)
--------------------------------------------------------------*/
/* Pinned Posts Section */
.pinned-posts-section {
  background: var(--background-color);
  padding: 0 0 60px;
  position: relative;
}

.pinned-posts-header {
  text-align: center;
  margin-bottom: 40px;
}

.pinned-posts-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin-bottom: 10px;
}

.pinned-posts-title i {
  color: var(--accent-color);
  font-size: 20px;
}

.pinned-posts-subtitle {
  color: var(--default-color);
  font-size: 14px;
  opacity: 0.8;
}

.pinned-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.pinned-post-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--accent-color);
  transition: all 0.4s ease;
  position: relative;
}

.pinned-post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #2d5cff);
  z-index: 2;
}

.pinned-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(29, 96, 236, 0.3);
  border-color: #2d5cff;
}

.pinned-post-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.pinned-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pinned-post-card:hover .pinned-post-image img {
  transform: scale(1.08);
}

.pinned-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, var(--accent-color), #ff6b35);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.pinned-post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.pinned-post-content {
  padding: 25px;
}

.pinned-post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.pinned-post-meta i {
  color: var(--accent-color);
  margin-right: 4px;
}

.pinned-post-title {
  margin-bottom: 12px;
}

.pinned-post-title a {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--heading-font);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pinned-post-title a:hover {
  color: var(--accent-color);
}

.pinned-post-excerpt {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pinned-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pinned-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.pinned-read-more:hover {
  color: #2d5cff;
}

.pinned-read-more i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.pinned-read-more:hover i {
  transform: translateX(4px);
}

.pinned-tag {
  background: rgba(29, 96, 236, 0.2);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(29, 96, 236, 0.3);
}

/* Section Divider */
.section-divider {
  position: relative;
  margin: 60px 0;
  text-align: center;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.section-divider-text {
  background: var(--background-color);
  padding: 0 30px;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}

/* Update existing blog content section padding */
.blog-content-section {
  background: var(--background-color);
  padding: 0 0 120px;
  /* Remove top padding since pinned section handles spacing */
}

/* Responsive Design for Pinned Posts */
@media (max-width: 991px) {
  .pinned-posts-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .pinned-posts-section {
    padding: 0 0 40px;
  }

  .pinned-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pinned-post-image {
    height: 160px;
  }

  .pinned-post-content {
    padding: 20px;
  }

  .pinned-posts-title {
    font-size: 20px;
  }

  .section-divider {
    margin: 40px 0;
  }
}

@media (max-width: 576px) {
  .pinned-posts-header {
    margin-bottom: 30px;
  }

  .pinned-post-title a {
    font-size: 16px;
  }

  .pinned-post-excerpt {
    font-size: 13px;
  }

  .pinned-post-content {
    padding: 18px;
  }

  .pinned-badge {
    padding: 4px 8px;
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Cookie Consent Section (from index.html)
--------------------------------------------------------------*/
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-color);
  border-top: 2px solid var(--accent-color);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-content {
  max-width: 100%;
}

.cookie-text h5 {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.cookie-text p {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-link {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: var(--accent-color);
  opacity: 0.8;
}

.cookie-buttons .btn {
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.cookie-buttons .btn:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.btn-outline-light {
  border-color: var(--default-color);
  color: var(--default-color);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--default-color);
  color: var(--background-color);
  border-color: var(--default-color);
}

.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 15px 0;
  }

  .cookie-text h5 {
    font-size: 1rem;
  }

  .cookie-text p {
    font-size: 0.9rem;
  }

  .cookie-buttons {
    text-align: center !important;
  }

  .cookie-buttons .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    margin: 0 5px;
  }
}

@media (max-width: 576px) {
  .cookie-buttons .btn {
    display: block;
    width: 100%;
    margin: 5px 0;
  }
}

/*--------------------------------------------------------------
# Privacy Policy Typography (from privacy-policy.html)
--------------------------------------------------------------*/
.privacy-content h2 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-content ul {
  padding-left: 1.5rem;
  line-height: 1.7;
}

.privacy-content ul li {
  margin-bottom: 0.5rem;
}

.privacy-content a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-content a:hover {
  text-decoration: underline;
}

.contact-info {
  transition: all 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-2px);
}

ul {
  list-style: circle;
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 0 15px;
  }

  .privacy-content h2 {
    font-size: 1.3rem;
  }

  .section-title h1 {
    font-size: 2.5rem !important;
  }

  .contact-info p {
    font-size: 1.1rem !important;
  }
}