* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

:root {
    --color-primary: red
}

body {
    scroll-behavior: smooth;
    background-color: #000;
}

body .loader {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

body .loader img {
    width: 150px;
}

.hidden {
    opacity: 0;
    display: none;
    visibility: hidden;
    height: 0;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all ease-out .5s;
}

.my-overflow {
    overflow: hidden;
}

nav {
    height: 8vh;
    width: 100%;
    background-color: #000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    z-index: 5;
}

nav .logo-container {
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
}

nav .logo-container h4 span {
    color: var(--color-primary);
}

nav .logo-container h4 {
    font-size: 3vh;
    font-weight: 800;
    letter-spacing: 1.2px;
}

nav ul {
    display: flex;
    width: 50%;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    width: fit-content;
    padding: 10px 15px;
    font-weight: 550;
}

nav ul li a.active {
    background-color: var(--color-primary);
}

/* Home Section */
#home {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    background-image: url("./images/bg.webp");
    background-position: center;
    background-size: cover;
}

#home .attention {
    background-color: #de404033;
    padding: 8px 25px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    font-weight: 600;
    border: 1px solid var(--color-primary);
    margin: 2rem 0;
    font-size: .9rem;
    pointer-events: none;
}

#home h1 {
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    pointer-events: none;
}

#home h1 span {
    color: var(--color-primary);
}

#home h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    pointer-events: none;
}

#home .sub-heading {
    margin: 2rem 0;
    width: 40%;
    pointer-events: none;
}

#home .sub-heading p {
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 1.2px;
}

#home .cta-container {
    margin-bottom: 4rem;
}

#home .cta-container button {
    height: 2rem;
    background: transparent;
    border: 1px solid #fff;
    padding: 8px 15px;
    font-weight: 700;
}

#home .cta-container button:hover {
    cursor: pointer;
    transform: scale(1.1);
    transition: all ease .9s;
    animation: pulse 1.5s infinite;
}

#home .cta-container button a {
    text-decoration: none;
}

#home .cta-container .btn-primary {
    background-color: red;
    border: 1px solid red;
    margin-right: 10px;
}

#home .fa-chevron-down {
    animation: attention 1.5s infinite;
    cursor: pointer;
}

#home .fa-chevron-down:hover {
    animation-play-state: paused;
    transition: all ease 1s;
}

/* Button Pulse Effect */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(247, 5, 5, 0.4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(245, 2, 2, 0);
    }
}

@keyframes attention {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Services Section */
#services {
    width: 100%;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 1rem;
}

#services .heading {
    height: 20%;
}

#services .heading h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

#services .heading h1 span {
    color: var(--color-primary);
}

#services .heading p {
    text-align: center;
    margin-bottom: 1rem;
}

#services .card-container {
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#services .card-container .card-row {
    display: flex;
    justify-content: space-between;
}

#services .card-container .card-row .card {
    width: 300px;
    height: 300px;
    border: 1px solid var(--color-primary);
    background: #18181bff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    margin: 10px;
    cursor: pointer;
}

#services .card-container .card-row .card .fa {
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #de404033;
}

#services .card-container .card-row .card h1 {
    font-size: 1.5rem;
    margin: 10px 0;
}

#services .card-container .card-row .card p {
    font-size: .9rem;
    margin: 10px 0;
}

#services .card-container .card-row .card ul li {
    font-size: .9rem;
    margin-left: 15px;
    color: var(--color-primary);
}

#services .card-container .card-row .card ul li span {
    color: #fff;
    font-size: .8rem;
}

#services .special-card {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 50%;
    height: 280px;
    background-color: #18181bff;
    border: 1px solid var(--color-primary);
    padding: 2rem;
}

#services .special-card h1 {
    font-size: 1.5rem;
}

#services .special-card h1,
#services .special-card p {
    text-align: center;
}

#services .special-card .brands {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

#services .special-card .brands span {
    background-color: #de404033;
    padding: 5px 10px;
    border-radius: 20px;
    color: var(--color-primary);
    font-weight: 500;
}

/* Why Us Section */
#why {
    width: 100%;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 1rem;
    background-color: #18181bff;
}

#why .text-content {
    height: 20%;
    margin-bottom: 2rem;
}

#why .text-content h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

#why .text-content h1 span {
    color: var(--color-primary);
}

#why .text-content p {
    text-align: center;
    margin-bottom: 1rem;
}

#why .why-card-container {
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#why .why-card-container .why-cards-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

#why .why-card-container .why-cards-row .why-card {
    width: 400px;
    /* height: 300px; */
    border: 1px solid var(--color-primary);
    background: #000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    margin: 10px;
    cursor: pointer;
}

#why .why-card-container .why-cards-row .why-card .fa {
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #de404033;
}

#why .why-card-container .why-cards-row .why-card h1 {
    font-size: 1.5rem;
    margin: 10px 0;
}

#why .why-card-container .why-cards-row .why-card p {
    font-size: .9rem;
    margin: 10px 0;
}

#why .why-card-container .why-cards-row .why-card .why-little-card {
    border: 1px solid var(--color-primary);
    width: fit-content;
    padding: 5px 10px;
    border-radius: 15px;
    background: #de404033;
    color: var(--color-primary);
    font-weight: 600;
    font-size: .8rem;
}

#why .why-special-card {
    width: 90%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: var(--color-primary);
    align-items: center;
    padding: 30px 0;
}

#why .why-special-card h1 {
    font-size: 2rem;
}

#why .why-special-card p {
    width: 50%;
    text-align: center;
}

#why .why-special-card .why-cta-container {
    display: flex;
    gap: 20px;
}

#why .why-special-card .why-cta-container button {
    font-weight: 800;
    width: fit-content;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 20px 30px;
}

#why .why-special-card .why-cta-container button:hover {
    cursor: pointer;
    transform: scale(1.1);
    transition: all ease .9s;
}

#why .why-special-card .why-cta-container button a {
    text-decoration: none;
}

#why .why-special-card .why-cta-container .why-cta-btn a {
    background: #fff;
    color: #000;
}

#why .why-special-card .why-cta-container .why-cta-btn {
    background: #fff;
    color: #000;
}

/* Contact Us Section */
#contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 1rem;
    background-color: #000;
}

#contact .contact-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

#contact .contact-heading h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

#contact .contact-heading h1 span {
    color: var(--color-primary);
}

#contact .contact-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

#contact .contact-container form,
#contact .contact-container .contact-info-container {
    width: 40%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
}

#contact .contact-container form {
    background: #18181bff;
}

#contact .contact-container form h1 {
    font-size: 1rem;
    font-weight: 800;
}

#contact .contact-container form .contact-input {
    display: flex;
    flex-direction: column;
}

#contact .contact-container form .contact-input label {
    margin-bottom: 5px;
}

#contact .contact-container form .contact-input input {
    background: #000;
    border: 1px solid var(--color-primary);
    height: 2rem;
    padding: 8px;
}

#contact .contact-container form .contact-input input::placeholder,
#contact .contact-container form .contact-input textarea::placeholder {
    color: #999292;
}

#contact .contact-container form .contact-cta-input {
    display: flex;
    justify-content: space-between;
}

#contact .contact-container form .contact-input textarea {
    height: 80px;
    padding: 8px;
    resize: vertical;
    background: #000;
    border: 1px solid var(--color-primary);
}

#contact .contact-container form button {
    background-color: var(--color-primary);
    padding: 8px;
    font-weight: 700;
    border: #999292 1px solid;
}

#contact .contact-container form button:hover {
    transform: scale(1.01);
    transition: all ease .9s;
    cursor: pointer;
}

#contact .contact-container .contact-info-container {
    padding-bottom: 0;
    padding-top: 0;
    height: 100%;
}

#contact .contact-container .contact-info-container .contact-info-boxes {
    display: flex;
    flex-direction: column;
    height: 40%;
}

#contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

#contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box {
    width: 49%;
    border: 1px solid var(--color-primary);
    background-color: #18181bff;
    display: flex;
    justify-content: flex-start;
    padding: 20px;
}

#contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box:hover {
    cursor: pointer;
}

#contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box .fa {
    width: 40px;
    height: 40px;
    background: #de404033;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: var(--color-primary);
}

#contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box .contact-info {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

#contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box .contact-info h1 {
    font-size: 1rem;
}

#contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box .contact-info p {
    font-size: .7rem;
}

#contact .contact-container .contact-info-container .contact-info-img {
    height: 300px;
}

#contact .contact-container .contact-info-container .contact-info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer Section */
footer {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #18181bff;
}

footer p,
footer a {
    text-align: center;
    font-size: .9rem;
    color: #999292;
    text-decoration: none;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
    animation-timeline: view(70% 5%);
}

@media (max-width: 980px) {

    /* Nav Section */
    nav .logo-container {
        width: 20%;
    }

    nav .logo-container h4 {
        font-size: 1rem;
        text-align: center;
    }

    nav ul {
        width: 80%;
        padding: 0 1rem;
    }

    /* Home Section */
    #home {
        padding: 2rem .5rem;
    }

    #home .sub-heading {
        width: 80%;
    }

    /* Services Section */
    #services .card-container .card-row .card {
        width: 30%;
        height: auto;
    }

    #services .special-card {
        width: auto;
    }

    /* Why Us Section */
    #why .text-content {
        margin-bottom: 0;
        height: auto;
    }

    #why .why-card-container .why-cards-row .why-card {
        width: 30%;
    }

    #why .why-special-card {
        width: auto;
        height: auto;
        padding: 1rem;
    }

    #why .why-special-card h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    #why .why-special-card p {
        width: 100%;
        margin: 1rem;
        font-size: 1rem;
    }

    /* Contact Us Section */
    #contact {
        padding-bottom: 0;
    }

    #contact .contact-heading p {
        text-align: center;
    }

    #contact .contact-container {
        display: flex;
        flex-direction: column;
    }

    #contact .contact-container form,
    #contact .contact-container .contact-info-container {
        width: 100%;
        height: auto;
    }

    #contact .contact-container form {
        margin-bottom: 2rem;
    }

    #contact .contact-container form h1 {
        text-align: center;
    }

    #contact .contact-container form .contact-cta-input {
        display: flex;
        flex-direction: column;
    }

    #contact .contact-container form .contact-input {
        margin-bottom: 1rem;
    }

    #contact .contact-container .contact-info-container .contact-info-img {
        display: none;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes {
        height: auto;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box {
        width: 100%;
        padding: 1rem;
        margin: .5rem;
        align-items: center;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box .contact-info {
        width: 100%;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box .contact-info p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    /* Nav Section */
    nav .logo-container {
        display: none;
    }

    nav ul {
        width: 100%;
        padding: 0 1rem;
    }

    /* Home Section */
    #home {
        padding: 2rem .5rem;
    }

    #home .sub-heading {
        width: 100%;
    }

    /* Services Section */
    #services {
        padding: 2rem .5rem;
    }

    #services .card-container .card-row {
        display: flex;
        flex-direction: column;
    }

    #services .special-card,
    #services .card-container .card-row .card {
        width: auto;
        height: auto;
    }

    #services .special-card {
        background: var(--color-primary);
    }

    #services .special-card h1 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    #services .special-card p {
        font-size: .9rem;
    }

    #services .special-card .brands {
        display: none;
    }

    /* Why Us Section */
    #why {
        padding: 2rem .5rem;
    }

    #why .text-content {
        margin-bottom: 0;
        height: auto;
    }

    #why .text-content h1 {
        font-size: 2rem;
    }

    #why .why-card-container .why-cards-row {
        display: flex;
        flex-direction: column;
    }

    #why .why-card-container .why-cards-row .why-card {
        width: auto;
    }

    #why .why-special-card {
        width: auto;
        height: auto;
        padding: 1rem;
    }

    #why .why-special-card h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    #why .why-special-card p {
        width: 100%;
        margin: 1rem;
        font-size: 1rem;
    }

    /* Contact Us Section */
    #contact {
        padding: 2rem .5rem;
        padding-bottom: 0;
    }

    #contact .contact-heading h1 {
        font-size: 2rem;
    }

    #contact .contact-heading p {
        text-align: center;
    }

    #contact .contact-container {
        display: flex;
        flex-direction: column;
    }

    #contact .contact-container form,
    #contact .contact-container .contact-info-container {
        width: 100%;
        height: auto;
        background: #000;
    }

    #contact .contact-container form h1 {
        text-align: center;
    }

    #contact .contact-container form .contact-cta-input {
        display: flex;
        flex-direction: column;
    }

    #contact .contact-container form .contact-input {
        margin-bottom: 1rem;
    }

    #contact .contact-container .contact-info-container .contact-info-img {
        display: none;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes {
        height: auto;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box {
        width: 100%;
        padding: 1rem;
        margin-bottom: 1rem;
        align-items: center;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box .contact-info {
        width: 100%;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box .contact-info p {
        font-size: 1rem;
    }

    /* Animation */
    .fade-in {
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    nav {
        display: none;
    }

    /* Home Section */

    #home {
        padding: 2rem .5rem;
    }

    #home .attention {
        display: none;
    }

    #home h1 {
        font-size: 2rem;
    }

    #home h2 {
        font-size: 1rem;
    }

    #home .sub-heading {
        width: 100%;
    }

    #home .cta-container {
        display: flex;
        flex-direction: column;
        margin-bottom: 3rem;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }

    #home .cta-container button {
        width: 100%;
        height: 3rem;
    }

    #home .cta-container .btn-primary {
        margin: 0;
    }

    /* Services Section */
    #services {
        padding: 2rem .5rem;
    }

    #services .heading h1 {
        font-size: 2rem;
    }

    #services .card-container .card-row {
        display: flex;
        flex-direction: column;
    }

    #services .special-card,
    #services .card-container .card-row .card {
        width: auto;
        height: auto;
    }

    #services .special-card h1 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    #services .special-card p {
        font-size: .9rem;
    }

    #services .special-card .brands {
        display: none;
    }

    /* Why Us Section */
    #why {
        padding: 2rem .5rem;
    }

    #why .text-content {
        margin-bottom: 0;
        height: auto;
    }

    #why .text-content h1 {
        font-size: 2rem;
    }

    #why .why-card-container .why-cards-row {
        display: flex;
        flex-direction: column;
    }

    #why .why-card-container .why-cards-row .why-card {
        width: auto;
    }

    #why .why-special-card {
        width: auto;
        height: auto;
        padding: 1rem;
    }

    #why .why-special-card h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    #why .why-special-card p {
        width: 100%;
        margin: 1rem;
        font-size: 1rem;
    }

    /* Contact Us Section */
    #contact {
        padding: 2rem .5rem;
        padding-bottom: 0;
    }

    #contact .contact-heading h1 {
        font-size: 2rem;
    }

    #contact .contact-heading p {
        text-align: center;
    }

    #contact .contact-container {
        display: flex;
        flex-direction: column;
    }

    #contact .contact-container form,
    #contact .contact-container .contact-info-container {
        width: 100%;
        height: auto;
        background: #000;
    }

    #contact .contact-container form h1 {
        text-align: center;
    }

    #contact .contact-container form .contact-cta-input {
        display: flex;
        flex-direction: column;
    }

    #contact .contact-container form .contact-input {
        margin-bottom: 1rem;
    }

    #contact .contact-container .contact-info-container .contact-info-img {
        display: none;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes {
        height: auto;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box {
        width: 100%;
        padding: 1rem;
        margin-bottom: 1rem;
        align-items: center;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box .contact-info {
        width: 100%;
    }

    #contact .contact-container .contact-info-container .contact-info-boxes .contact-info-row .contact-info-box .contact-info p {
        font-size: 1rem;
    }

    /* Animation */
    .fade-in {
        opacity: 1 !important;
    }
}



