/* about.css — extracted from about.html (CSP cleanup) */

        :root {
            --accent:       #00bcd4; /* Ultra-bright Electric Cyan */
            --accent-hover: #0ea5e9; /* Neon Blue Accent */
            --bg-dark:      #0b0f19; /* Deep Obsidian Navy Canvas */
            --bg-card:      #0f172a; /* Obsidian Slate Cards */
            --card-bg:      rgba(255,255,255,0.03);
            --text-gray:    #94a3b8; /* Soft Steel Slate Gray */
            --text-light:   #ffffff; /* Pure White */
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: "Poppins", sans-serif;
        }
        body {
            background: var(--bg-dark);
            color: var(--text-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--text-light);
        }

        /* HEADER COMPATIBILITY FOR PRE-LOAD */
        body {
            padding-top: var(--navbar-offset, 86px);
        }
        .search-wrapper input::placeholder {
            color: #94a3b8;
        }

        /* ANIMATION CONTROL PANEL */
        @keyframes blink {
            0%, 100% { opacity: 1 }
            50% { opacity: .25 }
        }

        /* HERO */
        .hero {
            text-align: center;
            background: linear-gradient(rgba(7, 12, 28, 0.72), rgba(7, 12, 28, 0.72)),
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
            height: 50vh;
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
            padding: 20px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(6, 182, 212, 0.12);
            border: 1px solid rgba(6, 182, 212, 0.3);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 12px;
            color: var(--accent);
            font-weight: 500;
            letter-spacing: 1px;
        }
        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: blink 1.6s infinite;
        }
        .hero h1 {
            font-size: clamp(12px, 2vw, 528px);
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }
        .hero h1 span {
            color: var(--accent);
        }
        .hero p {
            color: #94a3b8;
            font-size: clamp(12px, 2vw, 16px);
            max-width: 520px;
        }
        .btn1 {
            background: var(--accent);
            color: #000;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
            cursor: pointer;
            border: none;
            display: inline-block;
            font-family: "Poppins", sans-serif;
            font-size: 14px;
        }
        .btn1:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
        }

        /* SECTIONS */
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        h2.section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 10px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .section-sub {
            text-align: center;
            color: #94a3b8;
            font-size: 14px;
            margin-bottom: 40px;
        }
        .divider {
            width: 50px;
            height: 3px;
            background: var(--accent);
            margin: 12px auto 40px;
            border-radius: 2px;
        }

        /* STATS BAR */
        .stats-bar {
            background: var(--bg-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 40px 20px;
        }
        .stats-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
            width: 100%;
        }
        .stat-item { padding: 20px; min-width: 0; width: 100%; }
        .stat-item .sn {
            font-size: 42px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            display: block;
        }
        .stat-item .sl {
            font-size: 12px;
            color: #94a3b8;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 6px;
        }

        /* STORY GRID */
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .story-img-wrap { position: relative; }
        .story-img-wrap img {
            width: 100%;
            border-radius: 15px;
            object-fit: cover;
            height: 480px;
            filter: brightness(.9) saturate(1.1);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .story-year-chip {
            position: absolute;
            top: -16px;
            left: -16px;
            background: var(--accent);
            color: #000;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 13px;
            line-height: 1.1;
            border: 4px solid #070c1c;
        }
        .story-year-chip span {
            font-size: 9px;
            font-weight: 500;
            opacity: .75;
            letter-spacing: 1px;
        }
        .story-text p {
            color: #94a3b8;
            font-size: 14px;
            line-height: 1.85;
            margin-bottom: 16px;
        }
        .story-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }
        .chip {
            background: rgba(6, 182, 212, 0.08);
            border: 1px solid rgba(6, 182, 212, 0.2);
            color: var(--accent);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 500;
        }

        /* SERVICE / CARD GRID */
        .service-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        .service {
            background: var(--card-bg);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: 0.35s;
            cursor: default;
            position: relative;
            overflow: hidden;
        }
        .service::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), #0891b2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .4s;
        }
        .service:hover::before { transform: scaleX(1); }
        .service:hover {
            transform: translateY(-10px);
            border-color: rgba(6, 182, 212, 0.3);
            background: rgba(255, 255, 255, 0.07);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: rgba(6, 182, 212, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 26px;
            border: 1px solid rgba(6, 182, 212, 0.2);
            transition: 0.3s;
        }
        .service:hover .service-icon {
            background: var(--accent);
            color: #000;
        }
        .service h3 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
        .service p { color: #94a3b8; font-size: 13px; line-height: 1.75; }

        /* MISSION / VISION */
        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }
        .mv-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 15px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        .mv-card.accent-card {
            border-color: rgba(6, 182, 212, 0.3);
            background: rgba(6, 182, 212, 0.04);
        }
        .mv-tag {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(6, 182, 212, 0.12);
            border: 1px solid rgba(6, 182, 212, 0.25);
            color: var(--accent);
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .mv-card h3 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 16px; }
        .mv-card p { color: #94a3b8; font-size: 13px; line-height: 1.8; margin-bottom: 16px; }
        .mv-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .mv-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #cbd5e1;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .mv-list li:last-child { border-bottom: none; }
        .mv-list li i { color: var(--accent); font-size: 12px; flex-shrink: 0; }

        /* TEAM */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
        }
        .team-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 15px;
            overflow: hidden;
            transition: 0.35s;
        }
        .team-card:hover {
            transform: translateY(-8px);
            border-color: rgba(6, 182, 212, 0.3);
        }
        .team-img {
            height: 260px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0d1b3e, #162550);
        }
        .team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
        .team-card:hover .team-img img { transform: scale(1.06); }
        .team-initials {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 52px;
            font-weight: 800;
            color: rgba(6, 182, 212, 0.15);
            letter-spacing: 2px;
        }
        .team-social-overlay {
            position: absolute;
            inset: 0;
            background: rgba(7, 12, 28, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            opacity: 0;
            transition: 0.35s;
        }
        .team-card:hover .team-social-overlay { opacity: 1; }
        .team-social-overlay a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            transition: 0.2s;
        }
        .team-social-overlay a:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #000;
        }
        .team-info { padding: 20px; }
        .team-info h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
        .team-info .pos { color: var(--accent); font-size: 12px; margin-bottom: 14px; font-weight: 500; }
        .team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
        .team-tag {
            background: rgba(6, 182, 212, 0.08);
            border: 1px solid rgba(6, 182, 212, 0.2);
            color: var(--accent);
            font-size: 10px;
            padding: 3px 10px;
            border-radius: 50px;
            font-weight: 500;
        }

        /* TIMELINE */
        .tl-wrap {
            position: relative;
            max-width: 860px;
            margin: 0 auto;
        }
        .tl-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(180deg, var(--accent), #0891b2);
            transform: translateX(-50%);
        }
        .tl-item {
            display: grid;
            grid-template-columns: 1fr 60px 1fr;
            margin-bottom: 40px;
        }
        .tl-item:last-child { margin-bottom: 0; }
        .tl-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 24px;
            transition: 0.3s;
        }
        .tl-card:hover {
            border-color: rgba(6, 182, 212, 0.35);
            background: rgba(6, 182, 212, 0.04);
        }
        .tl-item:nth-child(odd) .tl-card   { grid-column: 1; }
        .tl-item:nth-child(odd) .tl-center  { grid-column: 2; }
        .tl-item:nth-child(odd) .tl-empty   { grid-column: 3; }
        .tl-item:nth-child(even) .tl-empty  { grid-column: 1; }
        .tl-item:nth-child(even) .tl-center { grid-column: 2; }
        .tl-item:nth-child(even) .tl-card   { grid-column: 3; }
        .tl-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 20px;
        }
        .tl-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--accent);
            border: 4px solid #070c1c;
            box-shadow: 0 0 16px rgba(6, 182, 212, 0.5);
            z-index: 1;
        }
        .tl-yr { color: var(--accent); font-size: 20px; font-weight: 800; margin-bottom: 6px; }
        .tl-card h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
        .tl-card p { color: #94a3b8; font-size: 13px; line-height: 1.7; }

        /* ACHIEVEMENTS */
        .ach-bg {
            background: var(--bg-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .ach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .ach-card {
            text-align: center;
            padding: 30px 15px;
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            transition: 0.3s;
        }
        .ach-card:hover {
            border-color: rgba(6, 182, 212, 0.3);
            background: rgba(6, 182, 212, 0.04);
            transform: translateY(-6px);
        }
        .ach-ico {
            width: 54px;
            height: 54px;
            margin: 0 auto 14px;
            background: rgba(6, 182, 212, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 20px;
            border: 1px solid rgba(6, 182, 212, 0.2);
            transition: 0.3s;
        }
        .ach-card:hover .ach-ico {
            background: var(--accent);
            color: #000;
            border-color: var(--accent);
        }
        .ach-n { font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
        .ach-l { font-size: 11px; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
            border: 1px solid rgba(6, 182, 212, 0.15);
            border-radius: 20px;
            padding: 80px 40px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto 60px;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h2 { color: #fff; font-size: clamp(22px, 4vw, 36px); font-weight: 800; margin-bottom: 16px; }
        .cta-section p { color: #94a3b8; font-size: 15px; max-width: 500px; margin: 0 auto 32px; }
        .cta-btns { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .btn-outline {
            padding: 13px 28px;
            border: 2px solid rgba(6, 182, 212, 0.4);
            color: var(--accent);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            transition: 0.3s;
            font-family: "Poppins", sans-serif;
        }
        .btn-outline:hover {
            border-color: var(--accent);
            background: rgba(6, 182, 212, 0.08);
        }

        /* FOOTER */
        footer {
            text-align: center;
            padding: 60px 20px 30px;
            background: #050a18;
            border-top: 1px solid #1e293b;
            margin-top: 0;
        }
        .footer-inner { max-width: 1200px; margin: 0 auto; }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            text-align: left;
            margin-bottom: 50px;
        }
        .fg-brand .fn { font-size: 20px; font-weight: 800; color: #fff; }
        .fg-brand .fs { font-size: 9px; letter-spacing: 3px; color: var(--accent); }
        .fg-brand p { color: #64748b; font-size: 13px; line-height: 1.8; margin: 16px 0; }
        .f-socials { display: flex; gap: 10px; }
        .f-socials a {
            width: 36px; height: 36px; border-radius: 50%;
            border: 1px solid #1e293b; color: #64748b;
            display: flex; align-items: center; justify-content: center;
            font-size: 13px; transition: 0.2s;
        }
        .f-socials a:hover { background: var(--accent); border-color: var(--accent); color: #000; }
        .fg-col h5 {
            color: #fff; font-size: 13px; font-weight: 700;
            letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px;
        }
        .fg-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .fg-col ul li a { color: #64748b; font-size: 13px; transition: color 0.2s; }
        .fg-col ul li a:hover { color: var(--accent); }
        .footer-bar {
            border-top: 1px solid #1e293b;
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 12px;
            color: #475569;
        }
        .footer-bar .accent { color: var(--accent); }

        /* REVEAL ANIMATION */


        @media (max-width: 1024px) {
          .nav-search { display: none; }
        }

        /* ============================================================
           HAMBURGER TOGGLE — index.html bilan AYNAN bir xil dizayn
        ============================================================ */
        .menu-toggle {
          display: flex; flex-direction: column; gap: 5px;
          cursor: pointer; z-index: 1101; position: relative;
          width: 34px; min-height: 36px; margin-left: 12px;
          background: transparent; border: none; padding: 4px;
          align-items: stretch; justify-content: center;
          appearance: none; -webkit-appearance: none;
        }
        .menu-toggle:focus {
          outline: 2px solid var(--accent);
          outline-offset: 4px;
        }
        .menu-toggle span {
          display: block; height: 2.5px; width: 100%;
          background: var(--accent); border-radius: 3px; transition: 0.4s;
        }
        .menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

        @media (min-width: 1025px) {
          .menu-toggle { display: none !important; }
        }

        /* ============================================================
           MOBILE DRAWER (SIDE NAV) SPECIFIC TARGETING
           — index.html bilan AYNAN bir xil (ul/li/a va X yopish
           tugmasi shared-ui.css orqali keladi, shu bilan ikki
           sahifada avtomatik bir xil bo'ladi; faqat drawer konteyneri
           shu joyda to'g'irlanadi)
        ============================================================ */
        /* nav#menu dizayni shared-ui.css dan keladi — barcha sahifalarda bir xil. */

        /* ============================================================
           DESKTOP NAVBAR — asosiy o'lcham/gap qiymatlari (oquv.html va
           index.html bilan bir xil), link'lar chetlarga chiqib
           ketmasligi uchun
        ============================================================ */
        .nav-shell {
          max-width: 1760px;
          padding: 0 24px;
        }
        .desktop-nav {
          display: none;
          flex: 1 1 auto;
          justify-content: center;
          align-items: center;
          min-width: 0;
        }
        @media (min-width: 1025px) {
          .desktop-nav {
            display: flex !important;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            position: static;
          }
          .desktop-nav-list {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: nowrap;
          }
          .desktop-nav-list li { margin: 0; position: relative; }
          .desktop-nav-list .nav-link {
            color: var(--text-gray);
            font-weight: 600;
            font-size: 0.8rem;
            transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease;
            padding: 6px 7px;
            position: relative;
            letter-spacing: 0.02em;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
          }
          .desktop-nav-list .nav-link-icon { display: none; }
          .desktop-nav-list .nav-link:hover,
          .desktop-nav-list .nav-link.active {
            color: #fff;
            background: rgba(6, 182, 212, 0.12);
            transform: translateY(-1px);
          }
          .desktop-nav-list .nav-link::after {
            content: '';
            position: absolute;
            left: 12px;
            right: 12px;
            bottom: 3px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), #0891b2);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.25s ease;
          }
          .desktop-nav-list .nav-link:hover::after,
          .desktop-nav-list .nav-link.active::after {
            transform: scaleX(1);
          }
        }
        @media (min-width: 1560px) {
          .desktop-nav-list { gap: clamp(4px, 1vw, 16px); }
          .desktop-nav-list .nav-link { font-size: 14px; padding: 8px 12px; }
          .desktop-nav-list .nav-link-icon { display: inline-block; }
        }
        .nav-link-icon {
          font-size: 13px;
          color: var(--accent);
          transition: transform 0.25s ease;
          flex-shrink: 0;
        }
        .nav-link:hover .nav-link-icon,
        .nav-link.active .nav-link-icon {
          transform: scale(1.2);
        }

        /* Ko'proq DROPDOWN */
        .nav-more-btn {
          background: none;
          border: none;
          cursor: pointer;
          font-family: "Poppins", sans-serif;
          display: inline-flex;
          align-items: center;
          gap: 6px;
          white-space: nowrap;
        }
        .nav-more-chevron {
          font-size: 10px;
          color: var(--text-gray);
          transition: transform 0.25s ease;
        }
        .nav-more-btn[aria-expanded="true"] .nav-more-chevron {
          transform: rotate(180deg);
        }
        .nav-more-dropdown {
          position: absolute;
          top: calc(100% + 14px);
          left: 50%;
          transform: translateX(-50%) translateY(-8px);
          min-width: 220px;
          background: rgba(10, 14, 28, 0.96);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          border: 1px solid rgba(6, 182, 212, 0.18);
          border-radius: 18px;
          padding: 8px;
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
          z-index: 2000;
          box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
        }
        .nav-more-dropdown::before {
          content: '';
          position: absolute;
          top: -6px;
          left: 50%;
          transform: translateX(-50%);
          border-left: 6px solid transparent;
          border-right: 6px solid transparent;
          border-bottom: 6px solid rgba(6, 182, 212, 0.3);
        }
        .nav-more-item:hover .nav-more-dropdown,
        .nav-more-item .nav-more-btn[aria-expanded="true"] ~ .nav-more-dropdown {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
          transform: translateX(-50%) translateY(0);
        }
        .nav-more-item-link {
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 11px 14px;
          border-radius: 12px;
          color: var(--text-gray);
          font-size: 13.5px;
          font-weight: 500;
          transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
          text-decoration: none;
        }
        .nav-more-item-link i {
          width: 18px;
          text-align: center;
          color: var(--accent);
          font-size: 14px;
          flex-shrink: 0;
        }
        .nav-more-item-link:hover {
          background: rgba(6, 182, 212, 0.1);
          color: #fff;
          transform: translateX(3px);
        }
        .nav-phone-link { color: var(--accent) !important; font-weight: 600; }
        .nav-phone-link:hover { background: rgba(6, 182, 212, 0.12) !important; }
        .nav-more-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 6px 8px; border-radius: 1px; }
        .nav-more-signin {
          background: rgba(6, 182, 212, 0.08);
          color: var(--accent) !important;
          font-weight: 700;
          margin-top: 2px;
          border: 1px solid rgba(6, 182, 212, 0.2);
        }
        .nav-more-signin:hover {
          background: var(--accent) !important;
          color: #000 !important;
          border-color: var(--accent);
          transform: none;
        }
        .nav-more-signin i { color: inherit !important; }

        .nav-actions {
          display: flex;
          align-items: center;
          gap: 16px;
          margin-left: auto;
        }

        /* Til almashtirgich — mobil o'lchamlarda barqaror kenglik */
        @media (max-width: 860px) {
          .lang-switcher {
            flex: 0 0 112px;
            width: 112px;
            max-width: 112px;
          }
          .lang-switcher-button { width: 100%; justify-content: center; }
        }

        /* NAVBAR & HAMBURGER moslashuvi fayl OXIRIDA — content media
           query'lardan keyin kelib, ularni yengishi uchun (boshqa sahifalardek). */

        /* RESPONSIVE (sahifa mazmuni) */
        @media (max-width:900px) {
            .story-grid { grid-template-columns: 1fr; gap: 30px; }
            .mv-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .tl-line { left: 24px; }
            .tl-item { grid-template-columns: 48px 1fr; }
            .tl-item .tl-empty { display: none; }
            .tl-item .tl-card   { grid-column: 2 !important; }
            .tl-item .tl-center { grid-column: 1 !important; }
            .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width:768px) {
            .hero { height: 40vh; }
            h2.section-title { font-size: 26px; }
            .story-img-wrap img { height: 320px; }
            .team-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width:575px) {
            .hero { height: auto; min-height: 280px; padding: 80px 16px 60px; }
            .hero h1 { font-size: 26px; }
            section { padding: 60px 16px; }
            h2.section-title { font-size: 22px; }
            .story-img-wrap img { height: 240px; }
            .story-year-chip { width: 64px; height: 64px; font-size: 11px; top: -12px; left: -12px; }
            .story-chips { gap: 8px; }
            .team-grid { grid-template-columns: 1fr; }
            .service-boxes { grid-template-columns: 1fr; }
            .mv-grid { grid-template-columns: 1fr; }
            .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .stat-item .sn { font-size: 32px; }
            .ach-grid { grid-template-columns: repeat(2, 1fr); }
            .cta-section { padding: 50px 20px; border-radius: 14px; margin: 0 16px 50px; }
            .cta-btns { flex-direction: column; align-items: stretch; }
            .btn1, .btn-outline { width: 100%; justify-content: center; text-align: center; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-bar { flex-direction: column; text-align: center; }
            .tl-item { grid-template-columns: 40px 1fr; }
            .tl-line { left: 18px; }
            .tl-card { padding: 16px; }
            .tl-yr { font-size: 17px; }
            .lang-switcher { font-size: 11px; width: 104px; max-width: 104px; }
        }
        @media (max-width:400px) {
            .hero h1 { font-size: 22px; }
            /* Bitta ustun (service.css bilan bir xil) — 2 ustunda uzun so'z
               ("MASHINALARI" kabi) tor ustunga sig'may, gorizontal toshib
               ketardi (320px'da 8px overflow). */
            .stats-bar-inner { grid-template-columns: 1fr; gap: 12px; }
            .stat-item { padding: 16px; }
            .ach-grid { grid-template-columns: 1fr; }
            section { padding: 50px 14px; }
        }

/* ============================================================
   NAVBAR & HAMBURGER — 480px / 360px / 320px GACHA moslashuv
   (oquv.html bilan bir xil — barcha sahifalarda qatiy bir xil).
   Fayl OXIRIDA turibdi: yuqoridagi content @media'lardan keyin
   kelib, .lang-switcher kabi qoidalarni to'g'ri yengadi.
============================================================ */
@media (max-width: 480px) {
  .nav-shell { padding: 0 14px; height: 64px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { font-size: 8px; letter-spacing: 1.5px; }
  .brand-mark { width: 32px; height: 32px; font-size: 17px; border-radius: 7px; }
  .menu-toggle { width: 30px; margin-left: 8px; }
}
@media (max-width: 360px) {
  .nav-shell { padding: 0 10px; height: 60px; }
  .brand-text strong { font-size: 14px; }
  .brand-text small { font-size: 7px; letter-spacing: 1px; }
  .brand-mark { width: 30px; height: 30px; font-size: 15px; }
  .nav-actions { gap: 8px; }
  .lang-switcher { flex: 0 0 96px; width: 96px; max-width: 96px; font-size: 11px; }
  .nav-signin { display: none; }
  .menu-toggle { width: 28px; margin-left: 4px; }
}
@media (max-width: 320px) {
  .nav-shell { padding: 0 8px; height: 58px; }
  .brand-text strong { font-size: 13px; }
  .brand-mark { width: 28px; height: 28px; font-size: 14px; }
  .lang-switcher { flex: 0 0 88px; width: 88px; max-width: 88px; font-size: 10px; }
  .menu-toggle { width: 26px; }
}
