*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #111111;
    --bg2: #1a1a1a;
    --gold: #FCBC2C;
    --dark: #333333;
    --darker: #222222;
    --white: #ffffff;
    --light-bg: #f8f7f4;
    --muted: #666666;
    --border: rgba(51, 51, 51, 0.12);
    --text-muted: rgba(255, 255, 255, 0.6);
    --line: rgba(255, 255, 255, 0.06);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    --radius: 20px;
}

@font-face {
  font-family: inter;
  src: url("../fonts/IRANSansX-Regular.woff2");
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: inter, sans-serif;
    color: var(--dark);
    background: var(--white);
    direction: rtl
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px
}

.text-gold {
    color: var(--gold)
}

.text-white {
    color: var(--white)
}

.text-muted-light {
    color: rgba(255, 255, 255, 0.55)
}

.bg-white {
    background: var(--white)
}

.bg-light {
    background: var(--light-bg)
}

.bg-dark {
    background: var(--bg)
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 9px 22px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: .88rem;
    display: inline-block;
    transition: opacity .2s
}

.btn-gold:hover {
    opacity: .88
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1rem;
    border-radius: 10px
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 15px 36px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: border-color .2s
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.7)
}

.section {
    padding: 100px 28px
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--gold);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .05em
}

.section-label::before,
.section-label::after {
    content: '';
    height: 3px;
    width: 32px;
    background: var(--gold);
    border-radius: 2px
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 14px
}

.section-sub {
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 56px;
    line-height: 1.9;
    font-size: .97rem;
    text-align: center
}

#navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: transparent;
    transition: background .35s, box-shadow .35s;
}

#navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--darker);
  backdrop-filter: blur(12px);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

#navbar.scrolled::before {
  transform: scaleY(1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  border-radius: 0;
}


/*#navbar.scrolled {*/
/*    background: var(--darker);*/
/*    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25)*/
/*}*/

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.logo-icon img {
    width: 100%;
    height: 24px;
    margin-bottom: 4px;
}

.logo-title {
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.1
}

.logo-sub {
    color: var(--gold);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .05em
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    transition: color .2s
}

.desktop-nav a:hover {
    color: var(--gold)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;

    background: var(--darker);
    padding: 0 28px;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;

    border-top: 0 solid rgba(255, 255, 255, 0.08);

    transition:
        max-height 550ms ease,
        opacity 250ms ease,
        padding 400ms ease,
        border-width 400ms ease;
}

.mobile-menu.open {
    max-height: 500px;
    padding: 16px 28px 24px;
    opacity: 1;
    visibility: visible;

    border-top-width: 1px;
}

.mob-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 12px 0;
    font-size: .95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.mob-btn {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 12px
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.93) 0%, rgba(34, 34, 34, 0.7) 50%, rgba(34, 34, 34, 0.4) 100%)
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 60px;
    width: 100%
}

.hero-content>* {
    max-width: 640px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 188, 44, 0.15);
    border: 1px solid rgba(252, 188, 44, 0.4);
    border-radius: 24px;
    padding: 6px 16px;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 600
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold)
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 22px
}

.hero-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(.95rem, 1.5vw, 1.08rem);
    line-height: 2;
    margin-bottom: 40px;
    max-width: 540px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.scroll-hint span {
    color: rgba(255, 255, 255, 0.45);
    font-size: .75rem
}

.scroll-box {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px
}

.scroll-dot {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollAnim 1.6s infinite
}

@keyframes scrollAnim {

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

    60% {
        transform: translateY(10px);
        opacity: .3
    }
}

.stats-bar {
    background: var(--dark);
    padding: 52px 28px
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px
}

.stat-item {
    text-align: center;
    padding: 16px 0
}

.stat-item svg {
    margin: 0 auto 10px;
    display: block
}

.stat-val {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1
}

.stat-lbl {
    color: rgba(255, 255, 255, 0.55);
    font-size: .88rem;
    margin-top: 6px
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 24px;
}

.about-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px
}

.about-text p {
    color: var(--muted);
    line-height: 2;
    margin-bottom: 18px;
    font-size: .97rem
}

.perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px
}

.perk {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.perk-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 2px
}

.perk span {
    color: #444;
    font-size: .85rem;
    line-height: 1.6
}

.about-img-wrap {
    position: relative
}

.about-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    height: 440px;
    display: block
}

.badge-exp {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    border-radius: 12px;
    padding: 18px 24px;
    box-shadow: 0 12px 40px rgba(252, 188, 44, 0.35)
}

.badge-exp-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1
}

.badge-exp-lbl {
    font-size: .8rem;
    color: var(--dark);
    font-weight: 600;
    margin-top: 4px
}

.badge-iso {
    position: absolute;
    top: -16px;
    left: -16px;
    background: var(--dark);
    border-radius: 12px;
    padding: 16px 20px
}

.badge-iso-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1
}

.badge-iso-lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px
}

#products .container .carousel {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

#products .container .carousel__nav {
    border: 0;
    background: transparent;
    color: #111827;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 32px;
    cursor: pointer;
    transition: transform 140ms ease, box-shadow 140ms ease;
}

#products .container .carousel__nav:active {
    transform: translateY(1px);
}

#products .container .carousel__nav[disabled] {
    opacity: 0.38;
    cursor: default;
    transform: none;
}

#products .container .carousel__viewport {
    overflow: hidden;
    flex: 1 1 auto;
    margin: 0 12px;
    border-radius: 12px;
    outline: none;
}

#products .container .carousel__track {
    display: flex;
    gap: 16px;
    transition: transform 320ms cubic-bezier(0.22, 0.9, 0.25, 1);
    will-change: transform;
    padding: 12px 0;
}

#products .container .card {
    background: transparent;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex: 0 0 calc(33.3333333333% - 5.3333333333px);
    min-width: 0;
    height: 360px;
    /* prevents overflow */
}

#products .container .card__media {
    height: 80%;
    width: 100%;
    max-width: 300px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent);
}

#products .container .card__media img {
    width: 100%;
    height: 288px !important;
    display: block;
    object-fit: fill;
    border-radius: 12px;
}

#products .container .card__body {
    padding: 14px;
}

#products .container .card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    text-align: center;
}

#products .container .carousel__dots {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

#products .container .carousel__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    border: none;
}

#products .container .carousel__dot[aria-current=true] {
    background: #FCBC2C;
    transform: scale(1.12);
}

@media (min-width: 1200px) {
    #products .container .card {
        flex: 0 0 calc(33.3333333333% - 5.3333333333px);
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    #products .container .card {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    #products .container .card {
        flex: 0 0 calc(100% - 16px);
    }

    #products .container .carousel__nav {
        display: none;
    }

    #products .container .card__media img {
        width: 100%;
    }
}

#products .container .carousel__nav--left {
    margin-right: 6px;
}

#products .container .carousel__nav--right {
    margin-left: 6px;
}

.timeline {
    position: relative
}

.timeline-line {
    position: absolute;
    right: 50%;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(252, 188, 44, 0.15));
    transform: translateX(50%)
}

.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 48px
}

.tl-empty {
    flex: 1
}

.tl-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(252, 188, 44, 0.25);
    font-weight: 800;
    color: var(--dark);
    font-size: .72rem;
    text-align: center;
    line-height: 1.2
}

.tl-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 188, 44, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin-right: 32px
}

.tl-card h3 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1rem
}

.tl-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: .88rem;
    line-height: 1.8
}

.timeline-item.reverse .tl-card {
    margin-right: 0;
    margin-left: 32px
}

.careers-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px
}

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

.overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(34, 34, 34, 0.85) 40%, rgba(34, 34, 34, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 44px;
}

.careers-banner-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.careers-banner-overlay h3 {
    color: var(--white);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 10px
}

.careers-banner-overlay p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 440px;
    line-height: 1.8;
    font-size: .95rem
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px
}

.job-card {
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    padding: 24px;
    background: var(--white);
    transition: border-color .25s, box-shadow .25s, background .25s;
    display: flex;
    flex-direction: column
}

.job-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(252, 188, 44, 0.12);
    background: rgba(252, 188, 44, 0.04)
}

.job-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

.job-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark)
}

.job-badge {
    background: #f0f0f0;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    transition: background .25s, color .25s
}

.job-card:hover .job-badge {
    background: var(--gold);
    color: var(--dark)
}

.job-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 18px
}

.job-meta span {
    color: var(--muted);
    font-size: .83rem
}

.job-btn {
    display: block;
    background: var(--dark);
    color: var(--white);
    padding: 11px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: .88rem;
    transition: background .25s, color .25s;
    margin-top: auto
}

.job-card:hover .job-btn {
    background: var(--gold);
    color: var(--dark)
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-label {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: .95rem
}

.contact-val {
    color: var(--muted);
    line-height: 1.7;
    font-size: .9rem
}

.hours-card {
    background: var(--dark);
    border-radius: 14px;
    padding: 24px
}

.hours-card h4 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.hours-row.last {
    border-bottom: none
}

.hours-row span {
    color: rgba(255, 255, 255, 0.65);
    font-size: .88rem
}

.hours-time {
    color: var(--gold) !important;
    font-weight: 600
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px
}

.contact-form h3 {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--dark)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-group label {
    font-weight: 600;
    color: #444;
    font-size: .85rem
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: .95rem;
    outline: none;
    font-family: 'Vazirmatn', sans-serif;
    color: var(--dark);
    background: #fafafa;
    width: 100%;
    transition: border-color .2s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold)
}

.form-group textarea {
    resize: vertical
}

.submit-btn {
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    width: 100%;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease,
        opacity 0.3s ease;
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.submit-btn.success {
    background-color: #28a745;
    color: #ffffff;
}

.submit-btn.error {
    background-color: #dc3545;
    color: #ffffff;
}

.form-success.show {
    display: block
}

footer {
    background: var(--bg);
    padding: 56px 28px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 40px;
    padding-bottom: 48px
}

.footer-brand-name {
    color: var(--white);
    font-weight: 800;
    font-size: 1rem
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: .85rem;
    line-height: 1.9;
    margin-top: 14px
}

.footer-col h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 18px;
    font-size: .95rem
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: .88rem;
    margin-bottom: 10px;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--gold)
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: .88rem;
    margin-bottom: 12px
}

.footer-recruit-btn {
    margin-top: 20px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.28);
    font-size: .82rem
}

.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(252, 188, 44, 0.4);
    z-index: 99
}

.back-to-top.show {
    display: flex
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr
    }

    .badge-exp {
        bottom: 12px;
        right: 12px
    }

    .badge-iso {
        top: 12px;
        left: 12px
    }

    .timeline-line {
        display: none
    }

    .timeline-item {
        flex-direction: column;
        gap: 12px
    }

    .timeline-item.reverse {
        flex-direction: column
    }

    .tl-empty {
        display: none
    }

    .tl-card {
        margin-right: 0 !important;
        margin-left: 0 !important;
        width: 100%
    }
}

@media(max-width:768px) {
    .desktop-nav {
        display: none
    }

    .hamburger {
        display: flex
    }

    .section {
        padding: 72px 20px
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .careers-banner {
        height: 200px
    }

    .careers-banner-overlay {
        padding: 0 24px
    }

    .careers-banner-overlay h3 {
        font-size: 1.2rem
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-actions a {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
    .footer-brand p{
        text-align: center;
    }
    .footer-brand .logo{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    
    .footer-col h4{
        text-align: center;
    }
    .footer-col a{
        text-align:center;
    }
    .footer-contact-item{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    

    .scroll-hint {
        display: none
    }
    .overlay {
        flex-direction: column;
        padding: 16px 0px;
    }
    .careers-banner-overlay h3 {
        text-align: center;
        align-items: center;
        font-size: 1.2rem;
    }
    .careers-banner-overlay p {
        text-align: center;
        max-width: 320px;
        font-size: .8rem
    }
    .careers-banner{
        min-height: 300px;
    }
}










/* News Section */


#news {
    background: var(--bg);
    padding: 96px 0;
    overflow: hidden;
}

#news .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 16px;
    flex-wrap: wrap;
}

.section-label {
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.section-label::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
    opacity: 0.8;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    margin: 0;
    text-align: right;
    color: var(--white);
}

.counter {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.counter span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    white-space: nowrap;
}

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

.dots button {
    height: 8px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dots button.active {
    width: 28px;
    background: var(--gold);
}

.dots button.inactive {
    width: 8px;
}

#news .carousel {
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.38s ease, transform 0.38s ease;
    background: #161616;
}

#news .carousel .animating {
    opacity: 0;
}

.image-panel {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    background: #222;
}

.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:right center;
    transform: scale(1);
    transition: transform 6s ease;
    display: block;
}

.image-panel img.loaded {
    transform: scale(1.04);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(34, 34, 34, 0.6) 0%, transparent 50%);
    pointer-events: none;
}

.tag-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 2;
    background: var(--gold);
    color: var(--white);
}

.tag-badge.hiring {
    background: #d7b15d;
    color: var(--dark);
}

.thumb-indicator {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.thumb-indicator span {
    height: 6px;
    width: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.35);
    transition: width 0.4s ease;
}

.thumb-indicator span.active {
    width: 20px;
    background: var(--gold);
}

.text-panel {
    background: var(--bg2);
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.tag-pill {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid rgba(252, 188, 44, 0.3);
    background: rgba(252, 188, 44, 0.15);
    color: var(--gold);
    white-space: nowrap;
}

.tag-pill.hiring {
    background: rgba(215, 177, 93, 0.14);
    border-color: rgba(215, 177, 93, 0.25);
    color: #d7b15d;
}

.date {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    white-space: nowrap;
}

.date svg {
    flex-shrink: 0;
}

.title {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.excerpt {
    color: var(--white);
    line-height: 1.95;
    font-size: 0.92rem;
    margin: 0;
    white-space: pre-line;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(252, 188, 44, 0.33);
    padding-bottom: 2px;
    transition: gap 0.2s;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}

.icon-btn.gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.thumb-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.thumb-strip button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 64px;
    opacity: 0.45;
    transition: opacity 0.3s, transform 0.3s;
    transform: scale(0.97);
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.thumb-strip button.active {
    opacity: 1;
    transform: scale(1);
    outline-color: var(--gold);
}

.thumb-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s;
}

.thumb-strip button.active .thumb-overlay {
    background: transparent;
}

@media (max-width: 900px) {
    #news .carousel {
        grid-template-columns: 1fr;
    }

    .text-panel {
        padding: 32px 24px;
    }

    .image-panel {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    #news {
        padding: 64px 0;
    }

    .container {
        padding: 0 16px;
    }

    .header-row {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header-row div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .thumb-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-row {
        align-items: flex-start;
    }

    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-buttons {
        align-self: center;
    }
}