.mobile-device-bottom-navigation-bar {
    --bottom-nav-height: 3.5rem;
    --bottom-nav-padding: 0.5rem;
    --bottom-nav-gap: 1.5rem;
}

.accessibility-focus-indicator-enhancement {
    outline: 3px solid transparent;
    outline-offset: 2px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.breadcrumb-navigation-path-indicator {
    --breadcrumb-separator: "/";
    --breadcrumb-spacing: 0.5rem;
    --breadcrumb-font-size: 0.875rem;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* @media (prefers-reduced-motion: reduce) {
  .motion-reduced-fallback {
    scroll-behavior: auto;
    animation-duration: 0.01ms !important;
  }
} */

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #001f3f;
    /* Deep blue */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.print-optimization-hidden-element {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.pagination-navigation-control-styles {
    --pagination-item-size: 2.5rem;
    --pagination-active-color: #0056b3;
    --pagination-hover-color: #e9ecef;
}

.logo h1 {
    color: #fff;
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.article-metadata-information-display-bar {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    row-gap: 0.75rem;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff0000;
    /* Red accent */
}

.multilingual-switch-selector-dropdown {
    --dropdown-width: 12rem;
    --dropdown-item-height: 2.5rem;
    --dropdown-border-radius: 0.5rem;
}

.lang-switcher {
    margin-left: auto;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.subscription-email-form-modal {
    --modal-backdrop-color: rgba(0, 0, 0, 0.5);
    --modal-max-width: 28rem;
    --modal-padding: 2rem;
}

.lang-dropdown-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* @supports (animation-timeline: scroll()) {
  .scroll-animated {
    animation: auto;
    animation-timeline: scroll();
  }
} */

.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    z-index: 1000;
    margin-top: 0.5rem;
    overflow: hidden;
}

.lang-dropdown.open .lang-dropdown-content {
    display: block;
}

.lang-option {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(0, 31, 63, 0.1);
    color: #001f3f;
}

.reading-progress-indicator-component {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    z-index: 1001;
}

.lang-option.active {
    background: #001f3f;
    color: #fff;
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/bk.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    padding: 2rem;
    z-index: 2;
    text-align: center;
    width: auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    white-space: nowrap;
}

.cta-button {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.tag-cloud-filter-interface {
    --tag-cloud-spacing: 0.75rem;
    --tag-cloud-radius: 9999px;
    --tag-cloud-transition: 200ms ease-in-out;
}

.cta-button:hover {
    background-color: #cc0000;
}

/* Page-specific hero sections */
.about-hero,
.services-hero,
.news-hero {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.primary-navigation__menu-item--active {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
}

.about-hero h1,
.services-hero h1,
.news-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p,
.services-hero p,
.news-hero p {
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.article-card__metadata-section--with-divider {
    border-top: 1px solid #eaeaea;
    padding-top: 16px;
    margin-top: 16px;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

section:nth-child(odd) {
    background-color: #ffffff;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #001f3f;
}

.global-header-navigation-search-input-field {
    width: 100%;
    max-width: 600px;
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-validation-error-message-display {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.about-text h3 {
    color: #001f3f;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

div[data-component-type="interactive-chart"][data-chart-variant="bar-chart-3d"] {
    height: 400px;
    width: 100%;
    position: relative;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.dark-theme-enabled .main-content-wrapper .sidebar-navigation .menu-item.active>.submenu-container {
    background-color: #2d3748;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat h4 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Cases Section */
.cases-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(400px, 1fr));
    gap: 1rem;
}

.case-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.case-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.case-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-item h3 {
    padding: 1rem;
}

.case-item p {
    padding: 0 1rem 1rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: #001f3f;
}

.contact-item ul {
    list-style: none;
}

.contact-item li {
    margin-bottom: 0.5rem;
}

/* About Page Styles */
.about-content {
    padding: 5rem 0;
}

.about-story,
.about-values,
.about-stats {
    margin-bottom: 4rem;
}

.about-story h2,
.about-values h2,
.about-stats h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #001f3f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #001f3f;
    margin-bottom: 0.5rem;
}

/* Services Page Styles */
.services-content {
    padding: 5rem 0;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-detailed {
    margin-bottom: 4rem;
}

.service-detail {
    margin-bottom: 3rem;
}

.service-detail h2 {
    color: #001f3f;
    margin-bottom: 1rem;
}

.service-detail ul {
    list-style: none;
    padding-left: 0;
}

.service-detail li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail li:before {
    content: "✓";
    color: #ff0000;
    position: absolute;
    left: 0;
}

.services-cta {
    text-align: center;
    background-color: #f9f9f9;
    padding: 3rem;
    border-radius: 10px;
}

.services-cta h2 {
    margin-bottom: 1rem;
    color: #001f3f;
}

/* News Preview Section */
.news-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-preview-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.news-preview-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-preview-content {
    padding: 1.5rem;
}

.news-preview-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-preview-title {
    color: #001f3f;
    margin-bottom: 1rem;
    font-size: 1.0rem;
}

.news-preview-summary {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-preview-link {
    display: inline-block;
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
}

.news-preview-link:hover {
    text-decoration: underline;
}

.news-preview-more {
    text-align: center;
    margin-top: 2rem;
}

/* News Carousel */
.news-carousel {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0 0 2rem;
    overflow: hidden;
}

.news-carousel-track {
    display: flex;
}

.news-carousel-slide {
    min-width: 100%;
    display: none;
}

.news-carousel-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}

.news-carousel-slide.active {
    display: block;
}

.news-carousel-prev,
.news-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.news-carousel-prev {
    left: 10px;
}

.news-carousel-next {
    right: 10px;
}

/* Footer */
footer {
    background-color: #001f3f !important;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ff0000;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom a {
    color: #ddd;
    text-decoration: none;
    margin: 0 1rem;
}

.footer-bottom a:hover {
    color: #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #001f3f;
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .lang-switcher {
        margin: 1rem auto 0;
    }

    .lang-dropdown-content {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        min-width: 140px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        white-space: nowrap;
    }

    .hero p {
        font-size: 1rem;
        white-space: nowrap;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .news-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    @media (max-width: 80px) {
        .services-grid {
            grid-template-columns: 1fr;
        }

        .cases-grid {
            grid-template-columns: 1fr;
        }
    }

    .about-grid,
    .cases-grid,
    .team-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


.table-of-contents__chapter-item:first-of-type:not(.collapsed):hover::before {
  content: "▶";
  position: absolute;
  left: -20px;
  color: #3b82f6;
}

.button-primary-large-with-icon:disabled:hover:after {
  content: "This action is currently unavailable";
  position: absolute;
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
}

.application-in-edit-mode .uneditable-content-area {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.user-session-expiring-soon-warning-banner.visible {
  animation: pulse-warning 2s infinite;
  background-color: #fff3cd;
  border-color: #ffeaa7;
}

.data-table-row-highlighted-for-selection.with-alternative-styling {
  background-color: #e3f2fd !important;
  border-left: 4px solid #2196f3;
}