 :root {
     --ncs-red: #e61e2a;
     --ncs-dark: #121212;
     --ncs-black: #000000;
     --ncs-gray-dark: #1a1a1a;
     --ncs-gray-light: #f8f9fa;
     --ncs-text-muted: #888;
 }

 body {
     font-family: var(--font-body);
     background-color: #fff;
     color: #333;
     line-height: 1.6;
 }

 h1,
 h2,
 h3,
 h4,
 .oswald {
     font-family: var(--font-heading);
     text-transform: uppercase;
 }

 /* Navbar Styling */
 .navbar {
     background-color: rgba(0, 0, 0, 0.9);
     padding: 1rem 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .navbar-brand {
     font-weight: 700;
     font-size: 1.5rem;
     color: #fff !important;
 }

 .nav-link {
     color: #fff !important;
     font-size: 0.85rem;
     font-weight: 600;
     margin: 0 12px;
     letter-spacing: 0.5px;
 }

 .btn-ncs-red {
     background-color: var(--ncs-red);
     color: white;
     border: none;
     font-weight: 700;
     padding: 8px 24px;
     text-transform: uppercase;
     /* font-size: 0.85rem; */
 }
img.logo_ncs {
    width: 150px;
}
 /* Hero Section */
 .hero {
     height: 90vh;
     background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/img1.avif') center/cover no-repeat;
     display: flex;
     align-items: center;
     color: #fff;
 }

 .hero-tagline {
     background: rgba(230, 30, 42, 0.2);
     color: var(--ncs-red);
     padding: 5px 15px;
     border: 1px solid var(--ncs-red);
     border-radius: 50px;
     font-size: 0.75rem;
     font-weight: 700;
     display: inline-block;
     margin-bottom: 20px;
 }

 .hero h1 {
     font-size: 4.5rem;
     font-weight: 700;
     line-height: 1.1;
 }

 .hero h1 span {
     color: var(--ncs-red);
 }

 .hero p {
     max-width: 600px;
     font-size: 1.1rem;
     margin: 25px 0;
     opacity: 0.9;
 }

 /* Stats Bar */
 .stats-bar {
     background-color: var(--ncs-black);
     color: #fff;
     padding: 40px 0;
     border-top: 2px solid var(--ncs-red);
 }

 .stat-item h3 {
     color: var(--ncs-red);
     font-size: 2.2rem;
     margin-bottom: 0;
 }

 .stat-item p {
     font-size: 0.7rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--ncs-text-muted);
 }

 /* Section Headers */
 .section-tag {
     color: var(--ncs-red);
     text-transform: uppercase;
     font-weight: 700;
     font-size: 0.8rem;
     letter-spacing: 1px;
 }

 .section-title {
     font-size: 2.5rem;
     margin-bottom: 30px;
 }

 .section-title span {
     color: var(--ncs-red);
 }

 /* Services Grid */
 .service-card {
     border: 1px solid #eee;
     padding: 40px 30px;
     transition: all 0.3s ease;
     height: 100%;
     background: #fff;
 }

 .service-card:hover {
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
     transform: translateY(-5px);
     border-color: var(--ncs-red);
 }

 .service-icon {
     font-size: 2.5rem;
     margin-bottom: 25px;
     display: inline-block;
 }

 .service-card h5 {
     font-weight: 700;
     margin-bottom: 15px;
 }

 .service-card p {
     color: #666;
     font-size: 0.9rem;
 }

 /* About Section */
 .about-section {
     padding: 100px 0;
     background-color: #fff;
 }

 .about-img-container {
     position: relative;
 }

 .experience-badge {
     position: absolute;
     bottom: 20px;
     right: 20px;
     background: var(--ncs-red);
     color: white;
     padding: 20px;
     text-align: center;
 }

 /* Why Choose Us - Dark */
 .dark-section {
     background-color: var(--ncs-dark);
     color: #fff;
     padding: 100px 0;
 }

 .dark-card {
     background-color: var(--ncs-gray-dark);
     border: 1px solid #333;
     padding: 35px;
     text-align: center;
     border-radius: 4px;
 }

 .dark-card i {
     color: var(--ncs-red);
     font-size: 2rem;
     margin-bottom: 15px;
 }

 /* Tracking Section */
 .tracking-section {
     padding: 80px 0;
     background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/warehouse.avif') center/cover;
     color: #fff;
 }

 .track-input-group {
     max-width: 600px;
     margin: 30px auto 0;
 }

 .track-input {
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid #444;
     color: #fff;
     padding: 15px 25px;
 }

 .track-input:focus {
     background: rgba(255, 255, 255, 0.15);
     color: #fff;
     border-color: var(--ncs-red);
     box-shadow: none;
 }

 /* Testimonials */
 .testimonial-card {
     border-left: 4px solid var(--ncs-red);
     padding: 40px;
     background: #fdfdfd;
     height: 100%;
 }

 .stars {
     color: #ffc107;
     margin-bottom: 15px;
 }

 /* Footer */
 footer {
     background-color: var(--ncs-black);
     color: #ccc;
     padding: 80px 0 30px;
     font-size: 0.9rem;
 }

 .footer-logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 20px;
     display: block;
     text-decoration: none;
 }

 .footer-links a {
     color: #ccc;
     text-decoration: none;
     display: block;
     margin-bottom: 10px;
 }

 .footer-links a:hover {
     color: var(--ncs-red);
 }
 /* BEM Namespaced Styles for NCS Services Page */
        
        .services-page {
            --ncs-red: #e11d48;
            --ncs-dark: #1a1a1a;
            --ncs-text-muted: #6b7280;
            --ncs-bg-light: #f9fafb;
            font-family: var(--font-body);
        }

        /* Block: Hero */
        .services-hero {
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('../img/warehouse.avif');
            background-size: cover;
            background-position: center;
            padding: 100px 20px;
            text-align: center;
            color: white;
        }

        .services-hero__title {
            font-family: var(--font-heading);
            font-size: 4.5rem;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .services-hero__title-highlight {
            color: var(--ncs-red);
        }

        .services-hero__subtitle {
            font-size: 1.25rem;
            font-weight: 300;
            color: #d1d5db;
            margin-bottom: 1.5rem;
        }

        .services-hero__breadcrumb {
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            font-weight: 600;
        }

        .services-hero__breadcrumb-link {
            color: var(--ncs-red);
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .services-hero__breadcrumb-link:hover {
            opacity: 0.8;
        }

        .services-hero__breadcrumb-separator {
            margin: 0 10px;
            color: #4b5563;
        }

        /* Block: Service Grid */
        .services-grid {
            padding: 80px 24px;
            background-color: white;
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        /* Block: Service Card */
        .service-card {
            padding: 40px;
            border-radius: 8px;
            border: 1px solid #f3f4f6;
            background: white;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
            border-color: var(--ncs-red);
        }

        .service-card__icon {
            font-size: 2.5rem;
            margin-bottom: 24px;
        }

        .service-card__title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--ncs-dark);
        }

        .service-card__description {
            font-size: 0.875rem;
            line-height: 1.6;
            color: var(--ncs-text-muted);
        }

        /* Block: CTA Section */
        .services-cta {
            background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../img/containers.avif');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
            color: white;
        }

        .services-cta__title {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .services-cta__title-highlight {
            color: var(--ncs-red);
        }

        .services-cta__text {
            color: #9ca3af;
            font-size: 1.125rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-cta__button {
            background-color: var(--ncs-red);
            color: white;
            padding: 16px 40px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.875rem;
            display: inline-block;
            transition: background-color 0.2s;
            text-decoration: none;
        }

        .services-cta__button:hover {
            background-color: #be123c;
        }
        .about-page {
            --ncs-red: #e11d48;
            --ncs-dark: #1a1a1a;
            --ncs-text-muted: #6b7280;
            --ncs-bg-light: #f9fafb;
            font-family: var(--font-body);
            color: var(--ncs-dark);
            overflow-x: hidden;
        }

        /* Hero */
        .about-hero {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../img/warehouse.avif');
            background-size: cover;
            background-position: center;
            padding: 120px 20px;
            text-align: center;
            color: white;
        }

        .about-hero__title {
            font-family: var(--font-heading);
            font-size: 4.5rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .about-hero__title-highlight { color: var(--ncs-red); }

        .about-hero__breadcrumb {
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
        }

        /* Story Section */
        .about-story { padding: 100px 0; }

        .about-story__badge {
            display: inline-block;
            background: #ffe4e6;
            color: var(--ncs-red);
            padding: 5px 15px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 15px;
            border-radius: 4px;
        }

        .about-story__title {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .about-story__title-highlight { color: var(--ncs-red); }

        .about-story__image-container {
            position: relative;
            padding-right: 30px;
            padding-bottom: 30px;
        }

        .about-story__img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            background-color: #eee;
            min-height: 400px;
            object-fit: cover;
        }

        .about-story__year-badge {
            position: absolute;
            bottom: 0;
            right: 0;
            background: var(--ncs-red);
            color: white;
            padding: 20px 35px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
        }

        .about-story__year-num {
            display: block;
            font-family: var(--font-heading);
            font-size: 2.5rem;
            line-height: 1;
        }

        .about-story__year-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Stats */
        .about-stats {
            background-color: var(--ncs-bg-light);
            padding: 80px 0;
        }

        .about-stats__card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #edf2f7;
        }

        .about-stats__card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
        }

        .about-stats__number {
            display: block;
            font-family: var(--font-heading);
            font-size: 3.5rem;
            color: var(--ncs-red);
            line-height: 1;
            margin-bottom: 10px;
        }

        .about-stats__label {
            font-weight: 700;
            color: var(--ncs-text-muted);
            text-transform: uppercase;
            font-size: 0.85rem;
        }

        /* Team */
        .team-section { padding: 100px 0; text-align: center; }

        .team-card { margin-bottom: 30px; }

        .team-card__circle {
            width: 140px;
            height: 140px;
            background: var(--ncs-dark);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 4rem;
            margin: 0 auto 20px;
            border: 5px solid #f3f4f6;
            transition: 0.3s;
        }

        .team-card:hover .team-card__circle {
            background: var(--ncs-red);
            border-color: #ffe4e6;
        }

        .team-card__name { font-weight: 700; font-size: 1.25rem; margin-bottom: 5px; }
        .team-card__role { color: var(--ncs-red); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }


         /* --- SCOPED CONTACT US STYLES --- */
        .contact_us_wrapper {
            --cu-primary: #d9232d;
            --cu-dark: #333333;
            --cu-light-bg: #ffffff;
            --cu-border: #eeeeee;
            --cu-text-muted: #666666;
            
            font-family: var(--font-body);
            background-color: var(--cu-light-bg);
            padding: 80px 0;
            color: var(--cu-dark);
        }

        .contact_us_wrapper h1, 
        .contact_us_wrapper h2, 
        .contact_us_wrapper h3, 
        .contact_us_wrapper h4,
        .contact_us_bebas {
            font-family: var(--font-heading);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .contact_us_tag {
            color: var(--cu-primary);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .contact_us_tag::before {
            content: '';
            width: 25px;
            height: 2px;
            background-color: var(--cu-primary);
        }

        .contact_us_title {
            font-size: 3rem;
            margin-bottom: 35px;
        }
        .contact_us_title span { color: var(--cu-primary); }

        /* Left Side: 40% Info Card */
        .contact_us_info_card {
            background-color: #fcfcfc;
            padding: 40px;
            border: 1px solid var(--cu-border);
        }

        .contact_us_info_item {
            display: flex;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .contact_us_icon {
            min-width: 55px;
            height: 55px;
            background-color: #fff;
            border: 1px solid var(--cu-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--cu-primary);
            margin-right: 20px;
            transition: all 0.3s ease;
        }

        .contact_us_info_item:hover .contact_us_icon {
            background-color: var(--cu-primary);
            color: #fff;
            border-color: var(--cu-primary);
        }

        .contact_us_info_text h4 { font-size: 1.3rem; margin-bottom: 5px; color: var(--cu-dark); }
        .contact_us_info_text p { color: var(--cu-text-muted); margin: 0; line-height: 1.5; font-size: 15px; }

        .contact_us_map_container {
            margin-top: 30px;
            height: 250px;
            width: 100%;
            border: 1px solid var(--cu-border);
            overflow: hidden;
        }
        .contact_us_map_container iframe { width: 100%; height: 100%; border: 0; }

        /* Right Side: 60% Form */
        .contact_us_form_container {
            padding-left: 40px;
        }

        .contact_us_input {
            background-color: #f9f9f9;
            border: 1px solid #e0e0e0;
            padding: 15px;
            border-radius: 0;
            margin-bottom: 20px;
            width: 100%;
            display: block;
        }
        .contact_us_input:focus {
            background-color: #fff;
            border-color: var(--cu-primary);
            outline: none;
            box-shadow: none;
        }

        .contact_us_label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: block;
            color: var(--cu-dark);
        }

        .contact_us_submit {
            background-color: var(--cu-primary);
            color: #fff;
            border: none;
            padding: 15px 45px;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            cursor: pointer;
            transition: 0.3s;
            border-radius: 0;
            margin-top: 10px;
        }
        .contact_us_submit:hover {
            background-color: #b31d24;
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {
            .contact_us_form_container { padding-left: 0; margin-top: 50px; }
            .contact_us_title { font-size: 2.5rem; }
        }

        .heading-font { font-family: var(--font-body); }
        
        .form-input {
            width: 100%;
            background-color: #f8f9fb;
            border: 1px solid #e5e7eb;
            padding: 14px 18px;
            border-radius: 4px;
            font-size: 14px;
            outline: none;
            transition: all 0.2s;
            color: #4b5563;
            appearance: none;
        }
        
        .select-wrapper {
            position: relative;
        }
        
        .select-wrapper::after {
            content: '\f107';
            font-family: inherit;
            font-weight: 900;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            pointer-events: none;
            font-size: 12px;
        }

        .form-input:focus {
            border-color: #e31e24;
            background-color: #fff;
        }
        
        .step-num {
            width: 48px;
            height: 48px;
            background-color: #e31e24;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            border-radius: 4px;
            flex-shrink: 0;
        }
        
        .submit-btn {
            background-color: #1a1a1a;
            color: white;
            padding: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            width: 100%;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .submit-btn:hover {
            background-color: #e31e24;
        }
         .heading-font { font-family: var(--font-body); }

        /* Left Side: Process Section */
        .process__badge {
            background-color: #fef2f2;
            color: var(--primary-red);
            font-size: 12px;
            font-weight: 700;
            padding: 6px 16px;
            border-left: 4px solid var(--primary-red);
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .process__title {
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 48px;
            line-height: 1.2;
        }

        .process__title span { color: var(--primary-red); }

        .process__step {
            display: flex;
            gap: 20px;
            margin-bottom: 32px;
        }

        .process__step-number {
            width: 36px;
            height: 36px;
            background-color: red;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .process__step-content h5 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .process__step-content p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 0;
        }

        .process__image {
            width: 100%;
            border-radius: 12px;
            margin-top: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Right Side: Form Card */
        .booking-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 48px;
            box-shadow: 0 24px 64px rgba(0,0,0,0.06);
            border: 1px solid var(--border-color);
        }

        .booking-card__header {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .form-label {
            font-size: 12px;
            font-weight: 700;
            color: #344054;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            padding: 12px 16px;
            font-size: 14px;
            border: 1px solid #d0d5dd;
            border-radius: 8px;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 4px rgba(217, 35, 55, 0.1);
        }

        .booking-card__submit {
            background-color: #b51b2c;
            color: #ffffff;
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            margin-top: 12px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .booking-card__submit:hover {
            background-color: #b51b2c;
            transform: translateY(-2px);
        }
        a.btn.btn-ncs-red:hover {
            color: #fff;
            background: red;
        }

        @media (max-width: 991px) {
            .booking-card { padding: 32px 24px; }
            .process__title { font-size: 36px; }
        }

/* Project completion additions */
.about-story__fallback {
    display: none;
    width: 100%;
    height: 450px;
    background: #f3f4f6;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
}
.about-story__fallback-icon { font-size: 3rem; }
.testimonial-avatar {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--ncs-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
}
.contact_us_heading-small { font-size: 2.2rem; margin-bottom: 30px; }
.contact_us_map_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.track-page {
    background: #f8f9fb;
    color: #1f2937;
}
.track-hero {
    background: linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.78)), url('../img/warehouse.avif') center/cover no-repeat;
    color: #fff;
    padding: 110px 0;
    text-align: center;
}
.track-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.track-hero__title span { color: var(--ncs-red); }
.track-hero__text {
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
}
.tracking-panel {
    margin-top: -55px;
    position: relative;
    z-index: 2;
}
.tracking-card {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    border-radius: 16px;
    padding: 34px;
}
.tracking-card__title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 2.2rem;
    margin-bottom: 8px;
}
.tracking-result {
    display: none;
    border-top: 1px solid #ececec;
    margin-top: 28px;
    padding-top: 24px;
}
.tracking-result.is-visible { display: block; }
.tracking-timeline {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    position: relative;
}
.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e5e7eb;
}
.tracking-timeline li {
    position: relative;
    padding-left: 48px;
    margin-bottom: 24px;
}
.tracking-timeline li::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ncs-red);
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--ncs-red);
}
.tracking-timeline small { color: #6b7280; display: block; }
.track-info-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
}
.track-info-card i { color: var(--ncs-red); font-size: 2rem; margin-bottom: 14px; display: inline-block; }

.navbar.navbar-scrolled {
    background-color: rgba(0,0,0,1);
    padding: 0.7rem 0;
}
