   :root {
            --orange: #ff6a00;
            --dark: #07111d;
            --dark2: #0d1b2a;
            --light: #f7f7f7;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #222;
            background: #fff
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        .navbar-brand {
            font-family: 'Oswald', sans-serif;
            letter-spacing: .5px
        }

        .topbar {
            background: #03101c;
            color: #fff;
            font-size: 13px;
            padding: 8px 0
        }

        .navbar {
            background: #07111d;
            padding: 16px 0
        }

        .navbar-brand {
            font-size: 32px;
            color: #fff !important
        }

        .navbar-brand span,
        .accent {
            color: var(--orange)
        }



        .nav-link {
            color: #fff !important;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 600;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .nav-link:hover,
        .nav-link:focus,
        .nav-item .nav-link.active {
            color: #ff6a00 !important;
        }



        .cta-btn {
            background: #ff6a00;
            color: #fff;
            padding: 12px 24px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: #e85d00;
            /* slightly darker orange */
            color: #fff;
            transform: translateY(-2px);
        }


        .navbar-toggler {
            padding: 8px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,106,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 2rem;
            height: 2rem;
        }

        .hero {
            min-height: 90vh;
            background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)), url('./images/hero.jpeg') center/cover;
            display: flex;
            align-items: center;
            color: #fff;
            text-align: center
        }

        .hero h1 {
            font-size: 78px;
            line-height: 1
        }

        .section-pad {
            padding: 100px 0
        }

        .small-label {
            color: var(--orange);
            font-size: 13px;
            text-transform: uppercase;
            font-weight: 700
        }

        .about h2,
        .title {
            font-size: 54px;
            line-height: 1
        }

        .btn-orange {
            background: var(--orange);
            color: #fff;
            padding: 12px 26px;
            text-decoration: none;
            font-weight: 700;
            border: none
        }

        .accordion-button:not(.collapsed) {
            background: var(--orange);
            color: #fff
        }

        .trust-left {
            background: #37475a;
            color: #fff;
            padding: 50px
        }

        .trust-right {
            background: var(--orange);
            color: #fff;
            padding: 50px
        }

        .stat {
            font-family: 'Oswald';
            font-size: 54px
        }

        .feature-card {
            border: 1px solid #ddd;
            padding: 35px;
            text-align: center;
            height: 100%;
            transition: .3s
        }

        .feature-card:hover {
            transform: translateY(-6px)
        }

        .icon-round {
            width: 75px;
            height: 75px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 28px;
            margin: 0 auto 20px
        }

        .quote-section {
            background: linear-gradient(rgba(2, 11, 20, .72), rgba(2, 11, 20, .72)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1800&q=80') center/cover;
            padding: 120px 0
        }

        .quote-box {
            background: rgba(0, 0, 0, .75);
            padding: 40px
        }

        .form-control,
        .form-select {
            border-radius: 0;
            border: none;
            padding: 14px
        }

        .footer-strip,
        .footer-main {
            background: #03101c;
            color: #fff
        }

        .footer-strip {
            padding: 40px 0
        }

        .footer-item i {
            background: var(--orange);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px
        }

        .social a {
            width: 40px;
            height: 40px;
            border: 1px solid #777;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            margin-left: 8px
        }


        @media (max-width: 991px) {
    .navbar-nav .nav-item:last-child {
        margin-top: 18px;
    }

    .cta-btn {
        display: inline-block;
    }
}

        @media(max-width:991px) {
            .hero h1 {
                font-size: 44px
            }

            .title,
            .about h2 {
                font-size: 38px
            }

            .trust-left,
            .trust-right {
                padding: 30px
            }
        }