/* Global Scroll Behavior */
html,
body {
  scroll-behavior: smooth !important;
  height: auto;
  overflow-y: auto;
  /* Ensure window scrolling */
}

.node__content {
  padding: 20px 0px;
}

/* ============================================
   Drupal Status / Error / Warning Messages
   ============================================ */
.page-messages-wrapper {
  padding-top: 16px;
  padding-bottom: 0;
}

.messages {
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 5px solid;
  font-size: 0.95rem;
  line-height: 1.5;
  display: block;
}

/* Error */
.messages--error {
  background-color: #fff5f5;
  border-left-color: #c62828;
  color: #7f0000;
}

/* Warning */
.messages--warning {
  background-color: #fffde7;
  border-left-color: #f9a825;
  color: #6d4c00;
}

/* Status / Success */
.messages--status {
  background-color: #f1f8e9;
  border-left-color: #388e3c;
  color: #1b5e20;
}

.messages h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.messages__list {
  margin: 0;
  padding-left: 20px;
}

.messages__item {
  margin-bottom: 4px;
}

/* ============================================
   Inline Form Validation Error Messages
   ============================================ */
.form-item--error input,
.form-item--error select,
.form-item--error textarea {
  border-color: #c62828 !important;
  outline: 2px solid #c62828 !important;
  background-color: #fff5f5 !important;
}

.form-item--error-message {
  display: block;
  margin-top: 5px;
  padding: 5px 10px;
  background-color: #fff5f5;
  border-left: 4px solid #c62828;
  border-radius: 0 3px 3px 0;
  color: #b71c1c;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

.form-item--error-message strong,
.form-item--error-message a {
  color: #b71c1c;
  font-weight: 600;
}


.body-screen {
  min-height: 45vh;
  background: #fdfdfd;
}

/* Visually Hidden Helper (Accessibility) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Global Keyboard Accessibility Focus Indicator */
:focus {
  outline: none;
  /* Reset default browser outline for click */
}

:focus-visible {
  outline: 3px solid #fdb913 !important;
  /* High contrast yellow */
  outline-offset: 3px !important;
  box-shadow: 0 0 0 5px rgba(253, 185, 19, 0.3) !important;
  border-radius: 2px !important;
}

/* Specific focus style for forms to ensure usability */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: #007bb5 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2) !important;
}

.focusable:focus-visible {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  z-index: 100000;
  padding: 10px 20px !important;
  background: #fdb913 !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  text-decoration: none !important;
  font-weight: bold !important;
  font-size: 1rem !important;
}

/* Card & Interactive Element Focus Improvements */
.project-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
  border-color: #009EDB !important;
}

.business-item:focus-visible {
  background: #ffffff !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
  transform: scale(1.02) translateY(-2px);
  z-index: 5;
}

.node-content:focus-within {
  outline: 3px solid #fdb913;
  outline-offset: 5px;
  box-shadow: 0 0 0 8px rgba(253, 185, 19, 0.2);
}

/* Ensure focus ring is not clipped by common containers */
.navbar,
.navbar-nav,
.nav-item,
.card,
.block,
.views-row,
.business-grid,
.business-item {
  overflow: visible !important;
}

/* Button & Link Specific Focus Reinforcement */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid #fdb913 !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 5px rgba(253, 185, 19, 0.4) !important;
  z-index: 50 !important;
  position: relative;
}

/* =========================================
   GIGW 3.0 Compliant Print A4 Stylesheet
   ========================================= */
@media print {

  /* 1. Page Setup for A4 */
  @page {
    size: A4;
    margin: 1.5cm;
  }

  /* 2. Reset & Typography */
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000 !important;
    background: #fff !important;
    font-family: 'Times New Roman', Times, serif;
    /* Serif is often better for print */
    margin: 0;
    padding: 0;
  }

  /* 3. Hide Non-Essential Elements (Navigation, Sidebars, Footer, Tools) */
  nav,
  header.header,
  footer,
  aside.sidebar,
  .top-bar,
  .navbar,
  .social-media-fixed,
  .accessibility-trigger,
  .accessibility-drawer,
  .back-to-top,
  .skip-link,
  .no-print,
  .breadcrumb,
  .search_icons_mobile,
  .language-toggle,
  .theme-inline,
  #accessibility-trigger,
  #back-to-top,
  .nav-scroll-controls,
  button.navbar-toggler {
    display: none !important;
  }

  /* 4. Layout Reset */
  main,
  .content-area,
  .main-body,
  .container,
  .container-fluid,
  .row,
  .col,
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    flex: none !important;
    display: block !important;
    position: static !important;
    overflow: visible !important;
    /* Ensure content doesn't clip */
  }

  /* 5. Content Specifics */
  /* Hide decorative banner images but keep logo and title */
  .logo-bar-inner>img {
    display: none !important;
  }

  /* Ensure Logo and Title are visible and aligned */
  .logo-bar-inner {
    border-bottom: 2px solid #000;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .logo-left-inner,
  .text-right-inner {
    display: block !important;
    text-align: center;
    width: 100%;
  }

  .logo-left-inner img {
    max-width: 150px;
    height: auto;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
    color: #000 !important;
  }

  p,
  ul,
  ol {
    widows: 3;
    orphans: 3;
  }

  /* 6. Link Handling (Exclude internal anchors/JS) */
  a {
    text-decoration: underline !important;
    color: #000 !important;
  }

  /* Show URL for external links only - Cleaner look */
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    word-wrap: break-word;
  }

  a[href^="/"]:after,
  a[href^="#"]:after,
  a[href^="javascript"]:after {
    content: "";
  }

  /* 7. Tables & Borders */
  table {
    width: 100% !important;
    border-collapse: collapse !important;
    page-break-inside: auto;
  }

  tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }

  thead {
    display: table-header-group;
    /* Repeat header on new page - Browser support varies */
  }

  table,
  th,
  td {
    border: 1px solid #000 !important;
    padding: 6px;
    background: transparent !important;
  }

  /* 8. Org Chart Specifics (If printed) */
  .org-chart-wrapper {
    overflow: visible !important;
  }

  .org-chart-tree ul {
    padding-top: 0;
  }

  /* 9. Images */
  img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
  }

  /* 10. Forms */
  input,
  textarea {
    border: 1px solid #ccc;
    background: #fff;
    display: block;
    width: 100%;
  }

  /* Hide functional buttons in print */
  button:not(.btn-unstyled),
  .btn,
  input[type="submit"],
  input[type="button"] {
    display: none !important;
  }

  /* Add source footer */
  body:after {
    content: "Printed from SJVN Website";
    display: block;
    text-align: center;
    font-size: 10pt;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
  }
}

/*================= end A4 size paper par properly print ================*/

/* Top Utility Bar */
.top-bar {
  background: var(--primary-color);
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  /* left, middle, right */
  align-items: center;
  /* vertical center */
  padding: 5px 35px;
}

.top-bar a {
  color: #fff;
}

/* Common for all 3 sections */
.top-bar .left-links,
.top-bar .middle-logs,
.top-bar .right-links {
  display: flex;
  align-items: center;
  gap: 10px;
  /* spacing between items */
}

/* Left section */
.left-links img {
  height: 20px;
  vertical-align: middle;
}

/* Middle logos */
.middle-logs img {
  height: 35px;
  /* margin: 0 5px; */
  object-fit: contain;
}

/* Right section */
.right-links a,
.right-links button {
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 6px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.right-links button:hover,
.right-links a:hover {
  text-decoration: underline;
}

/* Language Toggle */
.language-toggle {
  display: inline-flex;
  align-items: center;
}

.language-toggle .region-language {
  display: contents;
}

.language-toggle .block-language {
  display: contents;
}

/* Hide contextual links in language switcher */
.language-toggle .contextual {
  display: none !important;
}

/* Language links container */
.language-toggle .links {
  display: contents;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Show all languages but hide active one based on hreflang */
.language-toggle .links li {
  display: inline;
  padding: 0 0px !important;
  margin: 0;
  list-style: none;
  border-right: none !important;
}

/* HIDE the active/current language switcher link using valid data-lang attribute */
body.lang-en .language-toggle ul.links li[data-lang="en"] {
  display: none !important;
}

body.lang-hi .language-toggle ul.links li[data-lang="hi"] {
  display: none !important;
}

/* Fallback: Hide current active language if data-lang is not being detected correctly */
/* We rely on the body.lang-X selectors above instead */

/* Simple text link - no button styling */
.language-toggle .links li a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;
  font-size: inherit;
  transition: opacity 0.2s ease;
}

/* Simple hover effect */
.language-toggle .links li a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* Theme switcher */
.theme-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.theme-inline .theme-color {
  width: 15px;
  height: 15px;
  border-radius: 10%;
  cursor: pointer;
  border: 1px solid white;
}

.theme-inline .theme-color:hover {
  transform: scale(1.05);
}

.theme-inline .blue {
  background: #0072bc;
}

.theme-inline .green {
  background: #2e7d32;
}

.theme-inline .dark {
  background: #333;
}

/* Logo Bar */
.logo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: linear-gradient(to right, #009edb75, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../images/banner-bg.svg) no-repeat center center;
  background-size: cover;
  color: var(--text-color);
}

/* 
span.field-content a {
  display: none;
} */

.logo-left {
  display: flex;
  align-items: right;
  gap: 10px;
  color: var(--bg-light);
}

.main-logo {
  aspect-ratio: 2 / 3;
  width: 80px;
  height: auto;
}

.org-text h1 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 26px;
}

.org-text span {
  font-size: 1rem;
}

.org-text p {
  margin: 0.7px 0;
  font-size: 0.85rem;

}

.item-list ul li {
  line-height: 30px;
}

/* ========================================
   BREADCRUMB STYLES (WCAG 2.1 & GIGW 3.0)
   ======================================== */
.breadcrumb {
  background: transparent;
  padding: 5px 0;
  margin: 5px 0;
  display: block;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: flex-end;
  /* Right align for header sec */
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}

/* CSS-based separator with strong contrast - explicitly skips the first item (Home icon) */
.breadcrumb__item:not(:first-child)::before {
  content: "»";
  padding: 0 10px;
  color: #fff;
  font-family: inherit;
  font-weight: bold;
  font-size: 1.1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}

.breadcrumb__link {
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}

.breadcrumb__link:hover {
  text-decoration: underline;
  color: var(--secondary-color, #F6AD0A) !important;
  opacity: 1;
}

.breadcrumb__text {
  color: #004b8d;
  /* Deeper blue for active item */
  font-weight: 700;
  text-shadow: 2px 2px 8px rgb(255 255 255);
}



/* Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  /* Fixed px height as requested */
  overflow: hidden;
  background: url('../images/banner-bg.svg') no-repeat center center;
  background-size: cover;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  /* Ensure slides are above the blurred background */
}

/* Blurred Background Layer */
.hero-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(15px) brightness(0.8);
  /* Blur and slight darken for contrast */
  transform: scale(1.1);
  /* Prevent blurred edges */
  z-index: 0;
  transition: background-image 0.5s ease-in-out;
  pointer-events: none;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: fade 0.8s ease-in-out;
}

.carousel-slide.active {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.carousel-slide img {
  width: auto !important;
  height: 100% !important;
  max-width: 100%;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

button.carousel-next.carousel-button.right {
  right: 0px;
  justify-content: space-around;
}

button.carousel-prev.carousel-button.left {
  justify-content: center;
}

/* Navigation Arrows */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Pagination Dots */
.carousel-dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  /* ✅ Now sits inside the carousel */
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
}

.carousel-dots button {
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.4);
  width: 14px;
  height: 14px;
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 0;
}

.carousel-dots button.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 10px;
  border-color: var(--primary-color);
}

.carousel-dots button:hover {
  transform: scale(1.2);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hero-carousel {
    height: 50vh;
  }
}


/* Announcement Bar Wrapper */
.announcement-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* Allow wrapping for mobile, but constrained on desktop */
  background: var(--primary-color);
  color: #fff;
  font-weight: bold;
  /* padding: 0px 10px; */
  gap: 10px;
  font-size: 0.9rem;
  width: 100%;
}

/* Left Section */
.announcement-left {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  /* Stack heading and buttons */
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px 10px;
  background: #fdb913;
  color: #000;
}

.announcement-title {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Center Track */
.announcement-track-wrapper {
  flex: 1;
  background: var(--primary-color);
  border-radius: 0px;
  padding: 6px 8px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  min-width: 0;
  /* Critical for flex content */
}

.announcement-track {
  display: inline-flex;
  gap: 12px;
}

.announcement-item {
  background: transparent;
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  padding: 2px 20px 2px 20px;
  color: #fff;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}

/* Add the dot before each announcement */
.announcement-item::before {
  content: "•";
  position: absolute;
  left: 8px;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

/* Right Controls */
.announcement-controls {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  /* Small gap below heading */
}

.announcement-controls button {
  background: var(--secondary-color);
  color: #000;
  border: 1px solid #00000033;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.3s;
}

.announcement-controls button:hover {
  background: #eab100;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive for Announcement Bar */
@media (max-width: 768px) {
  .announcement-bar {
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow: visible;
  }

  .announcement-left {
    width: 100%;
    flex-direction: row !important;
    justify-content: space-between !important;
    padding: 8px 15px;
    border-radius: 4px;
    white-space: normal;
  }

  .announcement-title {
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  .announcement-controls {
    justify-content: flex-end;
    margin-top: 0;
    gap: 8px;
  }

  .announcement-controls button {
    padding: 4px 10px;
    font-size: 0.9rem;
  }

  .announcement-track-wrapper {
    width: 100%;
    margin-top: 0;
    border-radius: 4px;
    padding: 8px;
  }
}

@media (min-width: 769px) {
  .announcement-bar {
    flex-wrap: nowrap;
    /* Ensure single line on large screens */
  }
}

/* Animation */
@keyframes scrollAnnouncements {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.aboutscreen {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-section {
  padding: 30px 20px;
  /* margin: 20px auto; */
  max-width: 100%;
}

/* Portfolio About View */
.portfolio-about-view {
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-view-title {
  display: none;
  /* Hide duplicate title */
}

/* Portfolio Exposed Filters - Vertical Tabs Style */
.portfolio-exposed-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* background: #fff; */
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

/* Filter section heading if present */
.portfolio-exposed-form>legend,
.portfolio-exposed-form>.form-item>label.form-label {
  background: var(--primary-color);
  color: #fff;
  padding: 15px 20px;
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  border-left: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-exposed-form>legend:hover,
.portfolio-exposed-form>.form-item>label.form-label:hover {
  background: var(--primary-color);
  color: #fff;
}


.portfolio-exposed-form .form-item:last-child {
  border-bottom: none;
}

/* Label styling - works when label wraps input or comes after */
.portfolio-exposed-form label {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin: 0;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #333;
  border-left: 3px solid transparent;
  width: 100%;
  list-style: none;
}

.portfolio-exposed-form label:hover {
  background: var(--primary-light);
  border-left-color: var(--primary-color);
}

.portfolio-exposed-form input[type="checkbox"],
.portfolio-exposed-form input[type="radio"] {
  margin-right: 10px;
  cursor: pointer;
  accent-color: var(--primary-color);
  flex-shrink: 0;
}

/* When input comes before label */
.portfolio-exposed-form input[type="checkbox"]:checked+label,
.portfolio-exposed-form input[type="radio"]:checked+label {
  background: var(--primary-light);
  border-left-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}

/* When input is inside label */
.portfolio-exposed-form label:has(input:checked) {
  background: var(--primary-light);
  border-left-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}

/* Style for BEF (Better Exposed Filters) if used */
.portfolio-exposed-form .bef-checkboxes,
.portfolio-exposed-form .form-checkboxes,
.portfolio-exposed-form .form-radios {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.portfolio-exposed-form .bef-checkboxes .form-item,
.portfolio-exposed-form .form-checkboxes .form-item,
.portfolio-exposed-form .form-radios .form-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.portfolio-exposed-form .bef-checkboxes .form-item:hover,
.portfolio-exposed-form .form-checkboxes .form-item:hover,
.portfolio-exposed-form .form-radios .form-item:hover {
  background: var(--primary-light);
  border-left-color: var(--primary-color);
}

.portfolio-exposed-form .bef-checkboxes .form-item:last-child,
.portfolio-exposed-form .form-checkboxes .form-item:last-child,
.portfolio-exposed-form .form-radios .form-item:last-child {
  border-bottom: none;
}

.portfolio-exposed-form .form-item input[type="checkbox"]:checked,
.portfolio-exposed-form .form-item input[type="radio"]:checked {
  accent-color: var(--primary-color);
}

.portfolio-exposed-form .form-item:has(input:checked) {
  background: var(--primary-light);
  border-left-color: var(--primary-color);
}

.portfolio-exposed-form .form-item:has(input:checked) label {
  color: var(--primary-color);
  font-weight: 600;
}

/* Portfolio Results Display */
.view-portfolio .view-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
}

/* Keep 4 columns on medium-large screens */
@media (max-width: 1400px) {
  .view-portfolio .view-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

/* 3 columns on smaller tablets */
@media (max-width: 992px) {
  .view-portfolio .view-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

/* 2 columns on mobile landscape */
@media (max-width: 768px) {
  .view-portfolio .view-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.view-portfolio .views-row {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.view-portfolio .views-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.view-portfolio .views-row img {
  width: 100%;
  height: 120px !important;
  min-height: 120px !important;
  max-height: 120px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Image container to ensure consistent sizing */
.view-portfolio .views-row .views-field.views-field-field-image,
.view-portfolio .views-row .views-field-field-image img,
.view-portfolio .views-row .field--name-field-image,
.view-portfolio .views-row picture {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.view-portfolio .views-row .views-field {
  padding: 10px;
}

.view-portfolio .views-row .views-field-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 0.95rem;
  line-height: 1.3;
}

.view-portfolio .views-row .views-field-body {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* Ensure image fields don't have padding */
.view-portfolio .views-row .views-field.views-field-field-image {
  padding: 0 !important;
  margin: 0 !important;
  display: block;
  line-height: 0;
}

/* Target all possible image wrapper elements */
.view-portfolio .views-row .views-field-field-image>div,
.view-portfolio .views-row .field--name-field-image>div {
  height: 120px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* Additional selectors to catch all image variations */
.view-portfolio img,
.view-portfolio .views-row img,
.view-portfolio .views-field-field-image img,
.view-portfolio .field--type-image img {
  min-height: 120px !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Portfolio View Row Layout */
.view-portfolio .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}

.view-portfolio .col-md-3 {
  flex: 0 0 auto;
  min-width: 250px;
}

.view-portfolio .col-md-9 {
  flex: 1;
  min-width: 0;
}

/* Sticky sidebar for filters */
.view-portfolio .col-md-3>div {
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

/* Ensure consistent layout on smaller screens */
@media (max-width: 768px) {
  .view-portfolio .col-md-3 {
    width: 100%;
  }

  .view-portfolio .col-md-9 {
    width: 100%;
  }

  .view-portfolio .col-md-3>div {
    position: static;
  }

  .portfolio-exposed-form {
    margin-bottom: 20px;
  }

  /* Portfolio images remain same height on mobile */
  .view-portfolio img,
  .view-portfolio .views-row img,
  .view-portfolio .views-field-field-image img {
    height: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
  }

  .view-portfolio .views-row .views-field.views-field-field-image,
  .view-portfolio .views-row .field--name-field-image,
  .view-portfolio .views-row picture {
    height: 120px !important;
  }

  .about-intro-section img {
    min-height: 250px;
  }

  .about-intro-section .row {
    flex-direction: column;
  }

  .about-intro-section .col-sm-6:first-child {
    min-width: 100%;
  }
}

@media (max-width: 480px) {

  /* Single column on very small screens */
  .view-portfolio .view-content {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }

  /* Keep consistent image height on small screens */
  .view-portfolio img,
  .view-portfolio .views-row img,
  .view-portfolio .views-field-field-image img {
    height: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
  }

  .view-portfolio .views-row .views-field.views-field-field-image,
  .view-portfolio .views-row .field--name-field-name,
  .view-portfolio .views-row picture {
    height: 120px !important;
  }

  .about-intro-section img {
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  .about-intro-section .row {
    flex-direction: column;
  }

  .about-intro-section .col-sm-6:first-child {
    width: 100%;
  }
}

/* About Intro Section - Compact Layout */
.about-intro-section {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--primary-color);
}

.about-intro-section .container {
  max-width: 100%;
  padding: 0;
}

.about-intro-section .row {
  align-items: center;
  gap: 20px;
}

.about-intro-section .col-sm-6 {
  flex: 1;
}

.about-intro-section .col-sm-6:first-child {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  min-width: 350px;
  height: 100%;
}

.about-intro-section .col-sm-6:first-child>* {
  width: 100%;
  height: 100%;
  display: flex;
}

.about-intro-section img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

.about-intro-section p {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
  text-align: justify;
}

.about-intro-section p:last-child {
  margin-bottom: 0;
}

/* Old styles for compatibility */
.about-section-wrapper {
  padding: 50px 25px;
}

.about-section-wrapper h3 {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-section h3 {
  color: var(--primary-color);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-section-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.about-section-main p {
  flex: 1 1 48%;
  font-size: 15px;
  text-align: justify;
  line-height: 1.6;
  color: #222;
}

.about-grid {
  flex: 1 1 48%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Each card */
.about-card {
  background-size: cover;
  background-position: center;
  color: #003a52;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

/* Background images for cards */
.about-card.op {
  background-image: url('../images/operation.png');
}

.about-card.uc {
  background-image: url('../images/under-construction.png');
}

.about-card.si {
  background-image: url('../images/survey-investigation.png');
}

.about-card.pc {
  background-image: url('../images/pre-construction.png');
}

/* Hover effect */
.about-card:hover {
  transform: scale(1.05);
}

.about-see-more {
  display: flex;
  align-items: end;
  justify-content: end;
  margin-right: 20px;
  /* margin-top: 20px; */
}

/* Responsive behavior */
@media (max-width: 768px) {
  .about-section-main {
    flex-direction: column;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .about-section-main p {
    flex: 1 1 100%;
  }

  .about-intro-section img {
    min-width: 100%;
  }
}

/* Carousel Styles - Override Bootstrap conflicts */
.power-station-section {
  text-align: center !important;
  background-color: var(--primary-light) !important;
  padding: 30px 0 !important;
}

.power-station-section h3 {
  color: var(--primary-color) !important;
  line-height: 30px !important;
  margin-bottom: 10px !important;
}

/* Custom carousel wrapper - prevent Bootstrap interference */
.power-station-section .carousel-wrapper {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 200px !important;
  margin: 0 auto !important;
  overflow: visible !important;
  /* Allow overlapping items to be visible */
}

.power-station-section .carousel {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border: none !important;
}

/* Custom power items - override Bootstrap carousel item styles */
.power-station-section .power-item {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 150px !important;
  height: 150px !important;
  background-color: #F9F9F9 !important;
  border-radius: 50% !important;
  text-align: center !important;
  padding: 15px !important;
  transform: translate(-50%, -50%) !important;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 6px 20px #BFD7E5 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer !important;
  border: 2px solid #003A52 !important;
  margin: 0 !important;
  overflow: hidden !important;
  word-wrap: break-word !important;
}

.power-station-section .power-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.power-station-section .power-item .count {
  display: block !important;
  font-size: 24px !important;
  font-weight: bold !important;
  transition: all 0.6s ease !important;
  margin: 0 !important;
  padding: 0 !important;
}

.power-station-section .power-item .label {
  display: block !important;
  font-size: 12px !important;
  transition: all 0.6s ease !important;
  line-height: 1.1 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  word-wrap: break-word !important;
  hyphens: auto !important;
  max-width: 100% !important;
}

/* Custom carousel buttons - override Bootstrap button styles */
.power-station-section .carousel-button,
.power-station-section .power-station-carousel-button {
  background-color: var(--primary-color) !important;
  border: none !important;
  color: white !important;
  font-size: 24px !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
  z-index: 10 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.power-station-section .carousel-button.left,
.power-station-section .power-station-carousel-button.left {
  left: 10px !important;
  right: auto !important;
}

.power-station-section .carousel-button.right,
.power-station-section .power-station-carousel-button.right {
  right: 10px !important;
  left: auto !important;
}

.power-station-section .carousel-button:hover,
.power-station-section .power-station-carousel-button:hover {
  background-color: var(--primary-color) !important;
  opacity: 0.8 !important;
}

.power-station-section .carousel-button:focus,
.power-station-section .power-station-carousel-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* States - Override Bootstrap conflicts */
.power-station-section .power-item.active {
  transform: translate(-50%, -50%) scale(1.2) !important;
  opacity: 1 !important;
  border: 3px solid var(--primary-color) !important;
  z-index: 5 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}

.power-station-section .power-item.active .count {
  font-size: 32px !important;
  color: var(--primary-color) !important;
  font-weight: 900 !important;
}

.power-station-section .power-item.active .label {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--primary-color) !important;
}

/* Left side items with overlapping effect - Perfectly Balanced */
.power-station-section .power-item.left1 {
  transform: translate(-140%, -50%) scale(1.0) !important;
  /* opacity: 0.8 !important; */
  z-index: 4 !important;
}

.power-station-section .power-item.left1 .count {
  font-size: 22px !important;
  color: var(--primary-color) !important;
}

.power-station-section .power-item.left1 .label {
  font-size: 12px !important;
}

.power-station-section .power-item.left2 {
  transform: translate(-220%, -50%) scale(0.8) !important;
  /* opacity: 0.5 !important; */
  z-index: 3 !important;
}

.power-station-section .power-item.left2 .count {
  font-size: 18px !important;
  color: #005A8C !important;
}

.power-station-section .power-item.left2 .label {
  font-size: 13px !important;
  color: #005A8C !important;
}

/* Right side items with overlapping effect - Perfectly Balanced */
.power-station-section .power-item.right1 {
  transform: translate(40%, -50%) scale(1.0) !important;
  /* opacity: 0.8 !important; */
  z-index: 4 !important;
  border: 2px solid #003A52 !important;
}

.power-station-section .power-item.right1 .count {
  font-size: 22px !important;
  color: var(--primary-color) !important;
}

.power-station-section .power-item.right1 .label {
  font-size: 12px !important;
}

.power-station-section .power-item.right2 {
  transform: translate(120%, -50%) scale(0.8) !important;
  /* opacity: 0.5 !important; */
  z-index: 3 !important;
}

.power-station-section .power-item.right2 .count {
  font-size: 18px !important;
  color: #00497A !important;
}

.power-station-section .power-item.right2 .label {
  font-size: 13px !important;
  color: #00497A !important;
}

/* Hidden items - completely faded and scaled down - Override Bootstrap */
.power-station-section .power-item.hidden {
  transform: translate(-50%, -50%) scale(0.6) !important;
  opacity: 0.2 !important;
  z-index: 1 !important;
}

.power-station-section .power-item.hidden .count {
  font-size: 16px !important;
}

.power-station-section .power-item.hidden .label {
  font-size: 9px !important;
}

/* Mobile Responsive Styles for Power Station Section */
@media (max-width: 768px) {
  .power-station-section .carousel-wrapper {
    max-width: 100% !important;
    height: 180px !important;
    padding: 0 20px !important;
  }

  .power-station-section .carousel {
    padding-top: 180px !important;
  }

  .power-station-section .power-item {
    width: 100px !important;
    height: 100px !important;
    padding: 12px !important;
  }

  .power-station-section .power-item .count {
    font-size: 20px !important;
  }

  .power-station-section .power-item .label {
    font-size: 10px !important;
    line-height: 1.0 !important;
  }

  .power-station-section .power-item.active {
    transform: translate(-50%, -50%) scale(1.15) !important;
  }

  .power-station-section .power-item.active .count {
    font-size: 28px !important;
  }

  .power-station-section .power-item.active .label {
    font-size: 12px !important;
  }

  .power-station-section .power-item.left1 {
    transform: translate(-130%, -50%) scale(1.0) !important;
  }

  .power-station-section .power-item.left1 .count {
    font-size: 18px !important;
  }

  .power-station-section .power-item.left1 .label {
    font-size: 9px !important;
  }

  .power-station-section .power-item.left2 {
    transform: translate(-200%, -50%) scale(0.8) !important;
  }

  .power-station-section .power-item.left2 .count {
    font-size: 16px !important;
  }

  .power-station-section .power-item.left2 .label {
    font-size: 10px !important;
  }

  .power-station-section .power-item.right1 {
    transform: translate(30%, -50%) scale(1.0) !important;
  }

  .power-station-section .power-item.right1 .count {
    font-size: 18px !important;
  }

  .power-station-section .power-item.right1 .label {
    font-size: 9px !important;
  }

  .power-station-section .power-item.right2 {
    transform: translate(100%, -50%) scale(0.8) !important;
  }

  .power-station-section .power-item.right2 .count {
    font-size: 16px !important;
  }

  .power-station-section .power-item.right2 .label {
    font-size: 10px !important;
  }

  .power-station-section .power-item.hidden {
    transform: translate(-50%, -50%) scale(0.5) !important;
  }

  .power-station-section .power-item.hidden .count {
    font-size: 14px !important;
  }

  .power-station-section .power-item.hidden .label {
    font-size: 7px !important;
  }

  .power-station-section .carousel-button,
  .power-station-section .power-station-carousel-button {
    width: 35px !important;
    height: 35px !important;
    font-size: 20px !important;
  }

  .power-station-section .carousel-button.left,
  .power-station-section .power-station-carousel-button.left {
    left: 10px !important;
  }

  .power-station-section .carousel-button.right,
  .power-station-section .power-station-carousel-button.right {
    right: 10px !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .power-station-section .carousel-wrapper {
    height: 160px !important;
    padding: 0 15px !important;
  }

  .power-station-section .power-item {
    width: 90px !important;
    height: 90px !important;
    padding: 10px !important;
  }

  .power-station-section .power-item .count {
    font-size: 18px !important;
  }

  .power-station-section .power-item .label {
    font-size: 9px !important;
    line-height: 0.9 !important;
  }

  .power-station-section .power-item.active {
    transform: translate(-50%, -50%) scale(1.1) !important;
  }

  .power-station-section .power-item.active .count {
    font-size: 24px !important;
  }

  .power-station-section .power-item.active .label {
    font-size: 11px !important;
  }

  .power-station-section .power-item.left1 {
    transform: translate(-150%, -50%) scale(0.95) !important;
  }

  .power-station-section .power-item.left1 .count {
    font-size: 16px !important;
  }

  .power-station-section .power-item.left1 .label {
    font-size: 8px !important;
  }

  .power-station-section .power-item.left2 {
    transform: translate(-250%, -50%) scale(0.75) !important;
  }

  .power-station-section .power-item.left2 .count {
    font-size: 14px !important;
  }

  .power-station-section .power-item.left2 .label {
    font-size: 7px !important;
  }

  .power-station-section .power-item.right1 {
    transform: translate(50%, -50%) scale(0.95) !important;
  }

  .power-station-section .power-item.right1 .count {
    font-size: 16px !important;
  }

  .power-station-section .power-item.right1 .label {
    font-size: 8px !important;
  }

  .power-station-section .power-item.right2 {
    transform: translate(150%, -50%) scale(0.75) !important;
  }

  .power-station-section .power-item.right2 .count {
    font-size: 14px !important;
  }

  .power-station-section .power-item.right2 .label {
    font-size: 7px !important;
  }

  .power-station-section .power-item.hidden {
    transform: translate(-50%, -50%) scale(0.4) !important;
  }

  .power-station-section .power-item.hidden .count {
    font-size: 12px !important;
  }

  .power-station-section .power-item.hidden .label {
    font-size: 6px !important;
  }

  .power-station-section .carousel-button,
  .power-station-section .power-station-carousel-button {
    width: 30px !important;
    height: 30px !important;
    font-size: 18px !important;
  }

  .power-station-section .carousel-button.left,
  .power-station-section .power-station-carousel-button.left {
    left: 5px !important;
  }

  .power-station-section .carousel-button.right,
  .power-station-section .power-station-carousel-button.right {
    right: 5px !important;
  }
}

/* Main Navigation */
.main-nav,
.main-nav-inner {
  background: var(--primary-color);
  padding: 4px;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  /* Allow submenus to escape */
  z-index: 100;
  /* Prevent vertical scrolling */
  overflow-y: hidden;
}

/* Home icon fixed to left */
.main-nav .home-link,
.main-nav-inner .home-link {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
  flex-shrink: 0;
}

.main-nav .home-link a,
.main-nav-inner .home-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #fff;
}

.main-nav .home-link a:hover,
.main-nav-inner .home-link a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.main-nav .home-link svg,
.main-nav-inner .home-link svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

#nav-list {
  display: flex !important;
  margin: 0;
  margin-left: 60px;
  /* Space for home icon */
  margin-right: 100px;
  /* Space for scroll arrows */
  gap: 10px;
  flex-wrap: nowrap;
  color: #f8fcff;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  /* Prevent vertical scrolling */
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  position: relative;
  height: 42px;
  /* Fixed height */
  flex: 1;
}

#nav-list::-webkit-scrollbar {
  display: none;
}

/* Navigation Scroll Controls */
.nav-scroll-controls {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
  z-index: 101;
}

.nav-scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.nav-scroll-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.nav-scroll-btn:active {
  transform: scale(0.95);
}

.nav-scroll-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-scroll-btn svg {
  width: 16px;
  height: 16px;
}

#nav-list li {
  list-style: none;
  display: flex;
  flex-shrink: 0;
  position: relative;
  height: 42px;
  /* Match container height */
  max-height: 42px;
  /* Prevent vertical expansion */
  align-items: center;
}

#superfish-main {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  height: 42px;
  /* Fixed height to prevent vertical scrolling */
  overflow-x: auto;
  overflow-y: hidden;
  /* Prevent vertical scrolling */
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  position: relative;
  padding-right: 80px;
  /* Space for scroll arrows */
  align-items: center;
  /* Center items vertically */
  margin-left: 0;
  /* Remove left margin since home icon is now absolute */
}


#superfish-main::-webkit-scrollbar {
  display: none;
}

/* Custom scrollbar for submenus */
#superfish-main ul::-webkit-scrollbar {
  width: 6px;
}

#superfish-main ul::-webkit-scrollbar-track {
  background: transparent;
}

#superfish-main ul::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

#superfish-main ul::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

#superfish-main li {
  list-style: none;
  display: flex;
  align-items: center;
  color: white;
  justify-content: space-between;
  position: relative;
  flex-shrink: 0;
  height: 42px;
  /* Match container height */
  max-height: 42px;
  /* Prevent vertical expansion */
}

#superfish-main a {
  color: white;
  text-decoration: none;
  text-wrap: nowrap;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  height: 42px;
  box-sizing: border-box;
}

#superfish-main a:hover,
#superfish-main a:focus {
  background: rgba(255, 255, 255, 0.1);
}

#superfish-main a>span {
  margin-right: 6px;
  display: none;
}

/* Superfish Submenu Styles */
#superfish-main ul {
  position: fixed !important;
  top: auto;
  left: auto;
  background: var(--primary-color);
  min-width: 200px;
  max-width: 400px;
  width: auto !important;
  min-width: auto !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 99999 !important;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: auto;
}


/* Sub-submenu positioning - consolidated rules */
#superfish-main ul ul {
  position: absolute !important;
  top: 0 !important;
  left: 100% !important;
  margin-left: -6px !important;
  /* slight overlap */
  z-index: 10001 !important;
  display: none;
  background: var(--primary-color) !important;
  min-width: 200px !important;
  max-width: 350px !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateX(-10px) !important;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
  list-style: none !important;
  padding: 0 !important;
  pointer-events: auto !important;
}

/* Hover bridge handled by JavaScript delay timing */

/* Only apply hover/focus to main menu level (depth-1), not nested submenus */
#superfish-main>li.sf-depth-1:hover>ul,
#superfish-main>li.sf-depth-1:focus-within>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#superfish-main ul li {
  display: block !important;
  position: relative !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100% !important;
  float: none !important;
  clear: both !important;
  /* Critical: Parent li must expand to fit nested ul children */
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

#superfish-main ul li:last-child {
  border-bottom: none;
}

#superfish-main ul a {
  display: block;
  padding: 6px 14px;
  color: #fff;
  text-decoration: none;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  height: auto;
  min-height: 26px;
  line-height: 1.2;
  justify-content: flex-start;
  cursor: pointer;
  pointer-events: auto;
}

#superfish-main ul a:hover,
#superfish-main ul a:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Sub-submenu list items - ensure no positioning conflicts */
#superfish-main ul ul li {
  border-bottom: 1px solid var(--primary-color);
  position: relative !important;
  display: block !important;
  float: none !important;
  clear: both !important;
}

#superfish-main ul ul a {
  padding: 6px 16px;
  font-size: 0.9em;
  background: var(--primary-color) !important;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-height: 28px;
  line-height: 1.1;
}

#superfish-main ul ul a:hover,
#superfish-main ul ul a:focus {
  background: var(--primary-light) !important;
  color: var(--primary-color) !important;
}

/* Sub-sub-submenu list items - ensure no positioning conflicts */
#superfish-main ul ul ul li {
  border-bottom: 1px solid var(--primary-color);
  position: relative !important;
  display: block !important;
  float: none !important;
  clear: both !important;
}

#superfish-main ul ul ul a {
  padding: 6px 20px;
  font-size: 0.85em;
  background: rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-height: 28px;
  line-height: 1.2;
}

#superfish-main ul ul ul a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Sub-submenus (Level 2) - handled by earlier rule above */

/* Show Level 2 submenus on hover/focus - as overlay */
#superfish-main ul li.menuparent:hover>ul,
#superfish-main ul li:has(> ul):hover>ul,
#superfish-main ul li.menuparent:focus-within>ul,
#superfish-main ul li:has(> ul):focus-within>ul {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
}

/* Visual feedback for hovered/focused menu items with children */
#superfish-main ul li.menuparent>a:hover,
#superfish-main ul li:has(> ul)>a:hover,
#superfish-main ul li.menuparent>a:focus,
#superfish-main ul li:has(> ul)>a:focus {
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Items with submenus are clickable (all items are clickable now) */
#superfish-main ul li.menuparent>a {
  cursor: pointer !important;
}

/* Regular items without children remain clickable */
#superfish-main ul li:not(.menuparent)>a {
  cursor: pointer !important;
}

#superfish-main ul li:not(.menuparent)>a:hover,
#superfish-main ul li:not(.menuparent)>a:focus {
  background: var(--primary-light) !important;
  color: var(--primary-color) !important;
}

/* Sub-sub-submenus and deeper levels (Level 3+) - inherit positioning from parent rule */
#superfish-main ul ul ul,
#superfish-main ul ul ul ul,
#superfish-main ul ul ul ul ul {
  /* All nested submenus use same positioning as Level 2 (absolute, to the right) */
  position: absolute !important;
  top: 0 !important;
  left: 100% !important;
  margin-left: -6px !important;
}

/* Show Level 3+ submenus on hover/focus - as overlay */
#superfish-main ul ul li.menuparent:hover>ul,
#superfish-main ul ul ul li.menuparent:hover>ul,
#superfish-main ul ul ul ul li.menuparent:hover>ul,
#superfish-main ul ul li.menuparent:focus-within>ul,
#superfish-main ul ul ul li.menuparent:focus-within>ul,
#superfish-main ul ul ul ul li.menuparent:focus-within>ul {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
}

/* Summary of submenu behavior:
 * - Main menu (Level 1): Hover to show dropdown below
 * - Level 2+ (ALL nested submenus): Hover to show dropdown to the right
 * - All use fixed positioning as overlays - appear above everything
 * - Submenus don't affect layout - pure overlays
 */

/* Ensure main submenu containers expand to fit sub-submenus */
#superfish-main>li>ul {
  position: fixed !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
  z-index: 10000 !important;
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Show main navigation submenus on hover/focus */
#superfish-main>li:hover>ul,
#superfish-main>li:focus-within>ul {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Ensure submenu containers have proper height to prevent overlap */
#superfish-main ul {
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Ensure submenu items don't overlap */
#superfish-main ul li {
  position: relative !important;
  display: block !important;
  margin-bottom: 0.5px;
}

/* Ensure nested submenu items are visible when parent is expanded */
#superfish-main ul li.expanded>ul>li {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure links in expanded submenus are visible */
#superfish-main ul li.expanded>ul>li>a {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure proper spacing between menu items */
#superfish-main ul li:not(:last-child) {
  margin-bottom: 0.5px;
}

/* Ensure sub-submenu items have proper spacing */
#superfish-main ul ul li {
  margin-bottom: 0px;
}

#superfish-main ul ul li:not(:last-child) {
  margin-bottom: 0px;
}

/* Style for different nesting levels */
.submenu-level-2 {
  border-left-color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(0, 0, 0, 0.1) !important;
}

.submenu-level-3 {
  border-left-color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(0, 0, 0, 0.2) !important;
}

/* Ensure sub-submenu items are properly styled */
#superfish-main ul ul li {
  display: block;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#superfish-main ul ul li:last-child {
  border-bottom: none;
}

#superfish-main ul ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  height: auto;
  min-height: 28px;
  line-height: 1.2;
  cursor: pointer;
  pointer-events: auto;
  font-size: 0.9em;
}

#superfish-main ul ul a:hover,
#superfish-main ul ul a:focus {
  background: var(--primary-light) !important;
  color: var(--primary-color) !important;
}

/* Ensure nested submenu items with children have proper padding for arrow */
#superfish-main ul li.has-submenu>a,
#superfish-main ul li:has(> ul)>a {
  padding-right: 26px;
}

/* Make menu items with submenus clickable for all levels */
#superfish-main ul li:has(ul)>a,
#superfish-main ul ul li:has(ul)>a,
#superfish-main ul ul ul li:has(ul)>a,
#superfish-main ul li.has-submenu>a {
  cursor: pointer;
}

#superfish-main ul li:has(ul)>a:hover,
#superfish-main ul ul li:has(ul)>a:hover,
#superfish-main ul ul ul li:has(ul)>a:hover,
#superfish-main ul li.has-submenu>a:hover,
#superfish-main ul li:has(ul)>a:focus,
#superfish-main ul ul li:has(ul)>a:focus,
#superfish-main ul ul ul li:has(ul)>a:focus,
#superfish-main ul li.has-submenu>a:focus {
  background: rgba(255, 255, 255, 0.15);
}

/* Smooth animation for expanding submenus at all levels */
#superfish-main ul ul,
#superfish-main ul ul ul,
#superfish-main ul ul ul ul {
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, margin 0.3s ease !important;
}


/* Scroll indicators removed - submenus show full content */

/* Add arrow indicator for main menu items with submenus */
#superfish-main>li.menuparent>a:after,
#superfish-main>li:has(> ul)>a:after {
  content: ' ▼';
  font-size: 0.7em;
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
}

#superfish-main>li.menuparent:hover>a:after,
#superfish-main>li:has(> ul):hover>a:after,
#superfish-main>li.menuparent:focus-within>a:after,
#superfish-main>li:has(> ul):focus-within>a:after {
  transform: rotate(60deg);
}

/* Add arrow indicator for nested submenu items (all levels) */
#superfish-main ul li.menuparent>a:after,
#superfish-main ul li:has(> ul)>a:after,
#superfish-main ul li.has-submenu>a:after {
  content: ' ▶';
  font-size: 0.6em;
  margin-left: auto;
  padding-left: 8px;
  padding-right: 3px;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  display: inline-block;
}

/* Style for nested menu items with children */
#superfish-main ul li.menuparent>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 12px;
  position: relative;
  user-select: none;
}

/* Hide Superfish's sub-indicator for nested items (we use our own arrow) */
#superfish-main ul li.menuparent>a .sf-sub-indicator {
  display: none;
}

/* Highlight arrow when hovering/focusing over items with children (showing submenu) */
#superfish-main ul li.menuparent:hover>a:after,
#superfish-main ul li:has(> ul):hover>a:after,
#superfish-main ul li.menuparent:focus-within>a:after,
#superfish-main ul li:has(> ul):focus-within>a:after {
  color: #fff;
  transform: translateX(3px);
}

/* Hover/Focus effect for nested menu items with submenus */
#superfish-main ul li.menuparent>a:hover:after,
#superfish-main ul li:has(> ul)>a:hover:after,
#superfish-main ul li.has-submenu>a:hover:after,
#superfish-main ul li.menuparent>a:focus:after,
#superfish-main ul li:has(> ul)>a:focus:after,
#superfish-main ul li.has-submenu>a:focus:after {
  color: #fff;
}

/* Navigation Scroll Arrows */
.nav-scroll-arrows {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  display: flex;
  align-items: center;
  background: linear-gradient(to left, var(--primary-color) 0%, var(--primary-color) 70%, transparent 100%);
  padding-right: 10px;
  z-index: 102;
  gap: 5px;
}

.nav-scroll-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: bold;
}

.nav-scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.nav-scroll-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.nav-scroll-arrow:disabled:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: none;
}





/* chairman section */
.section-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 15px;
}

/* Main Card */
.chairman-card {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: linear-gradient(to bottom right, var(--primary-light), var(--primary-color));
  border-bottom: 3px solid var(--primary-color);
  border-top: 3px solid var(--primary-color);
  border-radius: 12px;
  padding: 0px 80px;
  box-shadow: 0px 2px 6px var(--primary-light);
  gap: 30px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  min-height: 300px;
}

/* Left Image - Enhanced Attractive Style */
.chairman-image {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding: 10px;
}

/* Decorative Frame Background */
.chairman-image::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 0;
  bottom: 0;
  border: 3px solid #fdb913;
  /* Use the secondary/theme color */
  border-radius: 12px;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.chairman-image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 12px;
  margin: 0;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 5px solid #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

/* Hover Effects for 3D Feel */
.chairman-image:hover img {
  transform: translate(-5px, -5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.chairman-image:hover::after {
  transform: translate(8px, 8px);
  border-color: #ffffff;
}

/* Right Content */
.chairman-content {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 20px;
}

.chairman-content blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: #333;
  margin: 10px 0 8px 0;
  text-align: center;
  line-height: 1.5;
}

.chairman-name {
  font-size: 0.85rem;
  color: #444;
  margin: 5px 0 10px;
  text-align: right;
  font-weight: 600;
}

.chairman-button {
  display: flex;
  justify-content: end;
  margin-top: 10px;
}

.see-more-btn {
  display: inline-block;
  align-self: flex-end;
  /* background: #fdb913;
  color: #000; */
  background: linear-gradient(135deg, #ffcc00, #ffb300);
  color: #1a1a1a;
  font-weight: bold;
  padding: 8px 25px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  /* margin-bottom: 10px; */
}

.see-more-btn:hover {
  background: linear-gradient(135deg, #ffb300, #ffcc00);
  box-shadow: 0 6px 14px rgba(255, 179, 0, 0.45);
  transform: translateY(-2px) scale(1.03);
  color: #000;
}


/* Full-Width Section */
.news-alert-section {
  background: var(--primary-color);
  /* Green background */
  gap: 20px;
  display: flex;
  padding: 15px 20px;
  color: #fff;
}

.alert-card p {
  font-size: 16px;
  color: white;
}

/* Two-Column Layout */
.news-alert-container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  width: 100%;
}

/* customise responsive  */
.news-column,
.alert-column {
  flex: 0 0 calc(50% - 15px);
  width: calc(50% - 15px);
}

@media (max-width: 767px) {
  .news-alert-section {
    flex-direction: column;
    text-align: center;
  }

  .news-alert-section .news-alert-container,
  .news-alert-section .alert-column {
    width: 100%;
  }
}


/* Section Headings - Specific to News & Alert Section */
.news-alert-section .section-heading {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  /* Center the text */
  position: relative;
  width: 100%;
}

.news-alert-section .section-heading::after {
  content: "";
  display: block;
  width: 60px;
  /* Thicker accent */
  height: 3px;
  background: var(--secondary-color);
  /* Add color back to make it clear */
  margin: 8px auto 0 auto;
  /* Center the line */
}

/* Left Column */
.news-column {
  /* flex: 1 1 55%; */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-item a {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  color: white;
  padding: 8px 12px;
  position: relative;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.news-item a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.news-item a .arrow {
  font-weight: bold;
  font-size: 1.2rem;
}

.region-news-highlights .view-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-column .more-link,
.news-column .view-footer {
  margin-top: 20px;
}

.alert-column .more-link,
.alert-column .view-footer {
  margin-top: 9px;
}

/* Right Column */
.alert-column {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.alert-carousel {
  position: relative;
  width: 100%;
}

.alert-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-size: 0.85rem;
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
  /* Inactive cards should not capture clicks */
}

.alert-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
  /* Only active card is clickable */
}

.alert-date {
  background: var(--primary-color);
  color: #fff;
  padding: 3px 10px;
  border-radius: 0 0 0 10px;
  font-size: 0.8rem;
  position: absolute;
  top: 0;
  right: 0;
}

/* Dots */
.alert-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.alert-dots span {
  width: 15px;
  height: 3px;
  border-radius: 0%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.alert-dots span.active {
  background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .news-alert-container {
    flex-direction: column;
  }

  .news-column,
  .alert-column {
    flex: 1 1 100%;
  }
}

.our-business-section {
  width: 100%;
  background: #f8fcff;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.section-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 15px;
}

/* business */
.business-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  margin: 0px;
}

/* Left Flex Grid */
.business-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1 1 45%;
  background: linear-gradient(rgba(0, 48, 73, 0.8), rgba(0, 96, 156, 0.8)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.business-item {
  flex: 0 0 33.333%;
  background: var(--primary-light);
  border: 1px solid var(--primary-light2);
  padding: 20px 15px;
  /* More breathing room */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: inherit;
}

.business-item em {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
}


.business-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  display: block;
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.business-item:hover,
.business-item.active,
.business-item:focus {
  background: var(--primary-light2);
  transform: scale(1.01);
  box-shadow: 0 4px 15px rgba(0, 48, 73, 0.25);
  border-color: var(--primary-color);
}

.portfolio-exposed-form {
  padding: 0;
  margin-bottom: 30px;
}

.portfolio-exposed-form .form-item input {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

/* Fix keyboard focus for styled radio/checkbox buttons */
.portfolio-exposed-form .form-item:focus-within {
  outline: 4px solid #fdb913 !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 20px rgba(253, 185, 19, 0.6) !important;
  border-radius: 4px !important;
  border-color: #fdb913 !important;
  background: var(--primary-light) !important;
}

.portfolio-exposed-form .form-item:has(input:focus-visible) {
  background: var(--primary-light) !important;
}

.portfolio-exposed-form .form-item:has(input:checked) {
  background: var(--primary-light);
  border-left: 4px solid var(--primary-color) !important;
}

.business-item:focus-visible {
  outline: 5px solid #fdb913 !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 15px rgba(253, 185, 19, 0.8), 0 0 0 8px rgba(0, 0, 0, 0.2) !important;
  z-index: 100 !important;
  position: relative !important;
  overflow: visible !important;
}

.business-item:hover .business-icon,
.business-item:hover span,
.business-item.active .business-icon,
.business-item.active span {
  color: var(--primary-color);
  /* Keep blue text on hover and active */
}

.business-item span {
  font-size: 0.85rem;
  color: var(--primary-color);
  /* Blue text matching screenshot */
  font-weight: 600;
  margin-top: 8px;
  transition: color 0.3s ease;
}

/* Right Image Area */
.business-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--primary-color);
}

.business-image img {
  width: 100%;
  /* border-radius: 6px; */
  max-height: 400px;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

/* Responsive */
@media (max-width: 992px) {
  .business-item {
    flex: 0 0 50%;
    /* 2 per row on tablets */
  }
}

@media (max-width: 768px) {
  .business-container {
    flex-direction: column;
  }

  .business-grid {
    width: 100%;
  }

  .business-item {
    flex: 0 0 50%;
  }

  .business-image {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .business-item {
    flex: 0 0 100%;
    /* Full width on mobile */
  }
}


/* quick-links-section */

/* quick-links-section */

.quick-links-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #005a8d 50%, #004e7a 100%);
  padding: 0px 0px 50px 0px;
  text-align: center;
  width: 100%;
}

.quick-action-section-heading {
  color: #006da0 !important;
  font-size: 1.5rem;
  background: white;
  padding: 10px;
  font-weight: 700;
  margin-bottom: 20px;
}

.quick-links-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.quick-links-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  margin: 0px 0px;
  padding-top: 80px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  /* Space for shadow */
}

/* ... scrollbar styles ... */
.quick-links-container::-webkit-scrollbar {
  display: none;
}

/* ... arrows ... */
.quick-links-wrapper .quick-arrow {
  background-color: var(--primary-color) !important;
  border: none !important;
  color: white !important;
  font-size: 20px !important;
  cursor: pointer !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  z-index: 10 !important;
  position: relative !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
}

/* .quick-links-wrapper .quick-arrow:hover {
  background-color: var(--primary-color) !important;
  opacity: 0.9 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
} */

/* ... focus ... */
.quick-links-wrapper .quick-arrow:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.3) !important;
}

.quick-links-wrapper .quick-arrow.left {
  margin-right: 15px !important;
}

.quick-links-wrapper .quick-arrow.right {
  margin-left: 15px !important;
}

.quick-card {
  min-width: 250px;
  max-width: 280px;
  flex: 0 0 auto;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.03);
  /* Extremely subtle border */
  border-radius: 20px;
  /* More rounded */
  padding: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* Premium soft shadow */
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100%;
  margin-top: 10px;
  scroll-snap-align: center;
  /* Align with shadow */
}

/* Make image height consistent & centered */
.quick-card img {
  height: 110px;
  width: 110px;
  position: absolute;
  object-fit: cover;
  margin-bottom: 10px;
  top: -70px;
  border: 4px solid #ffffff;
  /* White border makes it pop */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50%;
  z-index: 2;
}

.quick-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 40px 0px 5px 0px;
  color: var(--primary-color);
}

.quick-card p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
}

/* Hover Effect */
.quick-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  /* Deep soft shadow */
  border-color: transparent;
}

.quick-card:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #ffffff;
  /* Keep white border */
}


/* gallery */


.photo-gallery-section {
  background: #f8fbff;
  padding: 20px;
  margin: 5px 0;
  text-align: center;
}

.power-station-section h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

.gallery-section-heading {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin: 10px 0px;
  height: 180px;
  /* Fixed height for consistent grid */
}



.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  image-rendering: -webkit-optimize-contrast;
  /* Helps with sharpness */
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
  /* Hardware acceleration for smoother pixels */
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Add a subtle dark gradient to the bottom for better title visibility and to hide minor pixel imperfections */
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Overlay Sheet Animation */
.gallery-overlay {
  position: absolute;
  bottom: -110%;
  /* Start hidden */
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--primary-color) 80%, transparent);
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  transition: bottom 0.4s ease;
}

.gallery-overlay a {
  color: #fff !important;
}


.gallery-item:hover .gallery-overlay {
  bottom: 0;
  /* Slides up to cover image */
}

/* Video Gallery Hover Overlay */
.video-title {
  position: absolute;
  bottom: -110%;
  /* Start hidden */
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--primary-color) 70%, transparent);
  /* Mixes primary color with transparency for opacity effect */
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  transition: bottom 0.4s ease;
  margin: 0 !important;
}

.gallery-item:hover .video-title {
  bottom: 0;
  /* Slides up to cover video thumbnail */
}

.see-more-wrapper {
  text-align: right;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}


/* logo section  */
.logo-carousel-section {
  overflow: hidden;
  background: #fff;
  padding: 0;
  margin-top: 20px;
  border-top: 1px solid #eee;
}

.logo-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 25px;
  background: #fdfdfd;
  border-bottom: 1px solid #eef2f5;
  margin-bottom: 10px;
}

.logo-carousel-header h2 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin: 0;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.logo-carousel-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-play-pause-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.85rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.logo-play-pause-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo-play-pause-btn.paused {
  background: #545454;
}

.logo-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  /* Slowed down slightly for legibility */
}

.logo-carousel-section:hover .carousel-track,
.carousel-track.paused {
  animation-play-state: paused;
}

.carousel-track img {
  height: 80px;
  /* Reduced height for better fit */
  margin: 0 35px;
  object-fit: contain;
  filter: grayscale(0.2) opacity(0.85);
  /* Premium subtle look */
  transition: all 0.3s ease;
}

.carousel-track img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-track img {
    margin: 0 20px;
    height: 40px;
  }
}

/* footer */
.site-footer {
  background: var(--primary-color);
  color: #fff;
  display: flex;
  flex-direction: row;
}

.footer-top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 15px;
}

.validation-icons {
  display: flex;
  align-items: flex-start;
}

.validation-icons img {
  height: 60px;
  margin-top: 11px;
  margin-right: 10px;
  cursor: pointer;
  vertical-align: top;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  gap: 0;
  font-size: 0.9rem;
}

/* Superfish menu items in footer with pipe separators */
.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  gap: 0;
}

.footer-links ul li {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.footer-links ul li::after {
  content: "|";
  color: #fff;
  padding: 0 5px;
  font-weight: normal;
}

.footer-links ul li:last-child::after {
  content: "";
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding: 10px 20px;
  color: var(--primary-color);
  background: var(--primary-light);
}

.footer-bottom p {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.nav-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.nav-tabs li {
  list-style: none;
  padding-bottom: 10px;
}

/* .nav-tabs .active{
  background: var(--primary-color);
  color: #fff;
} */

/* .nav-tabs a{
  color: var(--primary-color);
  text-decoration: none;
}

.nav-tabs .active a{
  color: #fff;
  text-decoration: none;
} */
/*------------------------- css Only for Overview-tab -----------------------------*/
.Overview-tab.nav-tabs {
  border-bottom: none;
  display: flex;
  gap: 10px;
}

.Overview-tab.nav-tabs li {
  margin-bottom: 0;
}

.Overview-tab.nav-tabs li a {
  display: inline-block;
  padding: 6px 16px;
  background: #ffffff;
  border: 2px solid #009edb;
  color: #009edb !important;
  font-size: 14px;
  border-radius: 26px;
  /* border: none !important; */
  font-weight: 600;
  transition: 0.3s ease;
  text-align: center;
}

.Overview-tab.nav-tabs li:hover a {
  background: #009edb;
  color: #fff !important;
  /* hover color */
}

.Overview-tab.nav-tabs li.active a,
.Overview-tab.nav-tabs li.active a:focus,
.Overview-tab.nav-tabs li.active a:hover {
  background: #009edb !important;
  color: #fff !important;
}




@media (max-width: 768px) {
  .footer-links {
    justify-content: center;
    text-align: center;
  }

  .footer-links ul {
    font-size: 0.85rem;
  }

  .footer-links ul li::after {
    padding: 0 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .validation-icons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .validation-icons img {
    margin: 5px;
  }
}


#search-block-form {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 300px;
  transition: all 0.3s ease;
}

#search-block-form.search-block-form-ShowBox {
  display: block;
}

/* Position search container relative for absolute positioning */
.search_icons_mobile {
  position: relative;
}

.tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.tab-pane.active {
  display: block;
  opacity: 1;
}


/*------------------------ Job Info Table Styling -------------------------------------*/

/* Job Info Table Styling */
.table.job-info {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--primary-light2, #e0e0e0);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", Roboto, sans-serif;
}

/* Table Cells */
.table.job-info td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  color: #333;
  font-size: 15px;
}

/* Header / Title Row */
.table.job-info tr:first-child td {
  background: var(--primary-light2, #f3f6ff);
  color: var(--primary-color, #004aad);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-bottom: 2px solid var(--primary-color, #004aad);
}

/* Bold Labels */
.table.job-info td strong {
  color: var(--primary-color, #004aad);
  font-weight: 600;
}

/* Links */
.table.job-info a {
  color: var(--primary-color, #004aad);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.table.job-info a:hover {
  color: var(--primary-dark, #002f6c);
  text-decoration: underline;
}

/* Date styling */
.table.job-info time.datetime {
  color: #555;
  font-style: italic;
  font-size: 14px;
}

/* Remove last border */
.table.job-info tr:last-child td {
  border-bottom: none;
  text-align: center;
  padding: 14px;
}

/* Responsive */
@media (max-width: 600px) {
  .table.job-info td {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .table.job-info tr:first-child td {
    font-size: 15px;
  }
}

.view-id-current_job.view-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.view-id-current_job select.form-select,
.view-id-current_job input.form-date {
  padding: 8px 12px;
  border: 1px solid var(--primary-light);
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-color);
  background-color: #fff;
}

.view-id-current_job select.form-select:focus,
.view-id-current_job input.form-date:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 3px var(--primary-light);
}

.view-id-current_job .form-actions .form-submit {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.view-id-current_job .form-actions .form-submit:hover {
  background-color: var(--primary-dark);
}

.view-id-current_job .form--inline .form-item {
  margin-right: 1rem !important;
  /* flex: 1 1 auto; */
}

.view-id-current_job .form-item select,
.view-id-current_job .form-item input {
  width: 100%;
}

.view-id-current_job .form-item-title-selective select {
  width: 250px;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 30px;
  /* Space for dropdown arrow */
}

/* Ensure dropdown options wrap properly */
.view-id-current_job .form-item-title-selective select option {
  white-space: normal;
  word-wrap: break-word;
  max-width: 250px;
}

.view-id-current_job .form-item-field-month-target-id select {
  width: 150px;
  max-width: 150px;
}

/* .view-id-current_job .form-item-field-publish-date-value input,
.view-id-current_job .form-item-field-last-date-of-submission-value input { 
  width: 160px;
  max-width: 160px;
} */

/* Current Job View Table Visibility */
.view-id-current_job table {
  display: table !important;
  width: 100% !important;
  border-collapse: collapse !important;
  margin-top: 20px !important;
  background-color: #fff !important;
  border: 1px solid #ddd !important;
}

.view-id-current_job table thead {
  display: table-header-group !important;
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.view-id-current_job table tbody {
  display: table-row-group !important;
}

.view-id-current_job table tr {
  display: table-row !important;
  border-bottom: 1px solid #ddd !important;
}

.view-id-current_job table tr:nth-child(even) {
  background-color: #f9f9f9 !important;
}

.view-id-current_job table tr:hover {
  background-color: #f5f5f5 !important;
}

.view-id-current_job table th,
.view-id-current_job table td {
  display: table-cell !important;
  padding: 12px 15px !important;
  text-align: left !important;
  border: 1px solid #ddd !important;
  vertical-align: top !important;
}

.view-id-current_job table th {
  font-weight: 600 !important;
  background-color: var(--primary-color) !important;
  color: #fff !important;
  border-color: var(--primary-color) !important;
}

.view-id-current_job table td {
  background-color: #fff !important;
  color: #333 !important;
}

.view-id-current_job table td a {
  color: var(--primary-color) !important;
  text-decoration: none !important;
}

.view-id-current_job table td a:hover {
  text-decoration: underline !important;
}

/* Responsive table for mobile */
@media (max-width: 768px) {
  .view-id-current_job table {
    font-size: 14px !important;
  }

  .view-id-current_job table th,
  .view-id-current_job table td {
    padding: 8px 10px !important;
  }
}

.view-id-investor_relations .view-footer {
  display: block;
}



/* Hide all nested menus by default */
.sidebar .menu .menu {
  display: none;
}


.group-toggle-select {
  display: none;
}



body.page-organization-chart .views_organization_chart_wrapper .orgchart {
  display: flex !important;
  flex-direction: row !important;
}



/* ------------------------------ cheart css -------------------------------------- */
.orgchart .nodecontent {
  width: 80px;
  min-height: 42px;
  background-color: #ffffff;
  padding: 2px;
  margin: 20px 5px !important;
  border-radius: 0;
  border: 1px solid #000000;
  color: #000000;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

/*-------------------------- footer overwrite ------------------------*/
a#superfish-footer-toggle {
  display: none;
  padding-left: 15px !important;
}

ul#superfish-footer {
  display: block !important;
  margin-left: 2%;
  margin-top: 0.7%;
}

ul.sf-menu a,
ul.sf-menu span.nolink {
  display: block;
  padding: 0.1em 0.1em;
  position: relative;
}

.clearfix.text-formatted.field.field--name-body {
  position: relative;
}

.clearfix.text-formatted.field.field--name-body.field--type-text-with-summary.field--label-hidden.field__item .text-show {
  position: absolute;
  top: 45%;
  font-size: 13px;
  left: 15%;
}

@media (max-width: 676px) {

  ul.sf-menu a,
  ul.sf-menu span.nolink {
    padding: 0.1em 0.1em;
    font-size: 10px;
    text-align: center;
  }
}

/* Back to Top Button */
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 15px;
  width: 48px;
  height: 48px;
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex !important;
  /* Force display */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000000;
  /* High Z-Index for floating button but below sidebar (max) */
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  touch-action: manipulation;
  /* Improved touch response */
  -webkit-tap-highlight-color: transparent;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--secondary-color, #fdb913);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}

/* SVG Progress Ring Container */
.back-to-top .progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  /* Start from top */
  overflow: visible;
  /* Prevent clipping of stroke */
}

/* Background Circle */
.back-to-top .progress-ring-bg {
  transition: fill 0.3s ease;
}

/* Progress Path - Border */
.back-to-top .progress-ring-path {
  stroke-dasharray: 289;
  /* 2 * PI * 46 */
  stroke-dashoffset: 289;
  transition: stroke-dashoffset 0.1s linear;
  stroke-linecap: round;
  transform-origin: 50% 50%;
}

/* Icon Centering */
.back-to-top .icon-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top svg {
  /* This targets the icon inside span, not the background ring */
  width: 20px;
  height: 20px;
}

/* Ensure the progress ring SVG itself is not affected by the above rule */
.back-to-top>svg {
  width: 100%;
  height: 100%;
}

/* ========================================
   Empty State / No Content Box Styling
   ======================================== */
.no-content-box {
  background: white;
  border-radius: 16px;
  padding: 80px 30px;
  margin: 40px auto;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.no-content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.no-content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.empty-state-icon {
  margin-bottom: 25px;
}

.empty-state-icon i {
  font-size: 5rem;
  color: #e9ecef;
  display: inline-block;
  animation: floatIcon 3s ease-in-out infinite;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

@keyframes floatIcon {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.no-content-box h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.no-content-box p {
  color: #6c757d;
  font-size: 1.05rem;
  margin-bottom: 35px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.no-content-box .btn-primary {
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: var(--primary-color);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: white;
  text-decoration: none;
}

.no-content-box .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: var(--text-color);
  /* Darker shade on hover */
}

.no-content-box .btn-primary i {
  font-size: 1.1rem;
}

/* ========================================
   Modern Empty State Styling with Animation
   ======================================== */
.no-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  width: 100%;
}

.empty-state-card {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 550px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: cardEntrance 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes cardEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.empty-state-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Icon Animation Wrapper */
.empty-state-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulsing Background Circle */
.empty-state-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(var(--primary-rgb, 0, 158, 219), 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: pulseBg 3s infinite ease-in-out;
}

@keyframes pulseBg {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}

/* Main Icon Floating */
.main-icon {
  width: 64px;
  height: 64px;
  color: var(--primary-color);
  z-index: 2;
  filter: drop-shadow(0 10px 15px rgba(var(--primary-rgb, 0, 158, 219), 0.2));
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Decorative Orbiting Dots */
.decorative-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--secondary-color);
  opacity: 0.6;
}

.dot-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 20%;
  animation: orbit1 5s linear infinite;
}

.dot-2 {
  width: 6px;
  height: 6px;
  bottom: 30%;
  right: 20%;
  background: var(--primary-color);
  animation: orbit2 7s linear infinite;
}

.dot-3 {
  width: 4px;
  height: 4px;
  top: 10%;
  right: 40%;
  background: #ccc;
  animation: fadePulse 3s ease-in-out infinite;
}

@keyframes orbit1 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(5px, 10px);
  }

  50% {
    transform: translate(10px, 0);
  }

  75% {
    transform: translate(5px, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes orbit2 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-8px, -5px);
  }

  50% {
    transform: translate(0, -10px);
  }

  75% {
    transform: translate(8px, -5px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes fadePulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.5);
  }
}

/* Typography */
.empty-state-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  position: relative;
}

.empty-state-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Modern Button */
.btn-modern-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #007bb5 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(var(--primary-rgb, 0, 158, 219), 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-modern-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-modern-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(var(--primary-rgb, 0, 158, 219), 0.3);
  color: white;
}

.btn-modern-primary:hover::before {
  transform: translateX(100%);
}

.btn-modern-primary:active {
  transform: translateY(-1px);
}

.btn-modern-primary i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-modern-primary:hover i {
  transform: translateX(-4px);
}

/* Dark Mode Support (if applicable via theme classes) */
body.dark-mode .empty-state-card {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

body.dark-mode .empty-state-title {
  color: #f1f5f9;
}

body.dark-mode .empty-state-desc {
  color: #94a3b8;
}

/* ========================================
   ORGANIZATION CHART CSS (Fixed)
   ======================================== */

.org-chart-wrapper {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

/* Base Chart Structure */
.org-chart-tree ul {
  padding-top: 20px;
  position: relative;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
}

.org-chart-tree li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;
  transition: all 0.5s;
}

/* Connectors */
.org-chart-tree li::before,
.org-chart-tree li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 2px solid #ccc;
  width: 50%;
  height: 20px;
}

.org-chart-tree li::after {
  right: auto;
  left: 50%;
  border-left: 2px solid #ccc;
}

/* Connector Corrections */
.org-chart-tree li:only-child::after,
.org-chart-tree li:only-child::before {
  display: none;
}

.org-chart-tree li:only-child {
  padding-top: 0;
}

.org-chart-tree li:first-child::before,
.org-chart-tree li:last-child::after {
  border: 0 none;
}

.org-chart-tree li:last-child::before {
  border-right: 2px solid #ccc;
  border-radius: 0 5px 0 0;
}

.org-chart-tree li:first-child::after {
  border-radius: 5px 0 0 0;
}

/* Vertical Connector Down */
.org-chart-tree ul ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 2px solid #ccc;
  width: 0;
  height: 20px;
}

/* Chart Nodes */
.org-chart-tree li a,
.org-chart-tree li .node-content {
  background: #fff;
  border: 2px solid var(--primary-color);
  color: #333;
  padding: 15px 20px;
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  min-width: 160px;
  position: relative;
  z-index: 10;
}

.org-chart-tree li a:hover,
.org-chart-tree li .node-content:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.org-chart-tree li a:hover+ul li::after,
.org-chart-tree li a:hover+ul li::before,
.org-chart-tree li a:hover+ul::before,
.org-chart-tree li a:hover+ul ul::before {
  border-color: var(--secondary-color);
}

/* Node Internal Styling */
.node-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  margin: 0 auto 10px;
  object-fit: cover;
  display: block;
  background: #eee;
}

.node-name {
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
}

.node-title {
  font-size: 0.85rem;
  color: #666;
  display: block;
  font-weight: 500;
}

.org-chart-tree li a:hover .node-title {
  color: #f0f0f0;
}

/* Responsive Handling */
@media (max-width: 768px) {
  .org-chart-wrapper {
    overflow-x: auto;
    padding: 20px;
  }

  .org-chart-tree ul {
    padding-top: 0;
    display: block;
  }

  .org-chart-tree li {
    float: none;
    display: block;
    text-align: left;
    padding: 10px 0 0 20px;
    position: relative;
  }

  /* Reset standard connectors */
  .org-chart-tree li::before,
  .org-chart-tree li::after,
  .org-chart-tree ul ul::before {
    display: none;
  }

  /* Mobile Connectors */
  .org-chart-tree li::before {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    left: 0;
    width: 2px;
    height: 100%;
    background: #ccc;
    border: none;
  }

  .org-chart-tree li::after {
    content: '';
    display: block;
    position: absolute;
    top: 30px;
    left: 0;
    width: 20px;
    height: 2px;
    background: #ccc;
    border: none;
  }

  .org-chart-tree li:last-child::before {
    height: 30px;
  }

  .org-chart-tree li a,
  .org-chart-tree li .node-content {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
    width: 100%;
    max-width: 300px;
  }

  .node-avatar {
    margin: 0;
    width: 50px;
    height: 50px;
  }
}

/* Enhanced File Link Styles */
.file-link-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-top: 10px;
}

.file-link-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-link-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.file-link-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  line-height: 1.4;
}

.file-link-text a {
  text-decoration: none;
  color: inherit;
}

.file-link-text a:hover {
  text-decoration: underline;
}

.file-meta {
  color: #666;
  font-weight: 400;
  font-size: 0.95rem;
  margin-left: 5px;
}

.file-info-row {
  font-size: 0.9rem;
  color: #444;
  margin-top: 2px;
  margin-bottom: 2px;
}

.file-label {
  font-weight: 700;
  color: #222;
  margin-right: 6px;
}

/* Enhanced Document Display Styles */
.file-link-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 10px 0;
  padding: 12px;
  background: #f8fbff;
  border-radius: 8px;
  border: 1px solid #e1e8f5;
}

.file-link-main {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
}

.file-size-format {
  color: #6c757d;
  font-weight: 400;
  font-size: 0.9rem;
}

.file-metadata-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 28px;
  margin-top: 5px;
  border-top: 1px solid #eee;
  padding-top: 8px;
}

.file-meta-row {
  font-size: 0.9rem;
  color: #495057;
}

.meta-label {
  font-weight: 700;
  color: #212529;
  margin-right: 5px;
}

/*============================================= contect Us =================================*/
.contact-modern {
  padding: 70px 20px;
  /* background: linear-gradient(135deg, #eaf3fb, #f7fbff); */
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 45px;
}

.contact-header h2 {
  font-size: 34px;
  color: #02487b;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact-header p {
  font-size: 16px;
  color: #4a6b85;
  margin-top: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.contact-card {
  background: #ffffff;
  padding: 28px 30px;
  border-radius: 16px;
  border-top: 6px solid #02487b;
  box-shadow: 0 10px 28px rgba(2, 72, 123, 0.15);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(2, 72, 123, 0.25);
}

.contact-card h3 {
  font-size: 20px;
  color: #02487b;
  margin-bottom: 15px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
}

.contact-card li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-card strong {
  color: #02487b;
}

.placeholder {
  color: #9aa8b4;
  font-style: italic;
}

/* Fix: Remove gray box from placeholder values shown in form validation error messages.
   Drupal renders the typed value as <em class="placeholder"> inside error text.
   Override background and use the parent error color so it reads properly. */
.form-item--error-message .placeholder,
.messages--error .placeholder {
  background-color: transparent !important;
  color: #b71c1c !important;
  opacity: 1 !important;
  font-style: italic;
}

/* ========================================
   LANGUAGE SWITCH NOTIFICATION
   ======================================== */
.language-notification {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color, #009edb);
  color: #fff;
  padding: 14px 40px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 1000001;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 320px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: none;
}

.language-notification.show {
  top: 0;
}

.language-notification.loading {
  background: var(--secondary-color, #fdb913);
  color: #000;
  border-color: rgba(0, 0, 0, 0.1);
}

.language-notification.success {
  background: var(--primary-color, #28a745);
  color: #fff;
  border-bottom: 3px solid var(--secondary-color);
}


.language-notification .spinner-border {
  width: 1.2rem;
  height: 1.2rem;
  border-width: 0.2em;
}

/* ===== Wrapper ===== */
/* .archive-wrapper {
  padding: 70px 20px;
  background: #f4f8fb;
} */

/* ===== Container ===== */
.archive-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Header ===== */
.archive-header {
  text-align: center;
  margin-bottom: 50px;
}

.archive-title-main {
  font-size: 34px;
  font-weight: 700;
  color: #006da0;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.archive-divider {
  width: 90px;
  height: 4px;
  background: #006da0;
  margin: 0 auto;
  border-radius: 50px;
}

/* ===== Grid Layout ===== */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ===== Card ===== */
.archive-item {
  transition: transform 0.3s ease;
}

.archive-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

/* Card Box */
.archive-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  height: 100%;
  border: 1px solid #e3edf3;
  box-shadow: 0 6px 18px rgba(0, 109, 160, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Accent Top Border */
.archive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #006da0;
  transition: 0.3s ease;
}

/* Inner Content */
.archive-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Icon Circle */
.archive-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 109, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.archive-icon::before {
  content: "📂";
  font-size: 28px;
}

/* Title */
.archive-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e2a38;
  margin: 0;
  text-align: center;
  transition: 0.3s ease;
}

/* ===== Hover Effect ===== */
.archive-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 109, 160, 0.2);
}

.archive-card:hover::before {
  height: 100%;
  opacity: 0.06;
}

.archive-card:hover .archive-icon {
  background: #006da0;
  color: #fff;
}

.archive-card:hover .archive-icon::before {
  color: #ffffff;
}

.archive-card:hover .archive-title {
  color: #006da0;
}

/* ===== Accessibility Focus ===== */
.archive-link:focus .archive-card {
  outline: 3px solid #ff9900;
  outline-offset: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .archive-title-main {
    font-size: 28px;
  }

  .archive-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .archive-wrapper {
    padding: 50px 15px;
  }

  .archive-card {
    padding: 25px 18px;
  }

  .archive-title {
    font-size: 16px;
  }
}

.path-node.page-node-type-career .field--name-field-upload-files {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.path-node.page-node-type-career {

  /* ===== MAIN GRID ===== */
  .field--name-field-upload-files.field__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 10px;
  }

  /* Tablet */
  @media (max-width: 992px) {
    .field--name-field-upload-files.field__items {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Mobile */
  @media (max-width: 576px) {
    .field--name-field-upload-files.field__items {
      grid-template-columns: 1fr;
    }
  }

  /* ===== CARD ===== */
  .field--name-field-upload-files .field__item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    /* min-height: 220px; */
  }

  .file {
    padding-left: 0px;
  }

  .field--name-field-upload-files .field__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
  }

  /* ===== FILE WRAPPER ===== */
  .field--name-field-upload-files .file {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .file--application-pdf {
    background-image: url(../../images/icons/application-pd-f.png);
  }

  .field--name-field-upload-files .file--application-pdf::before {
    content: "";
    height: 65px;
    width: 65px;
    border-radius: 50%;
    background-color: #0dcaf0;
    background: #009edb3b;
    background-image: url("/sites/default/files/2025-10/pdffileicon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
    display: block;
    margin-bottom: 15px;
    flex-shrink: 0;
  }


  /* ===== FILE NAME ===== */
  .field--name-field-upload-files .file a {
    font-size: 14px !important;
    font-weight: 500;
    color: #003366;
    text-decoration: none;
    margin-top: 5px;
    word-break: break-word;
  }

  .field--name-field-upload-files .file a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  /* ===== FILE SIZE ===== */
  .field--name-field-upload-files .file-info {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
  }
}

/* Inauguration Overlay CSS moved from twig to comply with W3C HTML5 validator */
:root {
  --red-curtain: #b50606;
  --red-curtain-dark: #7a0000;
  --red-curtain-light: #e60000;
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.4);
}

#inauguration-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s ease-out, visibility 0.8s;
}

#inauguration-modal-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.sjvn-modal-active {
  overflow: hidden !important;
  height: 100vh;
}

.main-container-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  perspective: 2000px;
}

.banner-card-overlay {
  background: transparent;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  overflow: hidden;
}

.interaction-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: all 0.5s ease-in-out;
  width: 90%;
}

.curtain-open .interaction-center {
  opacity: 0;
  transform: translate(-50%, -60%) scale(0.8);
  pointer-events: none;
}

.sjvn-welcome-text {
  font-family: inherit;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  letter-spacing: 6px;
  margin: 0;
  text-transform: uppercase;
}

.sjvn-to-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  line-height: 1 !important;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.sjvn-stage-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  margin: 5px;
  line-height: 1 !important;
  background: linear-gradient(to bottom, #fff7e0, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textFloat 3s ease-in-out infinite alternate;
}

.sjvn-subtitle {
  font-family: inherit;
  font-size: 2rem;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 6px;
  font-weight: 700;
  text-transform: uppercase;
}

.click-now-btn {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd700, #996515);
  border: 4px solid white;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 10px var(--gold-glow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulseButton 2s infinite;
  outline: none;
  margin-top: 20px;
  line-height: 1.2;
}

.click-now-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 0 20px var(--gold-glow);
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 0px var(--gold-glow);
  }

  70% {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 20px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 0px rgba(212, 175, 55, 0);
  }
}

@keyframes textFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

/* Curtain components */
.curtain-container-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 50;
  pointer-events: none;
}

.curtain-left,
.curtain-right {
  height: 100%;
  width: 50%;
  transition: transform 3.5s cubic-bezier(0.645, 0.045, 0.355, 1), clip-path 3.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  background: var(--red-curtain);
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.8);
  position: relative;
}

.curtain-left {
  background: linear-gradient(135deg, var(--red-curtain-dark), var(--red-curtain));
  transform-origin: left;
}

.curtain-right {
  background: linear-gradient(-135deg, var(--red-curtain-dark), var(--red-curtain));
  transform-origin: right;
}

.curtain-folds {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.25) 0px, transparent 35px);
  opacity: 0.2;
}

/* Opening Animation */
.curtain-open .curtain-left {
  transform: translateX(-100%) rotateY(-20deg);
}

.curtain-open .curtain-right {
  transform: translateX(100%) rotateY(20deg);
}

.curtain-rod {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(to bottom, #d4af37, #996515, #d4af37);
  z-index: 70;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#celebration-cracker-canvas {
  position: absolute;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.confetti-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  pointer-events: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .sjvn-welcome-text {
    font-size: 1.8rem !important;
    letter-spacing: 2px !important;
  }

  .sjvn-to-text {
    font-size: 1.5rem !important;
    margin: 5px 0 !important;
  }

  .sjvn-stage-text {
    font-size: 2.4rem !important;
    letter-spacing: 0 !important;
  }

  .sjvn-subtitle {
    font-size: 1.1rem !important;
    letter-spacing: 2px !important;
    margin: 10px 0 !important;
  }

  .click-now-btn {
    width: 120px !important;
    height: 120px !important;
    font-size: 0.9rem !important;
    margin-top: 15px !important;
  }

  .interaction-center p[style*="color: #f1d592"] {
    font-size: 1rem !important;
    margin-top: 10px !important;
  }

  /* Adjustment for Navratna text */
  .interaction-center p[style*="letter-spacing: 8px"] {
    letter-spacing: 3px !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .sjvn-stage-text {
    font-size: 2rem !important;
  }

  .sjvn-welcome-text {
    font-size: 1.5rem !important;
  }
}

article.node.node--type-career.node--promoted.node--view-mode-full .clearfix.text-formatted.field.field--name-body.field--type-text-with-summary.field--label-hidden.field__item {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
  padding: 15px 20px;
  border-left: 4px solid #007b5e;
  border-radius: 6px;
  margin: 10px 0;
  box-shadow: 0 1px 9px rgb(0 0 0 / 5%);
}

/*========================= hospital list CSS =============================*/

/* layout */
.view-empanelled-hospital .view-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  padding: 25px;
  counter-reset: hospital;
}

/* card */
.hospital-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: .3s;
  counter-increment: hospital;
}

.hospital-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px #009edb30;

}

/* heading section */
.hospital-title {
  background: #006da0;
  color: #fff;
  font-size: 17px !important;
  font-weight: 500;
  padding: 14px;
  margin: 0;
  position: relative;
  line-height: 1.4 !important;
}


/* body content */
.hospital-card p,
.hospital-card .hospital-map {
  padding: 0 18px;
}

.hospital-card p {
  margin: 10px 0;
  color: #444;
}

.hospital-card strong {
  color: #006da0;
}

/* google map link */
.hospital-map a {
  color: #0a8ac4;
  text-decoration: none;
  word-break: break-word;
}

.hospital-map a:hover {
  text-decoration: underline;
}

/* spacing bottom */
.hospital-card .hospital-email {
  padding-bottom: 18px;
}

/* responsive */
@media (max-width:992px) {
  .view-content {
    grid-template-columns: 1fr;
  }
}


/* ==================== IEPF Details Footer css ====================================*/

.view-investor-relations .view-footer {
  margin: auto;
  padding-top: 30px;
  background: #ffffff;
  border-radius: 8px;
}

/* All paragraphs */
.view-investor-relations .view-footer p {
  margin-bottom: 10px;
  color: #333;
}

/* Main Title */
.view-investor-relations .view-footer p:first-child {
  font-size: 22px !important;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 2px solid #0a4a8a;
  padding-bottom: 8px;
  margin-bottom: 18px;
}

/* Website link */
.view-investor-relations .view-footer a {
  display: inline-block;
  background: #0a4a8a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.view-investor-relations .view-footer a:hover {
  background: #06366a;
}

/* Nodal Officer Heading */
.view-investor-relations .view-footer p:nth-of-type(4),
.view-footer p:nth-of-type(14) {
  font-size: 18px !important;
  font-weight: 600;
  color: #0a4a8a;
  margin-top: 25px;
}

/* Cards effect */
.view-investor-relations .view-footer p:nth-of-type(n+5):nth-of-type(-n+11),
.view-footer p:nth-of-type(n+15) {
  background: #f7f9fc;
  padding: 8px 12px;
  border-left: 3px solid #0a4a8a;
  margin-bottom: 5px;
}

/* AND text center */
.view-investor-relations .view-footer p:contains("And") {
  text-align: center;
  font-weight: 600;
}

.view-announcements .view-footer {
  text-align: right;
}

/* Active Menu Trail Highlighting (some dark) */
ul.sf-menu>li.active-trail>a,
ul.sf-menu>li.active-trail>span.nolink,
ul.sf-menu>li>a.is-active {
  background-color: rgba(0, 51, 102, 0.12) !important;
  color: #002244 !important;
  font-weight: 700 !important;
  border-radius: 6px;
}


/* Section */
.iepf-wrapper {
  padding: 40px 20px;
  background: #f6fafc;
  font-family: Arial, Helvetica, sans-serif;
}

/* Page Header */
.iepf-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  padding: 14px 20px;
  border-radius: 6px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #004e73, #006da0);
}

/* Description */
.iepf-desc {
  color: #444;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Link */
.iepf-link {
  color: #006da0;
  font-weight: 500;
  text-decoration: none;
}

.iepf-link:hover {
  color: #0dcaf0;
}

/* Grid */
.iepf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}

/* Card */
.iepf-card {
  background: #fff;
  border: 1px solid #e6eef4;
  border-radius: 8px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

/* Hover (no movement) */
.iepf-card:hover {
  border-color: #006da0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Card Header */
.iepf-card h3 {
  background: #006da0;
  color: #fff;
  margin: 0;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 600;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* Text */
.iepf-card p {
  margin: 6px 14px;
  color: #333;
  line-height: 1.5;
  font-size: 14px;
}

/* Contact highlight */
.iepf-card p:nth-last-child(-n+3) {
  border-left: 2px solid #0dcaf0;
  padding-left: 8px;
}

/* Mobile */
@media (max-width:768px) {

  .iepf-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

}

ul.sf-menu>li.active-trail>a,
ul.sf-menu>li.active-trail>span.nolink,
ul.sf-menu>li>a.is-active {
  background-color: rgba(0, 51, 102, 0.12) !important;
  color: #002244 !important;
  font-weight: 700 !important;
  border-radius: 6px;
}

/* Make only the 3rd level submenu (like Transit Camps 1) of the last menu item open to the left */
#superfish-main>li:last-child ul ul,
ul.sf-menu>li:last-child ul ul {
  left: auto !important;
  right: 100% !important;
}

/* Allow dropdown containers to expand according to text length */
#superfish-main ul {
  width: max-content !important;
  min-width: 100% !important;
}

#superfish-main ul li {
  white-space: nowrap !important;
  width: 100% !important;
}

.dopfixheight {
  max-height: 450px;
  overflow: auto;
}

mark.search-highlight {
  background-color: #ffe066 !important;
  color: #000 !important;
  padding: 0 3px;
  border-radius: 3px;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

@media print {
  .back-to-top,
  #back-to-top,
  .back-to-top.show,
  .accessibility-trigger,
  #accessibility-trigger,
  .accessibility-drawer,
  #accessibility-drawer,
  .accessibility-overlay,
  #accessibility-overlay,
  .social-media-fixed,
  .accessibility-icons,
  .social-icons,
  .nav-scroll-controls,
  .language-notification,
  #inauguration-modal-overlay,
  .skip-link,
  .elw-modal-overlay,
  .no-print {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
}