/**
* Template Name: Selecao
* Template URL: https://bootstrapmade.com/selecao-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  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: "Raleway",  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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ef6603; /* 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: #ffffff; /* 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. */
}

/* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ef6603; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ef6603; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

.sdgs-dark-background {
  /* SDGs Core Colors */
  --background-color: #1a3d6d;  /* SDGs Dark Blue (Primary Color) */
  --default-color: #e8f4fc;     /* Light Blue-White (Accessible Text) */
  --heading-color: #ffffff;     /* Pure White for Headings */
  --surface-color: #2d5b9e;     /* Medium SDGs Blue (Cards/Sections) */
  --contrast-color: #59ba47;    /* SDGs Green (Accent/Buttons) */
  
  /* Additional SDGs Accent Colors */
  --sdgs-accent-1: #e5243b;     /* SDGs Red (Goal 1) */
  --sdgs-accent-2: #dda63a;     /* SDGs Gold (Goal 2) */
  --sdgs-accent-3: #4c9f38;     /* SDGs Green (Goal 3) */
  --sdgs-accent-4: #c5192d;     /* SDGs Dark Red (Goal 4) */
  --sdgs-accent-5: #ff3a21;     /* SDGs Orange (Goal 5) */
}

/* 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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

/*--------------------------------------------------------------
# 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;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background-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: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .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 {
    background-color: transparent;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# 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 Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  /* margin: 0; */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  /* margin: 0; */
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Carousel Styles */
#hero-carousel {
  width: 100%;
  height: 100%;
}

#hero-carousel .carousel-inner {
  width: 100%;
  height: 100%;
}

#hero-carousel .carousel-item {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.carousel-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  color: white;
  padding: 0 15px;
}

/* Text Styles */
.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.8),
    -1px -1px 3px rgba(0, 0, 0, 0.8); /* Shadow multidirectional */ 
}

.hero h2 span {
  text-decoration: underline;
}

/* Button Styles */
.btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
}

.btn-get-started:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}

/* Wave Animation */
.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: rgba(255,255,255,0.6);
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: rgba(255,255,255,0.4);
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: rgba(255,255,255,0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
  }
  
  .carousel-container {
    padding-top: 100px;
  }
}

/* Keyframes */
@keyframes move-forever1 {
  0% { transform: translate(85px, 0%); }
  100% { transform: translate(-90px, 0%); }
}

@keyframes move-forever2 {
  0% { transform: translate(-90px, 0%); }
  100% { transform: translate(85px, 0%); }
}

@keyframes move-forever3 {
  0% { transform: translate(-90px, 0%); }
  100% { transform: translate(85px, 0%); }
}
/* ====== SECTION PERFORMA SDGs ITERA (HOME) ====== */

#sdgs-performance.sdgs-performance {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Background lembut + sedikit pola */
#sdgs-performance.sdgs-performance::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 153, 97, 0.08), transparent 55%),
              radial-gradient(circle at bottom right, rgba(0, 123, 255, 0.06), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

/* Biar isi nggak ketiban pseudo element */
#sdgs-performance .container {
  position: relative;
  z-index: 1;
}

/* Judul section */
#sdgs-performance .section-header h2 {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
  color: #198754;
  margin-bottom: 0.4rem;
}

#sdgs-performance .section-header p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #212529;
}

/* Card total skor */
#sdgs-performance .sdgs-score-card {
  border-radius: 1rem;
  border: 1px solid rgba(25, 135, 84, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f5fffa 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

#sdgs-performance .sdgs-score-card h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6c757d;
}

#sdgs-performance .sdgs-score-card .display-6 {
  font-size: 2.6rem;
  color: #146c43;
}

#sdgs-performance .sdgs-score-card small {
  font-size: 0.8rem;
}

/* Kartu kategori */
#sdgs-performance .sdgs-performance .col-md-6 > .p-3,
#sdgs-performance .sdgs-category-card {
  border-radius: 0.9rem;
  border: 1px solid rgba(25, 135, 84, 0.08);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s;
}

/* Target markup yang kamu pakai sekarang */
#sdgs-performance .col-md-6 > .p-3 {
  border-radius: 0.9rem;
  border: 1px solid rgba(25, 135, 84, 0.08);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s;
}

#sdgs-performance .col-md-6 > .p-3:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(25, 135, 84, 0.25);
}

/* Badge kategori (SI, EC, dst) */
#sdgs-performance .badge.bg-success-subtle {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

/* Bootstrp 5.1 belum punya bg-success-subtle, jadi define sendiri */
.bg-success-subtle {
  background-color: rgba(25, 135, 84, 0.12) !important;
  color: #198754 !important;
}

/* Judul kategori */
#sdgs-performance h6 {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Progress bar */
#sdgs-performance .progress {
  background-color: #e9f4ee;
  border-radius: 999px;
  overflow: hidden;
}

#sdgs-performance .progress-bar {
  background: linear-gradient(90deg, #198754, #20c997);
}

/* Text kecil di bawah progress */
#sdgs-performance .text-muted {
  font-size: 0.8rem;
}

/* Button utama section */
#sdgs-performance .btn-primary {
  background: linear-gradient(135deg, #198754, #138496);
  border: none;
  border-radius: 999px;
  padding-inline: 1.6rem;
  font-weight: 600;
}

#sdgs-performance .btn-primary:hover {
  filter: brightness(1.05);
}

/* Button outline */
#sdgs-performance .btn-outline-primary {
  border-radius: 999px;
  padding-inline: 1.4rem;
  border-width: 1px;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  #sdgs-performance .sdgs-score-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  #sdgs-performance .section-header h2 {
    font-size: 0.9rem;
  }

  #sdgs-performance .sdgs-score-card .display-6 {
    font-size: 2.1rem;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us Section 
--------------------------------------------------------------*/

/* Why Us Section - SDGs Theme */
.why-us {
  padding: 80px 0;
  background-color: #ffffff; /* Light green background */
  position: relative;
  /* background-image: url('sdgs-pattern.png'); Optional SDGs pattern */
  background-size: 30%;
  background-blend-mode: overlay;
}

.why-us .container {
  position: relative;
  z-index: 2;
}

/* SDGs Color Palette */
:root {
  --sdgs-blue: #006eb6; /* SDGs primary blue */
  --sdgs-green: #59ba47; /* SDGs green */
  --sdgs-yellow: #f7e018; /* SDGs yellow */
  --sdgs-dark: #1a3d6c; /* SDGs dark blue */
}

.why-us .content {
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 110, 182, 0.1);
  height: 100%;
  border-top: 4px solid var(--sdgs-blue);
  display: flex;
  flex-direction: column;
}

.why-us .content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--sdgs-dark);
  position: relative;
}

.why-us .content h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--sdgs-green);
}

.why-us .content p {
  margin-bottom: 30px;
  color: #4a6163; /* SDGs text color */
  flex-grow: 1;
  line-height: 1.6;
}

.why-us .more-btn {
  display: inline-block;
  background: var(--sdgs-blue);
  color: white;
  padding: 10px 25px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 2px solid var(--sdgs-blue);
}

.why-us .more-btn:hover {
  background: white;
  color: var(--sdgs-blue);
  transform: translateY(-3px);
}

.why-us .more-btn i {
  font-size: 14px;
  margin-left: 8px;
  transition: 0.3s;
}

.why-us .more-btn:hover i {
  transform: translateX(5px);
}

/* Icon Boxes with SDGs Colors */
.why-us .icon-boxes {
  padding-left: 30px;
}

.why-us .icon-box {
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 110, 182, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  border-top: 4px solid;
}

.why-us .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 110, 182, 0.2);
}

/* Different colors for each icon box */
.why-us .icon-box:nth-child(1) {
  border-color: #e5243b; /* SDGs Red - Goal 4: Education */
}
.why-us .icon-box:nth-child(2) {
  border-color: #dda63a; /* SDGs Gold - Goal 9: Innovation */
}
.why-us .icon-box:nth-child(3) {
  border-color: #4c9f38; /* SDGs Green - Goal 17: Partnerships */
}

.why-us .icon-box i {
  font-size: 42px;
  margin-bottom: 20px;
  display: block;
}

/* Color icons according to SDGs */
.why-us .icon-box:nth-child(1) i {
  color: #e5243b; /* Education */
}
.why-us .icon-box:nth-child(2) i {
  color: #dda63a; /* Research */
}
.why-us .icon-box:nth-child(3) i {
  color: #4c9f38; /* Community */
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--sdgs-dark);
}

.why-us .icon-box p {
  color: #4a6163;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .why-us .icon-boxes {
    padding-left: 0;
  }
  
  .why-us .content {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 60px 0;
    background-size: 70%;
  }
  
  .why-us .content, 
  .why-us .icon-box {
    padding: 25px;
  }
}

/* SDGs Wheel Animation (Optional) */
/* @keyframes sdgs-wheel {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} */

.why-us::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  /* background: url('sdgs-wheel.png') no-repeat; */
  background-size: contain;
  opacity: 0.1;
  /* animation: sdgs-wheel 60s linear infinite; */
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# SDGs Section
--------------------------------------------------------------*/
/* ITERA SDGs Section */
.iterasdgs-section {
  padding: 80px 0;
  background-color: #f5f9ff;
  position: relative;
}

.iterasdgs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 110, 182, 0.1) 0%, rgba(89, 186, 71, 0.1) 100%);
  z-index: 0;
}

.iterasdgs-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.iterasdgs-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3d6c;
  margin-bottom: 30px;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.iterasdgs-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #59ba47;
}

.iterasdgs-divider {
  height: 1px;
  background: #ddd;
  margin: 30px auto;
  max-width: 200px;
}

.iterasdgs-grid-container {
  position: relative;
  z-index: 1;
}

.iterasdgs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.iterasdgs-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.iterasdgs-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.iterasdgs-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .iterasdgs-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {
  .iterasdgs-title {
    font-size: 2rem;
  }
  
  .iterasdgs-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .iterasdgs-section {
    padding: 60px 0;
  }
  
  .iterasdgs-title {
    font-size: 1.75rem;
  }
  
  .iterasdgs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   Shared “Trending” card grid (Event/Category)
   ========================================= */
/* .trending {
  padding: 48px 0 64px;
  background: #f6f7fb;
}

.trending .section-title h2 {
  font-size: 20px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9aa4b2;
  margin-bottom: 4px;
}
.trending .section-title p {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.trending-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 992px) {
  .trending-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.trending-card a {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 24px rgba(17,24,39,.06);
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
  color: inherit;
}
.trending-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(17,24,39,.12);
}

/* Instructor header */
.instructor-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.instructor-avatar {
  width: 28px; height: 28px;
  border-radius: 999px;
  object-fit: cover;
}
.instructor-name {
  margin: 0; font-size: 14px; font-weight: 700; color: #111827;
}
.instructor-title {
  margin: 0; font-size: 12px; color: #6b7280;
}

/* Thumbnail */
.thumbnail-container {
  position: relative;
  height: 470px;
  border-radius: 12px;
  overflow: hidden;
  background: #e5e7eb;
}
.thumbnail-container img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Status badges (OPEN/STARTED/CLOSED) */
.status-badge {
  position: absolute;
  top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font: 600 12px/1.1 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color: #fff;
  z-index: 2;
}
.status-badge img { width: 20px; height: 20px; }
.badge-open    { background: #16a34a; } /* green-600 */
.badge-started { background: #f97316; } /* orange-500 */
.badge-closed  { background: #ef4444; } /* red-500 */

/* Details */
.event-details { padding: 14px 4px 2px; }
.event-meta { display: flex; gap: 18px; align-items: center; margin-bottom: 6px; }
.event-meta .meta-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: #6b7280;
}
.event-meta img { width: 18px; height: 18px; }

.event-title {
  margin: 0 0 4px 0;
  font-size: 18px; font-weight: 700; color: #111827;
}
.event-category {
  margin: 0; font-size: 13px; color: #6b7280;
}

/* Price row */
.event-price {
  padding: 10px 4px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.price {
  color: #ef4444;
  font-weight: 700;
  font-size: 28px;
}
.price-label {
  color: #6b7280;
  font-weight: 500;
  font-size: 12px;
  margin-left: 4px;
}
.arrow-icon { width: 44px; height: 44px; }

/* Page header spacing if header is fixed */
/* .main { padding-top: 112px; }  */


/* Divider Style */
/* .elementor-element[data-id="e0ce725"] .elementor-divider {
  border-top-color: #006eb6;
  border-top-width: 2px;
  width: 100px;
  margin: 20px auto 40px;
} */

/* SDGs Gallery Style */
/* .elementor-element[data-id="8b641a7"] .elementor-image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
}

.elementor-element[data-id="8b641a7"] .elementor-image-gallery a {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.elementor-element[data-id="8b641a7"] .elementor-image-gallery a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 110, 182, 0.2);
  z-index: 1;
}

.elementor-element[data-id="8b641a7"] .elementor-image-gallery img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
  padding: 5px;
  background: white;
  border-radius: 8px;
} */

/* TPB Logo Special Style */
/* .elementor-element[data-id="8b641a7"] .elementor-image-gallery a[href*="TPB-Logo"] img {
  width: 120px;
  height: 80px;
  background: #f8f8f8;
} */

/* Animations */
/* .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
} */

/* Responsive Adjustments */
/* @media (max-width: 1024px) {
  .elementor-element[data-id="ddbb9bf"] h2.elementor-heading-title {
    font-size: 2rem;
  }
  
  .elementor-element[data-id="8b641a7"] .elementor-image-gallery img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .elementor-section[data-id="19bb266"] {
    padding: 60px 0;
  }
  
  .elementor-element[data-id="ddbb9bf"] h2.elementor-heading-title {
    font-size: 1.8rem;
  }
  
  .elementor-element[data-id="8b641a7"] .elementor-image-gallery {
    gap: 10px;
  }
  
  .elementor-element[data-id="8b641a7"] .elementor-image-gallery img {
    width: 60px;
    height: 60px;
  }
  
  .elementor-element[data-id="8b641a7"] .elementor-image-gallery a[href*="TPB-Logo"] img {
    width: 100px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .elementor-element[data-id="ddbb9bf"] h2.elementor-heading-title {
    font-size: 1.5rem;
  }
  
  .elementor-element[data-id="8b641a7"] .elementor-image-gallery img {
    width: 50px;
    height: 50px;
  }
} */

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Categories Section
--------------------------------------------------------------*/

.categories .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.categories .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.categories .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.categories .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.categories .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .categories .service-item:hover {
    transform: translateY(-10px);
  }

  .categories .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Trending Section Styles
--------------------------------------------------------------*/

.trending {
  padding: 80px 0;
  background-color: #F5F6FB;
}


.trending-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trending-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  border-radius: 16px;
  padding: 24px;
}

.instructor-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.instructor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.instructor-details h3 {
  font-size: 16px;
  font-weight: 600;
  color: #09093C;
  margin-bottom: 4px;
}

.instructor-details p {
  font-size: 14px;
  color: #757C98;
}

.thumbnail-container {
  position: relative;
  /* height: 180px; */
  background-color: #D9D9D9;
  border-radius: 12px;
  overflow: hidden;
}
.thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  border-radius: 9999px;
  padding: 8px 16px;
  gap: 4px;
  font-weight: 600;
  font-size: 14px;
  color: white;
}
.status-badge img {
  width: 16px;
  height: 16px;
}
.status-badge.bg-aktiv-green {
  background-color: #1F8A70;
}
.status-badge.bg-aktiv-orange {
  background-color: #FC9B4C;
}
.status-badge.bg-aktiv-red {
  background-color: #EB5757;
}

.event-meta {
  display: flex;;
  gap: 16px;
  margin: 12px 0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #757C98;
}

.meta-item img {
  width: 16px;
  height: 16px;
}

.event-title {
  font-size: 18px;
  font-weight: 600;
  color: #09093C;
  line-height: 1.4;
  margin-bottom: 8px;
}

.event-category {
  font-size: 14px;
  color: #757C98;
  margin-bottom: 16px;
}


.event-price {
  display: flex;
  margin-top: auto;
  justify-content: space-between;
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: #EB5757;
}

.price-label {
  font-size: 14px;
  color: #757C98;
}

.arrow-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.trending-grid .trending-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.trending-grid .trending-card:hover .status-badge {
  transform: translateY(-5px);
}
.trending-grid .trending-card:hover .thumbnail-container img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.trending-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trending-grid .trending-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trending-grid .trending-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.trending-grid .trending-card:hover .status-badge {
  transform: translateY(-5px);
}
.trending-grid .trending-card:hover .thumbnail-container img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
@media (max-width: 1200px) {
  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .trending-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trending-card {
    padding: 16px;
  }
  
  .instructor-avatar {
    width: 48px;
    height: 48px;
  }
  
  .thumbnail-container {
    height: 160px;
  }
  
  .event-title {
    font-size: 16px;
  }
  
  .price {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .trending-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trending-card {
    padding: 16px;
  }
  
  .instructor-avatar {
    width: 48px;
    height: 48px;
  }
  
  .thumbnail-container {
    height: 160px;
  }
  
  .event-title {
    font-size: 16px;
  }
  
  .price {
    font-size: 18px;
  }
}



/* Responsive Adjustments */
@media (max-width: 1024px) {
  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trending {
    padding: 60px 0;
  }
  
  .trending-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* .section-title h2 {
    font-size: 28px;
  } */
}

/*--------------------------------------------------------------
# Workshop Details Section
--------------------------------------------------------------*/

.Category {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px 0;
  margin-top: 64px;
  margin-bottom: 100px;
}

/* Header Section */
/* .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 64px;
}

.section-header h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  text-transform: capitalize;
  color: white;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.breadcrumb a {
  font-weight: 600;
} */


/* Main Content Layout */
.main-content {
  display: flex;
  gap: 32px;
}

/* Details Section */
.details-section {
  width: 724px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #F5F6FB;
  border-radius: 16px;
}

/* Thumbnail */
.thumbnail-container-category {
  position: relative;
  width: 100%;
  height: 369px;
  border-radius: 16px;
  overflow: hidden;
  background: #D9D9D9;
}

.thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  gap: 4px;
  background: #1F8A70;
  color: white;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.status-badge img {
  width: 24px;
  height: 24px;
}

/* Workshop Header */
.workshop-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #F5F6FB;
}

.rating-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.category-tag {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 8px 12px;
  gap: 5px;
  border: 1px solid #1F8A70;
  border-radius: 6px;
  background: rgba(31, 138, 112, 0.09);
}

.category-tag p {
  margin-bottom: 0;
  font-weight: 500;
  color: #1F8A70;
  text-transform: capitalize;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star-rating p {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
}

.star-rating span {
  font-weight: 500;
  color: #757C98;
}

.workshop-title {
  font-family: 'Neue Plak Bold', sans-serif;
  font-weight: inherit;
  font-size: 1.2rem;
  line-height: 2rem;
  text-transform: capitalize;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid #E6E7EB;
  border-radius: 16px;
  gap: 16px;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-text p:first-child {
  font-weight: 500;
  color: #757C98;
}

.info-text p:last-child {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
}

.info-card img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

/* Description Section */
.description-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section-title {
  font-family: 'Neue Plak', sans-serif;
  font-size: 20px;
  line-height: 27.5px;
  padding-bottom: 0;
}

.description-text {
  position: relative;
  font-weight: 500;
  line-height: 28.8px;
  color: #757C98;
}


/* Location Section */
.location-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background: #D9D9D9;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card-details {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 16px;
}

.location-image {
  width: 100%;
  height: 124px;
  border-radius: 12px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-text p {
  font-weight: 500;
  line-height: 25.6px;
  color: #757C98;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.location-text a {
  font-weight: 600;
  color: #FC9B4C;
}

/* Sidebar Section */
.sidebar {
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
}

/* Instructor Card */
.instructor-card-details {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 16px;
  background: #F5F6FB;
  border-radius: 24px;
}

.instructor-card-details h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #09093C;
}

.instructor-info-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.instructor-avatar-details {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #D9D9D9;
}

.instructor-avatar-details img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-details {
  flex: 1;
}

.instructor-details p:first-child {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
}

.instructor-details p:last-child {
  font-weight: 500;
  color: #757C98;
}

.verify-badge {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}

/* Pricing Card */
.pricing-card {
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  gap: 24px;
  background: #F5F6FB;
  border-radius: 24px;
}

.pricing-section {
  display: flex;
  flex-direction: column;
  margin: 0 32px;
  gap: 16px;
}

.pricing-section h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #09093C;
}

.price-display {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-display p:first-child {
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #EB5757;
}

.price-display p:last-child {
  font-weight: 600;
  color: #757C98;
}

.attendants-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 32px;
  padding: 16px 24px;
  border: 1px solid #E6E7EB;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-radius: 16px;
  gap: 8px;
}

.attendants-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.attendants-text p:first-child {
  font-weight: 500;
  color: #757C98;
}

.attendants-text p:last-child {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
}

.attendants-card img {
  width: 56px;
  height: 56px;
}

.learnings-list {
  display: flex;
  flex-direction: column;
  margin: 0 32px;
  gap: 16px;
}

.learnings-list h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #09093C;
}

/* .learning-items{
  display: flex;
  flex-direction: column;
  gap: 16px;
} */

.learning-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.learning-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.learning-item p {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  /* margin-bottom: 5px; */
}

.join-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 32px 32px;
  height: 64px;
  padding: 0 24px;
  gap: 10px;
  background: #FC9B4C;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: white;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-content {
    flex-direction: column;
  }
  
  .details-section, .sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #Category {
    padding: 0 24px;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
  }
  
  .location-card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-height: none;
    margin-top: 16px;
  }
}

/*--------------------------------------------------------------
# Booking Page Styles
--------------------------------------------------------------*/
/* Base Styles */
.booking-container {
  width: 100%;
  max-width: 1280px;
  margin: 64px auto 100px;
  padding: 0 52px;
}



.booking-container {
  max-width: 1280px;
  margin: 4rem auto;
  padding: 0 3.25rem;
}


/* Layout */
.booking-content {
  display: flex;
  gap: 2rem;
}

.workshop-sidebar {
  width: 26.25rem;
  background: #F5F6FB;
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
}

.booking-form {
  width: 45.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Workshop Sidebar Styles */
.workshop-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.workshop-thumbnail {
  height: 15rem;
  background: #D9D9D9;
  border-radius: 0.75rem;
  overflow: hidden;
}

.workshop-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-meta {
  display: flex;
  gap: 0.75rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
  color: #757C98;
}

.meta-item img {
  width: 1.5rem;
  height: 1.5rem;
}

.workshop-title {
  font-family: 'Neue Plak', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Expandable Section */
.expandable-section {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
/* Toggle section styles */

.expandable-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.instructor-card {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid #E6E7EB;
  border-radius: 0.75rem;
}

.instructor-card p{
  margin-top: 1rem;
}
.instructor-card img:first-child {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.instructor-name {
  font-weight: 600;
  font-size: 1.125rem;
}

.instructor-title {
  font-weight: 500;
  color: #757C98;
}

.instructor-card img:last-child {
  width: 3.875rem;
  height: 3.875rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.benefits-list li::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url('assets/img/icons/tick-circle.svg');
  background-size: contain;
}

.location-card {
  transform: none;
  position: relative;
  border: 1px solid #E6E7EB;
  border-radius: 0.75rem;
  padding: 1.25rem;
  padding-bottom: 1.3125rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-card img {
  height: 11.25rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.location-card a {
  font-weight: 600;
  color: #FC9B4C;
}


/* Form Styles */
.form-section {
  background: #F5F6FB;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-section h2 {
  font-family: 'Neue Plak', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.security-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: #F5F6FB;
  border-radius: 1.5rem;
}

.security-notice img {
  width: 3.875rem;
  height: 3.875rem;
}

.notice-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.form-notice {
  padding: 1rem 0.75rem;
  border-left: 0.3125rem solid #EB5757;
  background: linear-gradient(270deg, rgba(235,87,87,0) 0%, rgba(235,87,87,0.09) 100%);
  font-weight: 600;
  color: #EB5757;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #FBFBFB;
  border-radius: 0.75rem;
}

.input-field img {
  width: 1.5rem;
  height: 1.5rem;
}

.input-field input {
  flex: 1;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 1.125rem;
  outline: none;
}

.input-field input::placeholder {
  font-weight: 500;
  color: #757C98;
}

.price-display {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

.price {
  font-weight: 700;
  font-size: 2rem;
  color: #EB5757;
}

.price-label {
  font-weight: 600;
  color: #757C98;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #E6E7EB;
  border-radius: 0.5rem;
}

.quantity-btn {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.quantity {
  font-weight: 600;
  font-size: 1.25rem;
}
.my-class {
  color: #0d6efd;
}
/* Attendant form expand/collapse */
.attendant-fields {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.attendant-fields.expanded {
    max-height: 1000px; /* Adjust based on your content */
}

/* Input validation */
.input-field.invalid {
    border: 1px solid #EB5757;
    background-color: rgba(235, 87, 87, 0.05);
}

.input-field, .input-field * { pointer-events: auto !important; }

/* Quantity selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #E6E7EB;
    border-radius: 0.5rem;
}

.quantity-btn {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.quantity {
    font-weight: 600;
    font-size: 1.25rem;
    min-width: 1.5rem;
    text-align: center;
}

.attendant-form {
  border: 1px solid #E6E7EB;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.attendant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.125rem;
}

.toggle-attendant-btn {
  background: transparent;
  border: none;
  cursor: pointer;
}

.toggle-attendant-btn img {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s;
}

.attendant-fields {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-details {
  border: 1px solid #E6E7EB;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
}

.detail-row span:first-child {
  font-weight: 500;
  color: #757C98;
}

.detail-row span:last-child {
  font-weight: 600;
  font-size: 1.125rem;
}

.total-row span:last-child {
  color: #EB5757;
}

.submit-btn {
  width: 100%;
  height: 4rem;
  background: #FC9B4C;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: #F5F6FB;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .booking-content {
    flex-direction: column;
  }
  
  .workshop-sidebar, .booking-form {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Confirm-Payment Section
--------------------------------------------------------------*/

/* Confirm Payment Page Styles */
.payment-container {
    display: flex;
    gap: 32px;
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 20px;
}

.workshop-details {
    width: 420px;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.workshop-summary-pay h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.thumbnail {
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details .date-time {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.details .date-time span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #6B7280;
}

.details h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.collapsible-section {
    margin-top: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.instructor-pay {
    margin-bottom: 32px;
}

.instructor-pay h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.instructor-card-pay {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
}

.instructor-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor-info-pay .name {
    font-weight: 600;
    font-size: 18px;
}

.instructor-info-pay .title {
    color: #6B7280;
    font-size: 14px;
}

.verified {
    width: 62px;
    height: 62px;
}

.benefits-list-pay {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list-pay li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
}

.location-card {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
}

.location-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.location-card p {
    color: #6B7280;
    margin-bottom: 12px;
    font-size: 14px;
}

.map-link {
    color: #F97316;
    font-weight: 600;
    text-decoration: none;
}

.toggle-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

.toggle-icon {
    transition: transform 0.3s;
}

.toggle-input:checked ~ .toggle-icon {
    transform: rotate(180deg);
}

.toggle-input:checked ~ .collapsible-section {
    height: 0;
    margin-top: 0;
    opacity: 0;
}

.payment-form {
    flex: 1;
}

.form-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.payment-summary h2,
/* Bank Info Section */
.bank-info {
    margin-top: 2rem;
}


.input-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group label {
    display: block;
}

.input-group label span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.input-field {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.75rem;
    transition: all 0.2s ease;
}

.input-field.focused {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.input-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.input-field input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.875rem;
    background: transparent;
}

.input-field.invalid {
    border-color: #ef4444;
}

.input-field.invalid .input-icon {
    opacity: 1;
    filter: invert(40%) sepia(98%) saturate(1710%) hue-rotate(333deg) brightness(97%) contrast(91%);
}

/* Add this if you want to show error messages */
.input-field .error-message {
    position: absolute;
    bottom: -1.25rem;
    left: 0;
    font-size: 0.75rem;
    color: #ef4444;
}
.bank-info h2,
.transfer-info h2,
/* Proof Upload Section */
.proof-upload {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.upload-field {
    display: block;
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.upload-field:hover {
    border-color: #3b82f6;
    background-color: #f8fafc;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
}

.upload-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.browse-text {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #3b82f6;
    color: white;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.file-info {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.preview-container {
    margin-top: 1rem;
    max-width: 100%;
}

.preview-container img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 0.25rem;
    margin-top: 1rem;
}

.remove-btn {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #ef4444;
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.remove-btn:hover {
    background-color: #dc2626;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.hidden {
    display: none;
}

/* Drag and Drop States */
.upload-field.drag-over {
    border-color: #3b82f6;
    background-color: #ebf5ff;
}
.proof-upload h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.summary-card {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 18px;
}

.summary-row span:first-child {
    color: #6B7280;
}

.summary-row.total {
    font-weight: 600;
}

.highlight {
    color: #EF4444;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.input-group label span {
    display: block;
    color: #6B7280;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-field {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FBFBFB;
    border-radius: 12px;
    padding: 16px;
}

.input-field input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 18px;
}

.input-field input::placeholder {
    font-weight: 500;
    color: #9CA3AF;
}

.transfer-card {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 32px;
}

.transfer-header {
    padding: 28px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid #E5E7EB;
}

.bank-list {
    padding: 20px;
}

.bank-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.bank-item:last-child {
    margin-bottom: 0;
}

.bank-logo {
    width: 78px;
    height: 53px;
    object-fit: contain;
}

.bank-details {
    flex: 1;
}

.bank-name {
    display: block;
    color: #6B7280;
    font-size: 14px;
}

.account-number {
    display: block;
    font-weight: 600;
    font-size: 18px;
}

.copy-btn {
    color: #F97316;
    font-weight: 600;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
}



.submit-btn {
    width: 100%;
    background: #F97316;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #EA580C;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .payment-container {
        flex-direction: column;
    }
    
    .workshop-details {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .payment-container {
        padding: 0 16px;
    }
    
    .workshop-details,
    .form-card {
        padding: 24px;
    }
}

/*--------------------------------------------------------------
# Success Page Styles Section
--------------------------------------------------------------*/
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background-color: #f8f9fa;
  padding: 16px;
  box-sizing: border-box;
}

.success-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  padding: 20px;
  max-width: 1200px;
}

.success-card {
  max-width: 856px;
  width: 100%;
  border-radius: 24px;
  padding: 24px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: auto;
}

.success-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.success-icon {
  width: 64px;
  height: 64px;
}

.success-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
  text-align: center;
  color: #333;
  margin: 0;
}

.success-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-id-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #E6E7EB;
  padding: 16px;
}

.booking-id {
  display: flex;
  align-items: center;
  gap: 8px;
}

.id-icon {
  width: 24px;
  height: 24px;
}

.id-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #6B7280;
}

.id-value {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}

.view-booking-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  background-color: #F97316;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  transition: background-color 0.2s ease;
  width: 100%;
}

.view-booking-btn:hover {
  background-color: #EA580C;
}

.btn-icon {
  width: 24px;
  height: 24px;
}

.confirmation-message {
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #6B7280;
  margin: 0;
  font-size: 16px;
}

.home-link {
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 32px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 16px;
  text-align: center;
}

.home-link:hover {
  color: #F97316;
}

/* Media Queries for Responsiveness */
@media (min-width: 480px) {
  .booking-id-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 12px 24px;
  }
  
  .view-booking-btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  .success-card {
    padding: 32px;
  }
  
  .success-header {
    gap: 24px;
    margin-bottom: 32px;
  }
  
  .success-icon {
    width: 72px;
    height: 72px;
  }
  
  .success-title {
    font-size: 32px;
    line-height: 48px;
  }
  
  .success-content {
    gap: 24px;
  }
  
  .booking-id-container {
    padding: 12px 12px 12px 32px;
  }
  
  .id-icon {
    width: 32px;
    height: 32px;
  }
  
  .id-label, .id-value {
    font-size: 18px;
    line-height: 27px;
  }
  
  .view-booking-btn {
    padding: 16px 32px;
    font-size: 18px;
    line-height: 27px;
  }
  
  .btn-icon {
    width: 32px;
    height: 32px;
  }
  
  .confirmation-message {
    font-size: 18px;
    line-height: 25.6px;
  }
  
  .home-link {
    margin-bottom: 52px;
  }
}

@media (min-width: 1024px) {
  .success-page {
    padding: 24px;
  }
}
/*--------------------------------------------------------------
# e-ticket Page Styles Section
--------------------------------------------------------------*/
/* Main Container */
.booking-container-ticket {
  width: 100%;
  max-width: 724px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px;
  box-sizing: border-box;
  margin: 0 auto;
}

/* Status Cards */
.status-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.status-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.status-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.status-text h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.status-text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin: 4px 0 0;
}

/* Status-specific colors */
.pending .status-header {
  background: #FDF6E4;
}
.pending p {
  color: #B4A476;
}

.success .status-header {
  background: #D4EAE8;
}
.success p {
  color: #58938E;
}

.failed .status-header {
  background: #FEE3E3;
}
.failed p {
  color: #B77878;
}

/* Booking Details */
.booking-details {
  padding: 24px;
}

.booking-details h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 16px;
}

.details-card {
  border: 1px solid #E6E7EB;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.detail-row span:first-child {
  font-weight: 500;
  color: #6B7280;
  font-size: 14px;
}

.detail-row span:last-child {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.detail-row.total span:last-child {
  color: #EF4444;
}

/* Account Section */
.account-section {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.account-section h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 16px;
}

.account-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.account-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-field label {
  font-weight: 500;
  color: #6B7280;
  font-size: 14px;
}

.account-info {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FBFBFB;
  border-radius: 12px;
  padding: 14px;
}

.account-info span {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

/* Attendants Section */
.attendants-section {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 24px;
}

.attendants-section h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 16px;
}

.attendants-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.attendant-card {
  border: 1px solid #E6E7EB;
  border-radius: 12px;
  padding: 20px;
}

.accordion-toggle {
  display: none;
}

.attendant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.attendant-header span {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.accordion-toggle:checked ~ .attendant-header .accordion-icon {
  transform: rotate(180deg);
}

.attendant-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-toggle:checked ~ .attendant-details {
  max-height: 500px;
}

.detail-field {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.detail-info {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FBFBFB;
  border-radius: 12px;
  padding: 14px;
}

.detail-info span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .booking-container {
    gap: 24px;
  }
  
  .status-header {
    padding: 20px;
  }
  
  .status-icon {
    width: 50px;
    height: 50px;
  }
  
  .booking-details, .account-section, .attendants-section {
    padding: 20px;
  }
  
  .details-card, .attendant-card {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .booking-container {
    gap: 20px;
  }
  
  .status-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  
  .status-icon {
    width: 40px;
    height: 40px;
  }
  
  .status-text h3, .status-text p {
    font-size: 14px;
    line-height: 20px;
  }
  
  .booking-details h2, .account-section h2, .attendants-section h2 {
    font-size: 16px;
    line-height: 22px;
  }
  
  .detail-row span:last-child, .account-info span, .attendant-header span, .detail-info span {
    font-size: 14px;
    line-height: 20px;
  }
  
  .details-card, .account-info, .detail-info {
    padding: 12px;
  }
  
  .attendant-card {
    padding: 14px;
  }
}

/*--------------------------------------------------------------
# view-booking Page Styles Section
--------------------------------------------------------------*/
.booking-search-container {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 16px;
}

.booking-search-form {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 999px;
  padding: 12px;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.input-group-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 12px;
}

.input-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.search-input {
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  background: transparent;
}

.search-input::placeholder {
  color: #333;
  opacity: 1;
}

.divider {
  width: 1px;
  height: 40px;
  background: #E6E7EB;
}

.search-button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  background: #F97316;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-button:hover {
  background: #EA580C;
}

.button-icon {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .booking-search-form {
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
    gap: 16px;
  }
  
  .input-group {
    width: 100%;
    padding: 12px;
    border: 1px solid #E6E7EB;
    border-radius: 8px;
  }
  
  .divider {
    display: none;
  }
  
  .search-button {
    width: 100%;
    justify-content: center;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .search-input {
    font-size: 14px;
  }
  
  .search-button {
    font-size: 14px;
  }
  
  .input-icon, .button-icon {
    width: 20px;
    height: 20px;
  }
}

/*--------------------------------------------------------------
# Metadata Section
--------------------------------------------------------------*/

/* Sustainability Criteria Styles */
.sustainability-section {
  padding: 60px 0;
}

.sustainability-dashboard {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
}

.dashboard-header {
  background-color: #2e7d32;
  color: #fff;
  padding: 25px 30px;
  text-align: center;
}

.dashboard-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.subtitle {
  margin: 8px 0 0;
  font-size: 18px;
  opacity: 0.9;
}

.criteria-container {
  padding: 20px;
}

/* Category Cards */
.category-card {
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-header {
  background-color: #81c784;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.weight {
  background-color: #ff8f00;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

/* Criteria List */
.criteria-list {
  background-color: #fff;
}

.criterion {
  display: grid;
  grid-template-columns: 60px 1fr 80px;
  padding: 12px 20px;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
}

.criterion:last-child {
  border-bottom: none;
}

.code {
  font-weight: bold;
  color: #2e7d32;
}

.description {
  padding: 0 15px;
}

.points {
  text-align: right;
  font-weight: bold;
}

.criterion.total {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .criterion {
    grid-template-columns: 50px 1fr 60px;
    padding: 10px 15px;
  }
  
  .dashboard-header h2 {
    font-size: 24px;
  }
  
  .category-header h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .sustainability-section {
    padding: 40px 0;
  }
  
  .criterion {
    grid-template-columns: 40px 1fr 50px;
    font-size: 14px;
    padding: 8px 10px;
  }
  
  .points {
    font-size: 13px;
  }
  
  .weight {
    font-size: 12px;
  }
  
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/*--------------------------------------------------------------
# SDGS Dashboard Section
--------------------------------------------------------------*/
/* SDGS Color Palette */
:root {
  --sdgs-green: #4CAF50;       /* Primary SDGS green */
  --sdgs-dark-green: #2E7D32;  /* Darker green */
  --sdgs-blue: #2196F3;        /* SDGS blue */
  --sdgs-orange: #FF9800;      /* SDGS orange */
  --sdgs-red: #F44336;         /* SDGS red */
  --sdgs-purple: #9C27B0;      /* SDGS purple */
  --sdgs-teal: #009688;        /* SDGS teal */
  --sdgs-gray: #607D8B;        /* SDGS gray */
  --sdgs-light-bg: #F5F5F5;    /* Light background */
  --sdgs-text-dark: #212121;   /* Dark text */
  --sdgs-text-light: #757575;  /* Light text */
}

.dashboard-content {
  /* width: 100%;
  max-width: 1200px; */
  margin: 0 auto;
  padding: 30px;
}

/* Ranking Section */
/* -- ==================== UI GREENMETRIC WIDGET (REDESIGNED) ==================== -- */

  /* scope styles to this widget only */
  .gm-wrap{--gm-bg:#0f2e1e;--gm-green:#23a36d;--gm-soft:#eaf6f0;--gm-text:#0b1f15}
  .gm-card{background:#fff;border-radius:18px;box-shadow:0 10px 30px rgba(0,0,0,.06)}
  .gm-header{display:flex;align-items:center;gap:.75rem;padding:20px 24px;border-left:6px solid var(--gm-green);border-radius:18px}
  .gm-dot{width:12px;height:12px;border-radius:999px;background:var(--gm-green)}
  .gm-title{font-weight:700;font-size:1.15rem;color:var(--gm-bg)}
  .gm-bar span{
    display:block;
    height:100%;
    background:linear-gradient(90deg,#34d399,#10b981);
    border-radius:999px;
    width: calc(var(--w, 0) * 1%); /* <— width driven by custom property */
  }


  .gm-top3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;padding:10px 18px 24px}
  .gm-tile{border-radius:16px;padding:18px;background:#f9fafb;border:1px solid #eef2f4;transition:transform .15s}
  .gm-tile:hover{transform:translateY(-2px)}
  .gm-rank{display:inline-block;font-size:.85rem;color:#6b7280;background:#f3f4f6;border-radius:999px;padding:4px 10px;margin-bottom:10px}
  .gm-name{font-weight:800;line-height:1.05;font-size:1.55rem;color:#111827;margin:2px 0 6px}
  .gm-total{font-weight:600;color:#6b7280}
  .gm-tile.rank-1{background:linear-gradient(180deg,#fff7e6,#fff);border-color:#ffe4a3}
  .gm-tile.rank-2{background:linear-gradient(180deg,#f7f7fb,#fff);border-color:#dee3f3}
  .gm-tile.rank-3{background:linear-gradient(180deg,#fff4ee,#fff);border-color:#ffd6c2}

  .gm-campus{margin:8px 18px 24px}
  .gm-campus .gm-head{padding:22px 24px;border-bottom:1px solid #f1f5f9}
  .gm-campus h4{font-weight:800;color:#0f172a;margin:0 0 4px}
  .gm-sub{color:#64748b;font-weight:600}
  .gm-metrics{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:16px;padding:18px 24px}
  .gm-metric{border:1px solid #eef2f4;border-radius:12px;padding:12px}
  .gm-mh{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px}
  .gm-tag{font-weight:800;font-size:.9rem;color:#0f172a}
  .gm-val{font-weight:700;color:#64748b}
  .gm-bar{height:8px;background:#f1f5f9;border-radius:999px;overflow:hidden}
  .gm-bar span{display:block;height:100%;background:linear-gradient(90deg,#34d399,#10b981);border-radius:999px}
  .gm-total-row{padding:16px 24px;border-top:1px dashed #eef2f4;color:#0f172a;font-weight:800}
  .gm-source{padding:8px 24px 18px;color:#64748b}
  .gm-source a{color:#f97316;text-decoration:none}
  .gm-source a:hover{text-decoration:underline}

  @media (max-width: 1024px){
    .gm-metrics{grid-template-columns:repeat(3,minmax(0,1fr))}
  }
  @media (max-width: 640px){
    .gm-top3{grid-template-columns:1fr}
    .gm-metrics{grid-template-columns:1fr}
  }

  /* ===== MY CAMPUS METRICS ===== */
.gm-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 18px 24px 20px;
}

.gm-metric {
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gm-metric-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gm-metric-code {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e5f3eb;
}

.gm-metric-percent {
  font-size: 0.85rem;
  font-weight: 700;
  color: #059669;
}

.gm-metric-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.35;
}

.gm-metric-score {
  font-size: 0.78rem;
  color: #6b7280;
}

/* progress bar */
.gm-bar {
  position: relative;
  margin-top: 4px;
  height: 8px;
  background: #e74615;
  border-radius: 999px;
  overflow: hidden;
}

.gm-bar span {
  display: block;
  height: 100%;
  width: calc(var(--w, 0) * 1%);
  background: linear-gradient(90deg, #34d399, #10b981);
  border-radius: 999px;
}

/* responsif */
@media (max-width: 640px) {
  .gm-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px 16px 18px;
  }

  .gm-metric {
    padding: 10px 10px;
  }

  .gm-metric-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gm-metrics {
    grid-template-columns: 1fr;
  }
}

.sdgs-ranking {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--sdgs-dark-green);
}

.ranking-title {
  color: var(--sdgs-dark-green);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 25px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(46, 125, 50, 0.1);
  display: flex;
  align-items: center;
}

.ranking-title::before {
  content: "*";
  background-color: var(--sdgs-dark-green);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 0.9rem;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
}

.ranking-card {
  background-color: white;
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-top: 4px solid transparent;
}

.ranking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ranking-category {
  color: var(--sdgs-text-light);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.ranking-value {
  color: var(--sdgs-text-dark);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

/* Category-specific colors */
.country-ranking { border-top-color: var(--sdgs-dark-green); }
.si-ranking { border-top-color: var(--sdgs-blue); }
.wr-ranking { border-top-color: var(--sdgs-teal); }
.ec-ranking { border-top-color: var(--sdgs-orange); }
.ws-ranking { border-top-color: var(--sdgs-red); }
.tr-ranking { border-top-color: var(--sdgs-purple); }
.ed-ranking { border-top-color: var(--sdgs-gray); }

/* Performance indicators (optional) */
.ranking-value.low {
  color: var(--sdgs-red);
}
.ranking-value.medium {
  color: var(--sdgs-orange);
}
.ranking-value.high {
  color: var(--sdgs-green);
}

/* Responsive Design */
@media (max-width: 992px) {
  .ranking-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 768px) {
  .ranking-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .ranking-card {
    padding: 18px 12px;
  }
  
  .ranking-value {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .ranking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ranking-title {
    font-size: 1.1rem;
  }
  
  .ranking-value {
    font-size: 1.5rem;
  }
}

/* ===== Chart Card Styles ===== */
.card-dashboard {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-dashboard:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-header-dashboard {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 25px;
}

.card-title-dashboard {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.card-body-dashboard {
  padding: 25px;
}

.card-sub-dashboard {
  color: #7f8c8d;
  font-size: 0.875rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Dashboard Chart Container */
.chart-container-dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chart-container-dashboard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Canvas Element */
.chart-container-dashboard canvas {
  width: 100% !important;
  height: 350px !important; /* Fixed height for consistency */
}

/* Legend Container */
#myChartLegend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  width: 100%;
}

/* Legend Items (if Chart.js generates them) */
#myChartLegend ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

#myChartLegend li {
  display: flex;
  align-items: center;
  margin: 5px 15px;
  font-size: 0.9rem;
}

#myChartLegend span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 3px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .chart-container-dashboard {
    padding: 15px;
  }
  
  .chart-container-dashboard canvas {
    height: 300px !important;
  }
}

@media (max-width: 576px) {
  .chart-container-dashboard canvas {
    height: 250px !important;
  }
  
  #myChartLegend li {
    margin: 5px 10px;
    font-size: 0.8rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.chart-container-dashboard {
  animation: fadeIn 0.6s ease-out forwards;
}

.html-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.html-legend li {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.html-legend li:hover {
  background: rgba(0, 0, 0, 0.05);
}

.html-legend li span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  background: currentColor;
}

/* ===== Tooltip Customization ===== */
.chartjs-tooltip {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  color: white;
  padding: 10px 15px;
  font-size: 0.875rem;
  pointer-events: none;
  z-index: 1000;
}

.chartjs-tooltip table {
  margin: 0;
}

.chartjs-tooltip .tooltip-header {
  font-weight: 600;
  margin-bottom: 5px;
}

.chartjs-tooltip .tooltip-body-item {
  display: flex;
  align-items: center;
  margin: 3px 0;
}

.chartjs-tooltip .tooltip-body-item-color {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .card-header {
    padding: 15px 20px;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .chart-container {
    height: 300px;
  }
  
  .html-legend {
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .chart-container {
    height: 250px;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .card-sub {
    font-size: 0.8rem;
  }
  
  .html-legend {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== Animation for Legend Interaction ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.html-legend li {
  animation: fadeIn 0.3s ease forwards;
  opacity: 0;
}

.html-legend li:nth-child(1) { animation-delay: 0.1s; }
.html-legend li:nth-child(2) { animation-delay: 0.2s; }
.html-legend li:nth-child(3) { animation-delay: 0.3s; }
.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
/*end html chart*/

/* SDGS Sections Styles */
/* Base Styles */
.sdgs-container {
    position: relative;
    margin: 2rem 0;
}

/* Navigation Styles */
.sdgs-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

/* === RADAR + NAVIGATION LAYOUT === */
.sdgs-radar-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

/* Container tombol next/prev (desktop: vertikal di kanan) */
.sdgs-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Buttons */
.nav-button {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #2E7D32;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.prevBtn {
  background-color: #e0e0e0;
  color: #333;
}

.nextBtn {
  background-color: #2e7d32;
  color: #fff;
}

/* Section progress */
.section-progress {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  color: #555;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  /* chart di atas, tombol di bawah */
  .sdgs-radar-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  /* tombol jadi satu baris dan center */
  .sdgs-nav-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .nav-button {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  /* kartu radar full-width; chart di-center */
  .score-visualization .card {
    max-width: 100%;
  }

  .score-visualization .chart-container {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .nav-button {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}


.indicator-code {
  font-weight: 600;
  color: #2E7D32;
}

.indicator-name {
  font-size: 11px;
  color: #757575;
}


.score-visualization {
    flex: 1;
}

.indicators-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.indicators-table th,
.indicators-table td {
    padding: 6px 10px;
    line-height: 1.2;
}

.score-badge {
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    background: #e3f2fd;
    color: #1565c0;
}

/* Low score highlight */
.score-low {
    background: #ffebee !important;
    color: #c62828 !important;
    border: 1px solid #ef9a9a;
}

.sdgs-sections {
    position: relative;
    min-height: 500px; /* Prevent layout shift during transitions */
}

.sdgs-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    pointer-events: none;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sdgs-section.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
    position: relative; /* Reset positioning for active section */
}

/* Animation for section transitions */
@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sdgs-navigation {
        flex-wrap: wrap;
    }
    
    .section-progress {
        order: 3;
        flex: 100%;
        margin-top: 0.5rem;
    }
    
    .sdgs-section {
        padding: 1.5rem;
    }
     .sdgs-radar-layout {
    flex-direction: row;
    align-items: center;
  }
    .nav-button {
    width: 44px;
    height: 44px;
    font-size: 20px;
    flex-shrink: 0;
    display: flex !important;
  }
}

@media (max-width: 480px) {
    .nav-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .sdgs-section {
        padding: 1.25rem;
    }
}

.section-title {
  color: #2E7D32;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(46, 125, 50, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Table Styles */
.indicators-table {
  overflow-x: auto;
  margin-bottom: 30px;
}

.indicators-table table {
  width: 100%;
  border-collapse: collapse;
}

.indicators-table th {
  background-color: #F5F5F5;
  color: #2E7D32;
  font-weight: 600;
  padding: 12px 15px;
  text-align: left;
}

.indicators-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #EAEAEA;
  vertical-align: top;
}

.indicators-table tr:hover {
  background-color: #F9F9F9;
}

.score-badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: #E8F5E9;
  color: #2E7D32;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Score Visualization */
.score-visualization {
  margin-top: 30px;
}

.score-visualization h3 {
  font-size: 1rem;
  color: #616161;
  margin-bottom: 15px;
  font-weight: 500;
}

.score-bar {
  height: 30px;
  background-color: #EEEEEE;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.score-progress {
  height: 100%;
  background: linear-gradient(90deg, #4CAF50, #81C784);
  border-radius: 15px;
  transition: width 0.8s ease;
}

.score-percentage {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Section-specific colors */
#energy-climate .section-title,
#energy-climate th {
  color: #0288D1;
}

#energy-climate .score-badge {
  background-color: #E3F2FD;
  color: #0288D1;
}

#energy-climate .score-progress {
  background: linear-gradient(90deg, #0288D1, #4FC3F7);
}

/* Add similar color schemes for other sections */

/* Responsive Design */
@media (max-width: 768px) {
  .sdgs-section {
    padding: 20px;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .indicators-table th,
  .indicators-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .sdgs-sections {
    gap: 30px;
  }
  
  .section-title {
    font-size: 1.2rem;
  }
  
  .score-bar {
    height: 25px;
  }
}

/* Radar Chart Visualization Styles */
/* Radar Chart Visualization Styles */
.score-visualization {
  margin-top: 40px;
  margin-bottom: 30px;
  display: flex;          /* Enable Flexbox */
  justify-content: center; /* Horizontally center */
  align-items: center;    /* Vertically center (optional) */
  flex-direction: column; /* Stack children vertically */
}

/* Card Container - Add max-width to prevent stretching */
.score-visualization .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 800px;      /* Adjust based on your design */
  width: 100%;           /* Ensure it takes available width */
  margin: 0 auto;        /* Additional centering (redundant with Flexbox) */
}

/* Rest of your existing CSS remains the same */
.score-visualization h3 {
  color: #2E7D32;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(46, 125, 50, 0.15);
  text-align: center;     
}


.score-visualization .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.score-visualization .card-header {
  background-color: #2E7D32;
  color: white;
  padding: 16px 20px;
  border-bottom: none;
}

.score-visualization .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}

.score-visualization .card-title i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Card Body */
.score-visualization .card-body {
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Chart Container */
.score-visualization .chart-container {
  position: relative;
  width: 100%;
  max-width: 600px;        /* batas lebar radar */
  aspect-ratio: 1 / 1;     /* selalu kotak */
  margin: 0 auto;
  height: auto !important; /* override inline height */
}

.score-visualization canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Radar Chart Specific Styles */
#radarChart {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .score-visualization .chart-container {
    max-width: 380px;
  }
}

@media (max-width: 480px) {
  .score-visualization .chart-container {
    max-width: 300px;
  }
}

@media (max-width: 992px) {
  .score-visualization .chart-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .score-visualization {
    margin-top: 30px;
  }
  
  .score-visualization h3 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .score-visualization .card-header {
    padding: 14px 18px;
  }
  
  .score-visualization .card-title {
    font-size: 1rem;
  }
  
  .score-visualization .chart-container {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .score-visualization .chart-container {
    height: 250px;
  }
  
  .score-visualization .card-body {
    padding: 15px;
  }
}

/* Animation for chart loading */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.chart-container {
  animation: fadeIn 0.6s ease-out forwards;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.faq .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.faq p {
  line-height: 1.7;
  color: var(--default-color);
}

.faq .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.faq .custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: var(--default-color);
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.faq .custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--accent-color);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.faq .custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section {
  Add your styles here
} */

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
  .article-body{
    max-width: 75ch;          /* comfortable measure */
    margin: 0 auto;           /* center */
    font-size: 1.125rem;      /* 18px-ish */
    line-height: 1.85;
    color: #2b2b2b;
    word-break: break-word;
    hyphens: auto;
  }
  .article-body p{ margin: 0 0 1rem; }
  .article-body h2, .article-body h3{
    margin-top: 2.25rem; margin-bottom: .75rem; font-weight: 700;
  }
  .article-body img{ max-width:100%; height:auto; border-radius:.75rem; }
  .article-body figure{ margin: 1.5rem auto; text-align:center; }
  .article-body figcaption{ color:#6c757d; font-size:.95rem; margin-top:.5rem; }
  .article-body blockquote{
    margin:1.5rem 0; padding:1rem 1.25rem; background:#f8f9fa;
    border-left:4px solid #0d6efd; border-radius:.5rem; font-style:italic; color:#495057;
  }
  .article-body ul, .article-body ol{ margin:0 0 1rem 1.25rem; }
  .article-body a{ text-decoration: underline; text-underline-offset: 2px; }

.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/* About Page Specific Styles */
.about-page .about-hero {
  padding: 120px 0 60px;
  background: linear-gradient(rgba(0, 110, 182, 0.8), rgba(0, 110, 182, 0.8)), url('../img/about-hero-bg.jpg') center/cover;
  color: white;
  text-align: left;
}

.about-page .about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-page .about-content {
  padding: 80px 0;
}

.about-page .about-content h3 {
  color: #006eb6;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-page .about-content p.fst-italic {
  font-style: italic;
  color: #555;
  border-left: 3px solid #59ba47;
  padding-left: 15px;
}

.about-page .about-content ul {
  list-style: none;
  padding: 0;
}

.about-page .about-content ul li {
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
}

.about-page .about-content ul li i {
  color: #59ba47;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Mission Boxes */
.about-page .mission-box {
  margin-top: 30px;
}

.about-page .icon-box {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.about-page .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-page .icon-box i {
  font-size: 2rem;
  color: #006eb6;
  margin-bottom: 15px;
  display: block;
}

.about-page .icon-box h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3d6c;
}

/* Team Section */
.about-page .team {
  padding: 80px 0;
}

.about-page .member {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-page .member .member-img {
  position: relative;
  overflow: hidden;
}

.about-page .member .member-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-page .member:hover .member-img img {
  transform: scale(1.1);
}

.about-page .member .member-img .social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 50px;
  background: rgba(0, 110, 182, 0.8);
  transition: bottom 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-page .member:hover .member-img .social {
  bottom: 0;
}

.about-page .member .member-img .social a {
  color: white;
  margin: 0 10px;
  font-size: 1.2rem;
}

.about-page .member .member-info {
  padding: 20px;
  text-align: center;
}

.about-page .member .member-info h4 {
  font-weight: 700;
  color: #1a3d6c;
  margin-bottom: 5px;
}

.about-page .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 0.9rem;
  color: #006eb6;
  margin-bottom: 10px;
}

.about-page .member .member-info p {
  font-size: 0.9rem;
  color: #666;
}

/* Org Chart */
.about-page .org-chart {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Stats Section */
.about-page .stats {
  padding: 60px 0;
  background: white;
}

.about-page .stats-item {
  padding: 30px;
}

.about-page .stats-item span {
  font-size: 2.5rem;
  font-weight: 700;
  color: #006eb6;
  display: block;
  margin-bottom: 10px;
}

.about-page .stats-item p {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-page .about-hero {
    padding: 100px 0 40px;
  }
  
  .about-page .about-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-page .about-content {
    padding: 60px 0;
  }
  
  .about-page .member .member-img img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .about-page .about-hero {
    text-align: center;
    padding: 80px 0 30px;
  }
  
  .about-page .stats-item {
    padding: 20px;
  }
  
  .about-page .stats-item span {
    font-size: 2rem;
  }
}





