@charset "utf-8";
/* CSS Document */
/* CSS Brand Variables from librus-logo-final.png */
        :root {
            --brand-orange: #f38120;
            --brand-blue: #2e3192;
            --light-blue: #1b75bc;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --bg-light: #f4f6f9;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
        }

        /* Top Info Bar */
        .top-bar {
            background-color: var(--brand-blue);
            color: var(--white);
            font-size: 0.85rem;
            padding: 8px 20px;
            text-align: right;
            border-bottom: 3px solid var(--brand-orange);
        }

        .top-bar span {
            margin-left: 20px;
        }

        /* Navigation Header */
        header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo img {
            height: 55px;
            display: block;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--brand-blue);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            padding: 5px 10px;
            transition: color 0.2s ease, border-bottom 0.2s ease;
        }

        nav ul li a:hover {
            color: var(--brand-orange);
        }

        /* Hero Showcase Section */
        .hero {
            background: linear-gradient(135deg, rgba(46,49,146,0.95) 40%, rgba(27,117,188,0.85) 100%), 
                        url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?q=80&w=1200') no-repeat center center/cover;
            min-height: 70vh;
            display: flex;
            align-items: center;
            color: var(--white);
            padding: 60px 20px;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-text {
            max-width: 650px;
        }

        .hero h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .hero h1 span {
            color: var(--brand-orange);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .btn-primary {
            display: inline-block;
            background-color: var(--brand-orange);
            color: var(--white);
            padding: 14px 32px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background 0.3s;
            box-shadow: 0 4px 15px rgba(243, 129, 32, 0.4);
        }

        .btn-primary:hover {
            background-color: #e27213;
        }

        /* Universal Section Styling */
        section {
            padding: 90px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--brand-blue);
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .accent-line {
            width: 70px;
            height: 4px;
            background: var(--brand-orange);
            margin: 15px auto 0;
        }

        /* About Us Section */
        .about-section {
            background-color: var(--bg-light);
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
            color: #444;
        }

        /* Services Grid */
        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border: 1px solid #eef2f6;
            border-bottom: 4px solid var(--brand-blue);
            padding: 40px 30px;
            border-radius: 6px;
            box-shadow: 0 10px 30px rgba(46,49,146,0.03);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-bottom-color: var(--brand-orange);
        }

        .icon-box {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--brand-blue);
        }

        /* Products Section */
        .products-section {
            background-color: var(--bg-light);
        }

        .products-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .product-card {
            background: var(--white);
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid #e1e8ed;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            text-align: center;
            padding: 25px;
        }

        .product-card h3 {
            color: var(--brand-blue);
            margin: 15px 0 10px;
        }

        .product-tag {
            display: inline-block;
            background: rgba(243, 129, 32, 0.1);
            color: var(--brand-orange);
            padding: 4px 12px;
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
        }

        /* Career Section */
        .career-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .job-opening {
            background: #fff;
            border-left: 5px solid var(--brand-orange);
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #eee;
            border-right: 1px solid #eee;
            border-bottom: 1px solid #eee;
            border-radius: 0 6px 6px 0;
        }

        .job-details h3 {
            color: var(--brand-blue);
            margin-bottom: 5px;
        }

        .job-type {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .btn-apply {
            background: var(--brand-blue);
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: bold;
            transition: background 0.3s;
        }

        .btn-apply:hover {
            background: var(--brand-orange);
        }

        /* Contact Section */
        .contact-section {
            background-color: var(--bg-light);
        }

        .contact-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
        }

        .contact-details {
            background-color: var(--brand-blue);
            color: var(--white);
            padding: 50px;
            border-radius: 6px;
        }

        .contact-details h3 {
            margin-bottom: 25px;
        }

        .info-p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 6px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--brand-blue);
            margin-bottom: 5px;
        }

        .form-group input, .form-group textarea {
            padding: 12px;
            border: 1px solid #ccd6dd;
            border-radius: 4px;
            outline: none;
        }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--brand-orange);
        }

        .btn-submit {
            background-color: var(--brand-blue);
            color: var(--white);
            border: none;
            padding: 14px;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background-color: var(--brand-orange);
        }

        /* Footer */
        footer {
            background-color: #151642;
            color: rgba(255,255,255,0.8);
            padding: 40px 20px;
            text-align: center;
            border-top: 5px solid var(--brand-orange);
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul { display: none; }
            .hero h1 { font-size: 2.2rem; }
            .contact-grid { grid-template-columns: 1fr; }
            .job-opening { flex-direction: column; align-items: flex-start; gap: 15px; }
        }
