/* ============================== 
   Root Variables & Global Styles
   ============================== */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Inter", sans-serif;

  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #273d4e;
  --accent-color: #ff4a17;
  --accent-hover: #e03e0e;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --nav-color: #e5eaee;
  --nav-hover-color: #ff4a17;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 6px 20px rgba(0,0,0,0.15);

  scroll-behavior: smooth;
}

/* Accessibility fix: Hide widget in contrast/grayscale mode */
body.high-contrast #access-btn,
body.grayscale #access-btn,
body.high-contrast #accessibility-panel,
body.grayscale #accessibility-panel {
  display: none !important;
}


/* ============================== 
   Root Variables & Global Styles
   ============================== */
   :root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Inter", sans-serif;
  
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #273d4e;
    --accent-color: #ff4a17;
    --accent-hover: #e03e0e;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
  
    --nav-color: #e5eaee;
    --nav-hover-color: #ff4a17;
  
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 6px 20px rgba(0,0,0,0.15);
  
    scroll-behavior: smooth;
  }
  
  /* ==============================
     Global Styles
     ============================== */
  body {
    margin: 0;
    padding: 0;
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    line-height: 1.6;
    font-size: 16px;
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
  }
  
  h2{
    color: yellow;
    font-family: var(--heading-font);
    margin: 0;
  }
  h1, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    margin: 0;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }
  
  /* ==============================
     Animations
     ============================== */
  [data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-animate].animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  @keyframes zoomIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  /* ==============================
     Header
     ============================== */
  .header {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: background 0.3s ease, padding 0.3s ease;
    backdrop-filter: blur(6px);
  }
  
  .header .container-fluid {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header .logo {
    display: flex;
    align-items: center;
  }
  
  .header .logo img.header-logo {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .header .logo img.header-logo:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
  }
  
  .header .sitename {
    font-size: 26px;
    font-weight: 800;
  }
  
  .header .sitename .trabaho { color: #fff; }
  .header .sitename .pwe { color: #007bff; text-shadow: 0 0 6px rgba(0, 123, 255, 0.6); }
  
  .header .cta-btn {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    margin-left: 10px;
    border-radius: 6px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
  }
  
  .header .cta-btn:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-md);
  }
  /* ==============================
     Navigation Menu
     ============================== */
  .navmenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .navmenu a {
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 500;
    color: var(--nav-color);
    text-transform: uppercase;
    padding-bottom: 4px;
    position: relative;
  }
  
  .navmenu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--nav-hover-color);
    transition: width 0.3s ease;
  }
  
  .navmenu a:hover::after,
  .navmenu .active::after {
    width: 100%;
  }
  
  .mobile-nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
  }
  
  /* ==============================
     Hero Section
     ============================== */
  .hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
  }
  
  .hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .hero::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  .hero .container {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 0 20px;
  }
  
  .hero h2 {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .hero p {
    font-size: 22px;
    margin: 15px 0;
  }
  
  .hero .watch-video {
    color: #fff;
    background: var(--accent-color);
    padding: 12px 24px;
    border-radius: 6px;
    margin-top: 20px;
    display: inline-block;
    transition: background 0.3s;
  }
  
  .hero .watch-video:hover {
    background: var(--accent-hover);
  }
  /* === Welcome Section Two-Column Style === */
  .welcome-section {
    padding: 60px 20px;
    background: #fff;
    color: #333;
    font-family: "Inter", sans-serif;
  }
  
  .welcome-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .welcome-left,
  .welcome-right {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .welcome-left img,
  .welcome-right img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .welcome-left p,
  .welcome-right p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .welcome-right .intro-quote {
    font-style: italic;
    color: #444;
    font-size: 17px;
    line-height: 1.7;
    border-left: 4px solid #ff4a17;
    padding-left: 12px;
  }
  
  .welcome-right ul {
    padding-left: 20px;
  }
  
  .welcome-right ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .welcome-right ul li strong {
    color: #273d4e;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .welcome-container {
      flex-direction: column;
      gap: 30px;
    }
  }
  
  /* ==============================
     Sections
     ============================== */
  section, .section {
    padding: 70px 0;
    background-color: var(--background-color);
    color: var(--default-color);
    scroll-margin-top: 90px;
  }
  
  .section-title {
    padding-bottom: 40px;
    text-align: center;
  }
  
  .section-title h2 {
    font-size: 14px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }
  
  .section-title p {
    font-size: 30px;
    font-weight: 700;
    color: var(--heading-color);
    text-transform: uppercase;
  }
  
  /* ==============================
     Card Grid (Services, Guide)
     ============================== */
  .card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
  }
  
  .card, .guide-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 20px;
    width: clamp(240px, 30%, 300px);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
  }
  
  .card:hover, .guide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  
  .card img, .guide-card img {
    border-radius: 8px;
    height: 180px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 15px;
  }
  
  /* Audio Player Styling */
  .guide-card audio {
    width: 100%;
    margin-top: 10px;
    border-radius: 6px;
    background: #f1f3f4;
    padding: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .guide-filter {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .filter-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 5px;
    transition: background 0.3s;
  }
  
  .filter-btn.active {
    background-color: #ff4500;
    color: #fff;
    border-radius: 5px;
  }
  
  .filter-btn:hover {
    background-color: #ff7043;
    color: #fff;
  }
  
  /* Layout for cards + steps panel */
  .guide-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
  }
  
  .card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .guide-card {
    width: 250px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease;
  }
  
  .guide-card.hidden {
    display: none;
  }
  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 20px;
  }
  /* Steps Panel */
  .steps-panel {
    width: 300px;
    min-height: 200px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
  }
  
  .steps-panel.active {
    display: block;
  }
  /* Whats New Section */
  .WhatsNew {
    padding: 60px 20px;
    background: #fff;
  }
  
  .WhatsNew .section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
  }
  
  .WhatsNew .section-title p {
    font-size: 1.2rem;
    color: #777;
  }
  
  /* Card Grid Layout */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-items: center;
  }
  
  /* Individual Card */
  .WhatsNew .card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 340px;
  }
  
  .WhatsNew .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Card Image */
  .WhatsNew .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
  }
  
  /* Card Icon */
  .WhatsNew .card-icon {
    position: relative;
    margin: -30px auto 10px auto;
    width: 60px;
    height: 60px;
    background: #ff5e14;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Card Text */
  .WhatsNew .card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin: 15px 10px 8px 10px;
  }
  
  .WhatsNew .card p {
    font-size: 1rem;
    color: #555;
    padding: 0 15px;
    line-height: 1.5;
  }
  
  /* ==============================
     Slider
     ============================== */
  .slider {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .slide {
    min-width: 100%;
    transition: transform 0.5s ease;
    text-align: center;
  }
  
  .slider-controls {
    text-align: center;
    margin-top: 15px;
  }
  
  .slider-controls button {
    background: var(--accent-color);
    border: none;
    color: white;
    padding: 8px 12px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
  }
  
  .slider-controls button:hover {
    background: var(--accent-hover);
  }
  
  /* ======= Stats Section ======= */
  .stats {
    padding: 60px 0;
    background: #f8faff;
  }
  
  .stats .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .stats-item {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    flex: 1 1 220px;
    max-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .stats-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  /* Icon */
  .stats-item .icon {
    font-size: 36px;
    color: #ff4a17;
    display: block;
    margin-bottom: 10px;
  }
  
  /* Counter Number */
  .stats-item .purecounter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #273d4e;
    margin-bottom: 5px;
  }
  
  /* Label */
  .stats-item p {
    font-size: 16px;
    color: #555;
    margin: 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .stats .container {
      flex-direction: column;
      align-items: center;
    }
    .stats-item {
      width: 80%;
    }
  }
  /* ============================
     TESTIMONIALS SECTION
     ============================ */
  .testimonials {
    position: relative;
    background: url('../images/testimonials-bg.jpg') center/cover no-repeat;
    padding: 120px 20px;
    overflow: hidden;
  }
  
  .testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
  }
  
  .testimonials .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
  }
  
  /* Carousel */
  .carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
  }
  
  .carousel-slide {
    flex: 0 0 100%;
    padding: 20px;
    text-align: center;
  }
  
  .carousel-slide img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  
  .carousel-slide h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .carousel-slide p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px;
    color: #f1f1f1;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  /* Buttons - Bigger and Accessible */
  .testimonial-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 160px;
  }
  
  .btn-details {
    background: #ff4a17;
    color: #fff;
  }
  
  .btn-details:hover {
    background: #e03e10;
  }
  
  .btn-join {
    background: #fff;
    color: #333;
  }
  
  .btn-join:hover {
    background: #ddd;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .carousel-slide img {
      width: 150px;
      height: 150px;
    }
    .carousel-slide h3 {
      font-size: 1.6rem;
    }
    .carousel-slide p {
      font-size: 1rem;
    }
    .btn {
      font-size: 1rem;
      padding: 12px 20px;
    }
  }
  
  
  /* ==============================
     Contact
     ============================== */
  /* CONTACT SECTION */
  .contact {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fc);
    color: #333;
  }
  
  .contact .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact .section-title h2 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
  }
  
  .contact .section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: #ff4a17;
    border-radius: 3px;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .contact-info {
    display: grid;
    gap: 20px;
  }
  
  .info-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .info-card i {
    display: block;
    font-size: 2.4rem;
    color: #ff4a17;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
  }
  
  .info-card:hover i {
    transform: rotate(10deg) scale(1.1);
  }
  
  .info-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .info-card p {
    font-size: 1rem;
    color: #666;
  }
  
  /* Contact Form */
  .contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }
  
  .contact-form .form-group {
    display: flex;
    gap: 10px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #ff4a17;
    box-shadow: 0 0 0 2px rgba(255, 74, 23, 0.2);
  }
  
  .btn-submit {
    background: #ff4a17;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .btn-submit:hover {
    background: #e03e10;
    transform: translateY(-2px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
    .contact-form .form-group {
      flex-direction: column;
    }
  }
  
  
  /* ==============================
     Footer
     ============================== */
  .footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
  }
  
  /* ==============================
     Scroll Top
     ============================== */
  .scroll-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--accent-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    z-index: 9999;
  }
  
  .scroll-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* ==============================
     Accessibility Button
     ============================== */
  #access-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
  }
  
  #access-btn img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
  }
  
  /* ==============================
     Accessibility Panel
     ============================== */
  #accessibility-panel {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 100px;
    background: #111;
    color: #fff;
    padding: 15px;
    width: 220px;
    border-radius: 10px;
    z-index: 9999;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }
  
  #accessibility-panel.open {
    display: block;
  }
  
  #accessibility-panel button {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 8px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  #accessibility-panel button:hover {
    background: #555;
  }
  
  /* Magnifier */
    .magnifier {
      position: absolute;
      border: 3px solid #666;
      border-radius: 50%;
      width: 250px;
      height: 250px;
      overflow: hidden;
      display: none;
      pointer-events: none;
      z-index: 9998;
      box-shadow: 0 0 8px #000;
      background: white;
    }

  body.magnifier-active * {
      cursor: zoom-in;
    }


  
  /* ==============================
     Accessibility Styles
     ============================== */
  .grayscale {
    filter: grayscale(100%);
  }
  
  .high-contrast {
    filter: contrast(200%) brightness(90%);
  }
  
  .readable-font * {
  font-family: "OpenDyslexic", Arial, sans-serif !important;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
  
  /* ==============================
     Responsive
     ============================== */
  @media (max-width: 768px) {
    #accessibility-panel {
      right: 20px;
      width: 180px;
    }
  }
  
  /* ======= Workshop Category Section ======= */
  .WorkShopCategory {
    padding: 60px 20px;
    background: #fff;
    color: #333;
    font-family: "Inter", sans-serif;
  }
  
  .WorkShopCategory .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .WorkShopCategory .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .WorkShopCategory .column {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Headline */
  .WorkShopCategory h3 {
    font-size: 28px;
    font-weight: 600;
    color: #273d4e;
    margin-bottom: 10px;
  }
  
  /* Paragraphs */
  .WorkShopCategory p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
  }
  
  /* Italic intro text */
  .WorkShopCategory .fst-italic {
    font-style: italic;
    font-size: 17px;
    color: #555;
    border-left: 4px solid #ff4a17;
    padding-left: 12px;
    margin-bottom: 10px;
  }
  
  /* List Styling */
  .WorkShopCategory ul {
    padding-left: 20px;
  }
  
  .WorkShopCategory ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .WorkShopCategory ul li strong {
    color: #273d4e;
    font-weight: 600;
  }
  
  /* Images */
  .WorkShopCategory img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .WorkShopCategory img:hover {
    transform: scale(1.02);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .WorkShopCategory .row {
      flex-direction: column;
      gap: 30px;
    }
    .WorkShopCategory h3 {
      font-size: 24px;
    }
  }
  
  /* ========== Responsive Header and Navigation ========== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: black;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
  width: 100%; /* ← Add this */
}

.header-logo {
  height: 50px;
  margin-right: 10px;
}

.sitename {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu li {
  margin: 0 10px;
}

.navmenu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navmenu a:hover {
  color: #0056b3;
}

.auth-buttons .cta-btn {
  margin-left: 10px;
  padding: 8px 16px;
  background-color: #0326f0;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.auth-buttons .cta-btn:hover {
  background-color: #021bb3;
}

.mobile-nav-toggle {
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
}

/* ========== Mobile Styles ========== */
@media (max-width: 768px) {
  .navmenu {
    position: absolute;
    top: 80px;
    right: 20px;
    background: Black;
    flex-direction: column;
    border: 1px solid #ccc;
    padding: 15px;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 999;
  }

  .navmenu.open {
    display: flex;
  }

  .navmenu li {
    margin: 10px 0;
  }

  .auth-buttons {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: block;
  }
}
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  display: none;
  flex-shrink: 0;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.carousel-slide.active {
  display: block;
}

.carousel-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-buttons button {
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.3s ease;
}

.carousel-buttons button:hover {
  background-color: rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
  .header {
    padding: 8px 12px;
  }

  .header .logo img {
    max-height: 40px;
  }

  .sitename {
    font-size: 1.2rem;
  }
  html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  position: relative;
}
  


/* === Overflow Fixes for Mobile View === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Adjust floating access button and hero text for mobile */
@media (max-width: 768px) {
  #access-btn {
    right: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .hero h2 {
    font-size: 28px;
    line-height: 1.3;
    word-break: break-word;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .watch-video {
    font-size: 14px;
    padding: 10px 18px;
  }

  .hero .container {
    padding: 0 12px;
  }
}



/* === Horizontal Dropdown Menu on Mobile === */
@media (max-width: 768px) {
  .navmenu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 15px;
    display: none;
    z-index: 1000;
  }

  .navmenu.open {
    display: flex;
  }

  .navmenu ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .navmenu li {
    white-space: nowrap;
  }

  .navmenu a {
    font-size: 14px;
    color: #fff;
    padding: 8px 12px;
    display: block;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    transition: background 0.3s ease;
  }

  .navmenu a:hover {
    background: rgba(255,255,255,0.25);
  }

  .mobile-nav-toggle {
    display: block;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }

  .auth-buttons {
    display: none !important;
  }
}
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none; /* Hidden by default, shown via JS on scroll */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-in-out;
}

#scrollTopBtn:hover {
  background-color: #0056b3;
}
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}
    #WorkShopCategory {
  background: #f9f9f9 !important;
  padding: 60px 0 !important;
}

#WorkShopCategory h3 {
  font-family: var(--heading-font, sans-serif);
  font-size: 28px;
  color: #222;
}

#WorkShopCategory p, #WorkShopCategory ul {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

#WorkShopCategory img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}
.audio-lang-toggle {
  margin: 10px 0;
}
.audio-lang-toggle button {
  margin-right: 5px;
  font-size: 0.9rem;
  padding: 5px 10px;
  border: none;
  background: #f0f0f0;
  cursor: pointer;
  border-radius: 4px;
}
.audio-lang-toggle button:hover {
  background: #ddd;
}
.guide-filter {
  text-align: center;
  margin-bottom: 20px;
}
.guide-filter .filter-btn {
  margin: 0 5px;
  padding: 6px 12px;
  border: none;
  background-color: #eee;
  border-radius: 4px;
  cursor: pointer;
}
.guide-filter .filter-btn.active {
  background-color: orange;
  color: white;
}
}

