*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    list-style: none;
    text-decoration: none;
}



/*Header Start*/
header {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    padding-left: 30px;
    padding-right: 30px;
    background: rgb(13, 13, 13);
    /*backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;*/


}
.logo {
    font-size: 30px;
    font-weight: 700;
    color: white;
}
.navlist {
    display: flex;
}
.navlist a{
    color: white;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all .55s ease;
}
.navlist a:hover{
    border-bottom: 2px solid white;
}
#menu-icon{
    color: white;
    font-size: 30px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}



/*Home Page Start*/    
@media (max-width: 1535px) {
    header {
        padding:15px 3%;
        transition: .2s;
    }
}
@media (max-width: 990px) {
    #menu-icon {
        display: block;
    }
    .navlist {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 120px;
        height: 22vh;
        background: rgb(13, 13, 13) ;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 30px 20px;
        transition: all .55s ease;
    }
    .navlist a{
        margin-left: 0;
        display: block;
        margin: 7px 0;
    }
    .navlist.open {
        right:0;
    }
}

.hero {
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background-image: url(/images/Desktop_img.png);
    background-size: cover;
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    gap: 2rem;
}
section {
    padding: 0 5%;
}
.hero-text h1 {
    font-size: 80px;
    font-weight: 900;
    color: rgb(239, 239, 239);
    margin-bottom: 20px;
    line-height: 70px;
}
.hero-text p {
    font-size: 20px;
    font-weight: 500;
    color: rgb(186, 186, 186);
    margin-bottom: 10px;
}
.heo-text a {
    display: inline-block;
    color: white;
    background: #b50b2b;
    border: 1px solid transparent;
    padding: 12px 30px;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 300;
    border-radius: 1px;
    text-transform: uppercase;
    transition: all .55s ease;
}
.heo-text a:hover {
    background: transparent;
    border: 1px solid white;
    transform: translateX(8px);
}
.heo-text a.ctaa {
    background: transparent;
    border: 1px solid white;
    margin-left: 40px;
}

.hero-text a {
    display: inline-block;
    border: 1px solid transparent;
    padding: 12px 20px;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 300;
    border-radius: 1px;
    text-transform: uppercase;
    transition: all .55s ease;
    margin-top: 30px;
    font-weight: 500;
}

.sbtn {
    color: white;
    background: #b50b2b;
}
.sbtn:hover {
    background: transparent;
    border: 1px solid white;
    transform: translateX(8px);
}

.pbtn {
    color: white;
    background: rgb(17, 17, 17);
    border: 1px solid white;
    margin-left: 10px;
}
.pbtn:hover {
    background: transparent;
    border: 1px solid white;
    transform: translateX(8px);
}




/*Services Start*/
.services {
     background: rgb(0, 0, 0);
     width: 100%;
     padding:50px 0;
     min-height: 100vh;
     display: flex;
     justify-content: center;
     flex-direction: column;

}
.title {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0);
}
.title h2 {
    color: white;
    text-transform: capitalize;
    font-size: 40px;
    margin: 30px auto; 
}
.tqitle h2 {
    color: white;
    text-transform: capitalize;
    font-size: 40px;
    width: 1130px;
    margin: 30px auto ;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}
.box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

@media (max-width: 1080px) {
    .box {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }
}

.card {
    height: 440px;
    width: 335px;
    padding: 20px;
    background: #111111;
    border-radius: 20px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.card i {
    font-size: 50px;
    display: block;
    text-align: center;
    margin: 25px 0;
    color: #b50b2b;
}
h4 {
    color: white;
    font-size: 23px;
    margin-bottom: 15px;
}
.pra p {
    color: #ffcccccc;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 25px;


}
.card .button {
    background-color: #b50b2b;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 1px;
    transition: .4s;
}

.card .button:hover {
    background-color: transparent;
    border: 2px solid #f4f4f4;
    cursor: pointer;
}

.message-us {
    width: 100%;
    height: 290px;
    background: #090909;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.message-us p {
    color: #d0d0d0;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.message-us .button-two {
    font-size: 20px;
    background-color: #b50b2b;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 1px;
    transition: .4s;
}
.message-us .button-two:hover {
    background-color: transparent;
    border: 2px solid #f4f4f4;
    cursor: pointer;

@media (max-width: 1080px) {
    .services .box {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%; /* Adjust the width as needed */
        margin: 10px 0;
    }
}

@media (max-width: 1080px) {
    .services .box {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%; 
        margin: 10px 0;
    }
}




/*Footer Start*/
}
footer {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer p:nth-child(1){
    color: rgb(227, 227, 227);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 5px;
}
footer p:nth-child(2){
    color: #707070;
    font-weight: 100;
    font-size: 16px;
    margin-bottom: 10px;
}
.social{
    display: flex;
}
.social a{
    color: #b50b2b;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px 10px;
    margin-bottom: 10px;
    text-decoration: none;
}
.social a:hover {
    transform: scale(1.2);
    transition: .3s;
}
.end {
    position: absolute;
    color: #707070;
    bottom: 35px;
    font-weight: 100;
    font-size: 14px;
}







/*Portfolio 2 Start*/
#portfolio {
    background-color: #000000;
    justify-content: center;
    align-items: center;
}
#portfolio h4 {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 30px;
}

.main-scroll-div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}
.cover {
    position: relative;
    width: 90%;
    height: 50%;
}
.cover::before,
.cover::after {
    position: absolute;
    content: "";
    z-index: 99;
    top: 0;
    width: 15%; /* Adjust the width of the gradient as needed */
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); /* Left gradient */
}

.cover::after {
    right: 0;
    left: auto;
    background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); /* Right gradient */
}


.scroll-images {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    /*position: relative;*/
    scroll-behavior: smooth;
    scrollbar-width: none;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    scroll-snap-type: x mandatory;

    
}
.child {
    scroll-snap-align: center;
    min-width: 600px;
    height: auto;
    margin: 1px 10px;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
}
@media (max-width: 760px) {
    .child {
        min-width: 500px;
    } 
}
@media (max-width: 500px) {
    .child {
        min-width: 350px;
    } 
}
@media (max-width: 350px) {
    .child {
        min-width: 250px;
    } 
}

.scroll-images::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 0;
}
.child-img {
    width: 100%;
    height: 100%;
}
.child video {
    width: 100%;
    height: auto;
}
.arrows {
    color: #ffffff;
    font-size: 100px;
    padding: 0px 20px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    transition: .3s;
}
.arrows:hover {
    color: #b50b2b;
    transform: scale(1.1);
    transition: .3s;
}



.video-grid {
    margin-top: 100px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-grid video {
    width: 900px;
    height: auto;
    align-items: center;
    text-align: center;
    justify-content: center;
}

@media (max-width: 950px) {
    .video-grid video {
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 600px;
    }
}
@media (max-width: 650px) {
    .video-grid video {
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 450px;
    }
}
@media (max-width: 450px) {
    .video-grid video {
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 300px;
    }
}




/*Contact Start*/
#contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #090909;
    padding: 0px;
}
.socialmedia {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
}
.socialmedia i {
    font-size: 100px;
    text-decoration: none;
    color: #b50b2b;
    width: 100%;
    margin: 10px;
    transition: .5s;
    padding: 40px;
    text-align: center;
    align-items: center;
}
.socialmedia i:hover {
    transform: scale(1.05);
    transition: .5s;
}


.contactus h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}
.contactus h2 {
    color: white;
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.contactus h3 {
    color: rgb(129, 129, 129);
    font-size: 18px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 300;
    font-style: italic;
}

#email,
#twitter,
#instagram {
    text-align: center;
}

@media (max-width: 660px) {
    .socialmedia {
        flex-direction: row;
        display: flex;
    }
}

.contactbox {
    width: 500px;
    background-color: #000000;
    text-align: center;
    margin-bottom: 70px;
    padding-top: 30px;
    padding-bottom: 10px;
    border-radius: 30px;
}
.form {
    margin: 35px;
}
.input-field {
    color: white;
    width: 400px;
    height: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px transparent;
    border-radius: 2px;
    outline: none;
    background-color: #090909;
}
.textarea-field {
    color: white;
    height: 150px;
    padding-top: 10px;
    background-color: #090909;
}
.btn {
    margin-bottom: 20px;
    margin-left: 20px;
    border-radius: 2px;
    color: #fefefe;
    margin-top: 18px;
    padding: 10px;
    background-color: #b50b2b;
    font-size: 12px;
    border: none;
    cursor: pointer;
}
