* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(233, 234, 235);
}

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.navbar {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 15px;
    background-color: transparent;
}

.nav-item {
    margin-right: 20px;
    color: white;
}

.nav-item a {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    color: inherit;
    /* Keep the color of the text as inherited from the parent */
    text-decoration: none;
    /* Remove any default text decoration */
}

.nav-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: rgb(216, 6, 115);
    transition: width 0.3s ease-out;
}

.nav-item a:hover::after {
    width: 100%;
}

.navbar-brand {
    margin-left: 25px;
    font-size: 7vh;
    color: rgb(255, 0, 132);
    font-family: "Fjalla One", sans-serif;
    font-weight: 400;
    font-style: normal;
    z-index: 2;
    font-weight: bold;
}

.navbar-brand a i {
    color: rgb(255, 0, 132);
}

.navbar-brand:hover {
    color: rgb(255, 0, 132);
}

.nav-item a:hover {
    color: white;
}

.back-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7));
    z-index: 1;
}

.main h1 {
    font-size: 5vh;
    text-align: center;
    margin-top: 25vh;
    color: white;
    position: relative;
    z-index: 2;
}

.main h3 {
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10%;
    margin: 25px auto;
}

.txt {
    margin-top: 40px;
    text-align: center;
}

.txt a {
    position: relative;
    text-align: center;
    padding: 10px 25px;
    z-index: 2;
    text-decoration: none;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    background-color: rgb(255, 0, 132);
    transition: 0.5s;
}

.txt a:hover {
    background-color: black;
    color: rgb(255, 0, 132);
    cursor: pointer;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
    /* Optional: Change border color */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.about-us {
    min-height: 100vh;
    text-align: center;
}

.about-us h1 {
    margin-top: 10vh;
}

.about-us span {
    color: rgb(255, 0, 132);
}

.about-us h6 {
    margin: auto;
    width: 60vw;
}

.abt-cont {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 10vh 5vw;
}

.abt-con {
    text-align: left;
    width: 40vw;
    min-height: 40vh;
}

.abt-cont .con {
    width: 400px;
}

.abt-con img {
    width: 100%;
    height: 80%;
}

.abt-con ul {
    margin-top: 20px;
    list-style: none;
}

.abt-con ul li {
    margin-top: 10px;
}

.abt-con .btn {
    color: white;
    font-weight: bolder;
    margin-top: 3vh;
    background-color: rgb(255, 0, 132);
    transition: 0.5s;
}

.abt-con .btn:hover {
    background-color: black;
}

.areas h3 span {
    color: black;
}

.areas h3 {
    color: rgb(255, 0, 132);
}

.areas {
    padding: 25px;
    background-color: white;
    margin: auto;
    height: 40vh;
    text-align: center;
}

.areas .logo {
    display: flex;
    justify-content: space-around;
    padding: 8vh 10px;
}

.areas .log-main {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

.why {
    text-align: center;
    min-height: 60vh;
    padding: 10vh;
}

.why h1 span {
    color: rgb(255, 0, 132);
}

.why-cont {
    margin-top: 10vh;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 20px;
}

.why .cont {
    width: 300px;
    text-align: center;
}

.why .cont h3 {
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(255, 0, 132);
    margin-bottom: 5vh;
}

.why .cont h6 {
    text-align: justify;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.line {
    width: 3px;
    background-color: rgb(255, 0, 132);
}

.vehicles {
    padding-top: 10vh;
    min-height: 100vh;
    text-align: center;
    background-color: white;
    padding-bottom: 10vh;
}

.vehicles h1 {
    margin-bottom: 10vh;
}

.vehicles h1 span {
    color: rgb(255, 0, 132);
}

.types {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 20px;
    margin: auto;
    width: 90vw;
    box-shadow: 0 0 10px 0 black;
    padding-bottom: 5vh;
    margin-bottom: 20px;
}

.type {
    padding-top: 20px;
    width: 350px;
    max-height: 500px;
    border-radius: 10px;
}

.type h3 {
    padding-bottom: 20px;
    border-bottom: 3px solid rgb(255, 0, 132);
}

.vehicles .v-img {
    margin: auto;
    margin-top: 25px;
    width: 200px;
    height: 100px;
    margin-bottom: 20px;
}

.vehicles .vi {
    width: 300px;
}

.vehicles .v-des {
    text-align: left;
    padding: 25px;
}

.vehicles .v-des h5 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.vehicles .v-img img {
    width: 100%;
    height: 100%;
}

.v-des h5 {
    font-size: 15px;
}

.v-des h5 span {
    font-weight: bold;
}

.work {
    width: 100vw;
    min-height: 50vh;
    background: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('./images/truck.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 5vh;
    text-align: center;
}

.work h1,
.work h4 {
    color: white;
}

.work-flow {
    padding-top: 10vh;
    width: 70%;
    display: flex;
    justify-content: space-around;
    margin: auto;
    flex-wrap: wrap;
}

.flow {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    text-align: center;
}

.flow i {
    color: white;
    font-size: 25px;
    padding: 25px;
    border-radius: 50%;
    border: 5px solid rgb(255, 0, 132);
    margin-bottom: 20px;
    cursor: pointer;
}

.flow h6 {
    color: white;
}

@media (max-width: 768px) {
    .work-flow {
        flex-direction: column;
        align-items: center;
    }

    .flow {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .work h1 {
        font-size: 24px;
    }

    .work h4 {
        font-size: 18px;
    }

    .flow i {
        font-size: 20px;
        padding: 20px;
    }

    .flow h6 {
        font-size: 16px;
    }
}

.contact-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    background: rgb(255, 0, 132);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: rgb(216, 6, 115);
}

.contact {
    padding: 25px;
    padding-top: 10vh;
    text-align: center;
    min-height: 100vh;
}

.contact-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 80vw;
    align-items: center;
    margin: auto;
}

.contact h1 span {
    color: rgb(255, 0, 132);
}

.contact h1 {
    margin-bottom: 10vh;
}



.contact b,
.contact i,
.contact h4 {
    color: black;
}

.contact h4 span {
    padding-left: 15%;
    color: black;
}

.contact button i {
    color: white;
}

.contact-des span {
    color: rgb(255, 0, 132);
}

.con-des {
    padding-top: 5vh;
    text-align: left;
}


.gallery {
    min-height: 100vh;
    padding-top: 10vh;
    text-align: center;
}

.gallery h1 span {
    color: rgb(255, 0, 132);
}

.gallery-img {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    align-items: center;
    position: relative;
    margin: auto;
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin: auto;
}

.carousel-item {
    transition: opacity 0.5s ease-in-out;
}


.carousel-item:not(.active) {
    display: none;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 0.5rem;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-item {
    margin: auto;
    width: 80vw;
    height: 80vh;
}

.carousel-item img {
    width: 100%;
    height: 100%;
}

.reach-us {
    min-height: 100vh;
    background-color: white;
    padding-top: 10vh;
    padding-bottom: 10vh;
    text-align: center;
}

.reach-us h1 {
    background-color: rgb(255, 0, 132);
    width: 300px;
    margin: auto;
    padding: 25px auto;
    color: black;
}

.reach-us h1 span {
    color: white;
}

.reach-us h4 {
    margin-top: 5vh;
}

.address {
    display: flex;
    justify-content: space-around;
    padding: 25px;
    margin-top: 5vh;
}

.ad-img {
    width: 400px;
    height: 400px;
}

.ad-img img {
    width: 100%;
    height: 100%;
}

.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.map {
    width: 50vw;
    height: 400px;

}

.clients {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: space-around;
    height: 10vh;
}

.cli img {
    width: 100%;
    height: 100%;
}

.clients h3 {
    width: 30vw;
}

.cli {
    width: 100px;
    height: 50px;
}

.client {
    display: flex;
    justify-content: space-around;
    width: 70vw;
}

.about {
    padding-top: 5vh;
    text-align: center;
    min-height: 70vh;
    background-color: black;
    color: white;
    padding-bottom: 5vh;
}

.abo h6 span {
    color: rgb(255, 0, 132);
}

.abo h5 a {
    color: white;
    text-decoration: none;
}

.about h1 {
    margin-bottom: 25px;
}

.about h1 span {
    color: rgb(255, 0, 132);
}

.about-cont {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.abo {
    width: 300px;
    max-width: 310px;
    text-align: left;
    margin-bottom: 25px;
}

.abo h3 {
    margin-bottom: 25px;
}

.abo h5 {
    color: rgb(255, 0, 132);
    margin-bottom: 25px;
}

.abo h6 {
    text-align: justify;
}

footer {
    height: 10vh;
    padding-top: 25px;
    text-align: center;
}

/* Services Page Styles */
.page2 {
    min-height: 60vh;
    background-color: black;
    background: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('./images/service.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.page2 .main {
    padding-left: 25px;
    color: white;
}

.page2 .navbar-brand {
    font-size: 50px;
}

.page2 .main h1 {
    text-align: left;
    padding-bottom: 15px;
    border-bottom: 3px solid rgb(255, 0, 132);
    width: 150px;
}

.page2 .main h4 span {
    color: rgb(255, 0, 132);
}

.service-des {
    color: white;
    padding: 10vh 10vw;
    text-align: left;
    background-color: black;
    min-height: 50vh;
}

.s-box {
    padding-top: 5vh;
}

.abt-des {
    min-height: 50vh;
}


.lo {
    width: 130px;
    height: 65px;
    margin-bottom: 20px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .carousel-control {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
    }

    .contact-box {
        flex-direction: column;
        align-items: center;
    }

    .contact-des {
        margin-top: 20px;
    }

    .ad-img {
        display: none;
    }

    .map {
        width: 85vw;
        height: 400px;
    }

}

@media (max-width: 768px) {
    .work-flow {
        flex-direction: column;
        align-items: center;
    }

    .flow {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .work h1 {
        font-size: 24px;
    }

    .work h4 {
        font-size: 18px;
    }

    .flow i {
        font-size: 20px;
        padding: 20px;
    }

    .flow h6 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 10px;
    }

    .contact h1 {
        font-size: 24px;
    }

    .contact-form h2 {
        font-size: 20px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 8px;
    }

    .contact-form button {
        padding: 8px 16px;
    }

    .con-des h4 {
        font-size: 14px;
    }
}

@media all and (max-width: 508px) {
    .navbar-brand {
        font-size: 4vh;
    }

    .main h1 {
        font-size: 4vh;
    }

    .main h2 {
        font-size: 3vh
    }

    .txt a {
        width: 300px;
    }

    .con2 {
        display: none;
    }

    .areas {
        height: 25vh;
    }

    .areas .logo {
        padding-top: 4vh;
    }

    .about-us h6 {
        display: none;
    }

    .line {
        display: none;
    }

    .carousel-control.next,
    .carousel-control.carousel-control.prev {
        display: none;
    }

    .carousel-item {
        width: 90vw;
    }

    .ad-img {
        display: none;
    }

    .map {
        width: 85vw;
        height: 400px;
    }

    .page2 .navbar-brand {
        font-size: 25px;
    }

    .ud {
        display: none;
    }

    .page2 .main h4 span {
        display: none;
    }

    .page2 .main {
        padding: 25px;
    }
}

.page2 .navbar-toggler {
    border-color: white;
}

.page2 .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' linecap='round' linejoin='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#sendMessage {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 100px;
    /* Adjust size as needed */
    height: 100px;
    /* Adjust size as needed */
    cursor: pointer;
    z-index: 1000;
    border-radius: 25px;
    /* Ensure it stays on top of other elements */
}