body {
    background-color: #000000 !important;
    font-family: Poppins, sans-serif;
    overflow-x: hidden !important;
}

a {
    color: inherit;
    text-decoration: none;
}

li {
    list-style: none;
}

.container-fluid {
    padding: 0px !important;
}

/* -------------- Navbar CSS Style ----------------- */

.custom-navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 60px;
    position: fixed;
    backdrop-filter: blur(10px);
    top: 25px;
    left: 18%;
    right: 18%;
    border: 1px solid rgb(39, 36, 36) !important;
    background: rgba(13, 13, 13, 0.32);
    box-shadow: 0px 0px 10px 3px rgba(27, 4, 73, 0.288);
    border-radius: 10px;
    color: aliceblue;
    z-index: 999;
    font-size: 14px !important;
}

.navlinks {
    height: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px !important;
}

h4,
.navlinks {
    margin-bottom: 0px !important;
}

.navlink {
    padding: 7px 15px;
    transition: all .5s ease;
    border-radius: 5px;
}

.navlink:hover {
    background-color: #ffffff;
    color: #000000;
}

button.navlink:last-child {
    border: none;
    outline: none;
    color: #fff;
    background-color: rgba(196, 0, 0, 0.836);
    font-weight: 700;
    margin-left: 10px;
    cursor: pointer;
}

.navlink:last-child:hover {
    box-shadow: 0px 0px 6px 6px rgb(118, 0, 0);
    color: #ffffff;
}

.menu-btn {
    padding: 8px;
    outline: none;
    border: none;
    background-color: transparent;
    color: #ffffff;
    display: none;
}

@media screen and (min-width:1400px) {
    .custom-navbar {
        height: 80px;
    }

}

@media screen and (max-width:1300px) {
    .custom-navbar {
        left: 12%;
        right: 12%;
    }

}

@keyframes showheight {
    from {
        opacity: 0;
        display: none;
    }

    to {
        opacity: 1;
        display: block;
    }
}

@media screen and (max-width:992px) {
    .custom-navbar {
        top: 0;
        left: 0;
        right: 0;
        justify-content: space-between;
        padding: 0px 8%;
        background-color: #000000;
        border-radius: 0;
        height: 90px;
    }

    .menu-btn {
        display: block;
        transition: all 0.5s linear;
    }

    .menu-btn>* {
        font-size: 30px;
    }

    .none {
        display: none;
    }

    .navlinks {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        z-index: 999;
        height: 0px;
        transition: all .5s ease-in;
        padding: 10px 30px;
        backdrop-filter: blur(20px) !important;
        background-color: rgb(0, 0, 0);
    }

    .navlinks>* {
        display: block;
        width: 100%;
        margin: 10px 0px;
    }

    .show {
        display: block;
        height: auto;
        border-bottom: 1px solid rgb(39, 36, 36);
        animation: showheight .5s ease;
    }

    .navlink:last-child {
        margin-left: 0px;
    }

    .title {
        font-size: 26px !important;
    }

}

/* -------------- Hero Section CSS Style ----------------- */

.hero-section {
    padding-top: 150px;
    text-align: center;
}

.red {
    color: rgb(176, 0, 0);
}

.sm-title {
    padding: 10px 20px;
    border: 1px solid rgb(87, 87, 87);
    color: #fff;
    display: inline;
    font-size: 13.5px;
    border-radius: 8px;
}


.title {
    width: 80%;
    font-size: 45px;
    margin: 40px auto 0px;
    color: #fff;
}

.btn-custom {
    position: relative;
    background-color: rgb(178, 3, 3) !important;
    border-radius: 50px;
    color: #fff;
    padding: 10px 20px !important;
    margin: 0px auto 20px;
    width: 200px;
    height: 50px;
    border: 1px solid red;
}

.btn-custom>.p {
    position: absolute;
    right: 10%;
    transition: all .3s linear;
    top: 25%;
}

.arrow {
    position: absolute;
    left: 10%;
    top: 20%;
    display: flex;
    transition: all .3s linear;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background-color: #fff;
    color: #000000;
    border-radius: 50%;
    margin-right: 8px;
    z-index: 99;
    box-shadow: 0px 0px 20px 3px rgba(13, 13, 13, 0.5);
}

.btn-custom:hover>.p {
    right: 30%;
    color: #fff !important;
}

.btn-custom:hover>.arrow {
    left: 80%;
    color: #000000;
}

@media screen and (max-width:678px) {
    .hero-content>p{
        width: 100% !important;
        text-align: justify;
    }

    .title{
        width: 100%;
    }
}


/* ------------------ Story Section CSS Style ------------------- */

.story-container {
    padding: 100px 20px;
    color: #fff;
}

.story-container .col-lg-8 {
    padding-top: 70px;
}

.story-container h5,
.story-container p {
    margin-bottom: 20px;
}

.story-container p {
    line-height: 25px;
    text-align: justify;
    word-spacing: 2px;
}

button.btn.text-white {
    background-color: rgb(176, 0, 0);
    padding: 8px 20px;
    margin-top: 40px;
}

@media screen and (max-width:992px) {
    .story-container {
        padding: 70px 20px;
        color: #fff;
    }
}

/* ------------------ Service Section CSS Style ------------------- */

.img-container {
    overflow: hidden;
    border-radius: 8px;
}


.service-container {
    padding: 100px 0px;
}

.video-box {
    padding: 20px 20px 0px;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    border: 1px solid #2f2d2d;
    color: #fff;
    height: 100%;
}

.video-content {
    text-align: justify;
    color: #fff;
    padding: 50px 20px 30px;
}

/* -------------- Supporting Compaines Section CSS Style ----------------- */

.supporting-container {
    padding: 40px 0px;
    background: linear-gradient(to right, black, transparent, transparent, black);
}

.support-logos {
    overflow: hidden;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
}

.support {
    animation: marquee infinite 20s linear;
    display: flex;
    gap: 100px;
}

@keyframes marquee {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}

/* -------------- Reputation Section CSS Style ----------------- */

.reputation-container {
    padding: 50px 0px;
    color: #fff;
    background-color: rgb(178, 3, 3);
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* -------------- Features Section CSS Style ----------------- */

.features-container {
    padding: 90px 20px;
}

.features-box>svg {
    width: 150px !important;
}

/* -------------- FAQ's Section CSS Style ----------------- */

.que-container {
    padding: 80px 0px 100px;
}

.que-content {
    width: 70%;
    margin: 0px auto;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.accordion-button {
    background-color: #111;
    color: #fff;
    font-size: 1.1rem;
    padding: 20px;
    border-radius: 8px;
    border: none;
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #222;
    color: #fff;
}

.accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 10px;
}

.accordion-body {
    background-color: #111;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    font-size: 1rem;
    color: #ccc;
}

.accordion-button::after {
    filter: invert(1);
}

@media screen and (max-width:992px) {

    .que-content {
        width: 100%;
        font-size: 14px;
    }

}

/* -------------- Footer Section CSS Style ----------------- */

.footer {
    padding: 80px 20px 30px;
    border-top: 1px solid #2f2d2d;
    color: #fff;
    font-size: 14px;
    
}
.social-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #333;
    font-size: 1.2rem;
    margin: 0 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.links p a:hover {
    transition: .4s all ease;
    color: rgb(176, 0, 0) !important;
}

.copyright {
    font-size: 14px;
    color: #5b5b5b;
}

/* ------------------- Pop Up Form Section CSS Styles ------------------ */

.form-container {
    position: fixed;
    color: #fff;
    top: 14%;
    left: 20%;
    right: 20%;
    padding: 30px;
    z-index: 111;
    background-color: #1c1a1a;
    border-radius: 10px;
    animation: transformIn .5s ease;
}

.form-container form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: inherit;
    border: 2px solid #4a4a4a;
    padding: 20px;
}

@keyframes transformIn {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.header {
    display: flex;
    justify-content: space-between;
}

.header p {
    font-size: 13px;
    color: #8a8989;
}

.form-tab {
    margin-top: 15px;
    width: 100%;
}

.form-tab>input,
.form-tab>textarea {
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 14px;
    resize: none;
}

.form-tab>input::placeholder,
.form-tab>textarea::placeholder {
    font-size: 14px;
    color: #2f2d2d;
}

.hidden {
    display: none !important;
}

@media screen and (min-width:1400px) {
    .form-container {
        top: 25%;
        left: 25%;
        right: 25%;
        padding: 30px;
    }
}

@media screen and (max-width:992px) {
    .form-container {
        top: 20%;
        left: 5%;
        right: 5%;
        padding: 30px;
    }
}

.d-flex>button {
    cursor: pointer;
}