@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



* {

    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;

}


/**************** NAVBAR ****************/

.video_container {
    position: relative;
}

.video_container>video {
    width: 100%;
}


.video_container>.vedio_overlay {
    position: absolute;
    background-color: #000;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}


.container {
    padding: 20px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;

}

nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;


}


nav>.nav_logo>p {
    color: rgb(255, 255, 255);
    font-size: 8.5px;
    text-align: end;
    font-style: italic;
}

nav>.nav_logo>h1 {
    font-size: 45px;
    color: white;
    font-weight: 600;
}


.nav_logo>h1 {
    animation-name: bounce;
    animation-duration: 2s;
    animation-fill-mode: both;
    transition: all 0.5s ease-in-out;
}

@keyframes bounce {
    0% {
        opacity: 0;
        transform: scale(0.4);

    }

    100% {
        opacity: 1;
        transform: scale(1.01);
    }
}


.nav-content {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;

}

.nav-content .btn button {
    border: 1px solid red;
    padding: 4px 10px;
    font-size: 14px;
    background: none;
    color: white;
    margin: 10px 0px;
}

.nav-content .btn button>a {
    text-decoration: none;
    color: white;
}

.nav-items ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    color: white;
    gap: 10px;
}

.hero-section {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 80px;
}

.hero-section>img {
    width: 70%;
}


.hero-section>img {
    animation-name: fadeInLeftBig;
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: all 10s linear;
}


@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);

    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* text_section */

.text_section {
    background-color: azure;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0px;
    line-height: 48px;
    text-align: center;
}

.text_section>.text_section_text>h1 {
    font-size: 40px;
    font-weight: 600;
    padding: 10px 0px;
}

.text_section>.text_section_text>h3>span {
    color: #f82222;
}


.text_section>.text_section_text>button {

    border: none;
    background: none;
    background-color: #f82222;
    padding: 15px 20px;
    border-radius: 30px;
    margin: 10px 0px;
}

.text_section>.text_section_text>button>a {
    text-decoration: none;
    color: white;
    font-size: 15px;
}

/* section-3 */
.section-3 {
    width: 100%;
    background-color: rgb(240, 238, 236);
    padding: 70px 0px;
}

.section_3_child1 {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    align-items: center;
    gap: 80px;
}

.section_3_child1>.section_3_child1_text>h2 {
    font-size: 36px;
}

.section_3_child1 .section_3_child1_text p {
    font-size: 16px;
    font-weight: 300;
    margin-top: 20px;
}

.section_3_child1 .section_3_child1_text button {
    background: #F82222;
    color: white;
    border: none;
    padding: 8px 30px;
    margin-top: 20px;
    border-radius: 4px;
}


.section_3_child1 .section_3_child1_text button>a {
    text-decoration: none;
    color: white;
}


.section-3 .section_3_child2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 65px;
    margin-top: 80px;
}



.section_3_child2 .Number {
    font-size: 50px;
    font-weight: 700;
    color: #F82222;
    text-align: center;
}

.section_3_child2 .section_3_child2_text {
    font-size: 23px;
    font-weight: 600;
    text-align: center;
}



/************ our_services ************/

.our_services {
    padding: 60px 0px;
    width: 100%;
}

.our_services>.our_services_heading {
    text-align: center;
    line-height: 50px;
}

.our_services .our_services_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
    gap: 25px;
}

.our_services .our_services_cards .cards {

    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 40px 90px;
    margin: 20px 0px;
    border-radius: 10px;
}

.our_services .our_services_cards .cards:hover svg {
    cursor: pointer;
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
}



/****************** Choose_section***************** */

.Choose_section {
    background-image: url(../assets/media/images/choose\ imc\ image.jpg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    /* color: white; */
    z-index: 1;
}

.Choose_section .choose_section_overlay {
    background-color: black;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.7;
    z-index: -1;
}

.Choose_section .Choose_section_heading {
    text-align: center;
    padding: 50px 0px;
    color: white;
    line-height: 40px;
}

.Choose_section>.choose_section_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    gap: 20px;
    padding: 50px 0px;
    line-height: 30px;
}


.Choose_section>.choose_section_cards>.choose_section_card {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
}




.Choose_section>.choose_section_cards>.choose_section_card>div>svg {
    background-color: red;
    border-radius: 50px;
    padding: 10px;
    text-align: center;
}


.Choose_section>.choose_section_cards>.choose_section_card:hover div>svg {
    transform: rotate(180deg);
    transition: all 0.5s ease-in-out;
}


.choose_section_card hr {
    border-top: 2px solid #F82222;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.choose_section_card:hover hr {
    width: 50%;
    transition: 0.5s ease-in-out;
}


.Choose_section>.choose_section_text {
    color: white;
    text-align: center;
    line-height: 30px;
}


.Choose_section>.choose_us_icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 90px;
    margin-top: 50px;
    color: white;
    padding-bottom: 100px;


}

.Choose_section>.choose_us_icons>.choose_us_icon>svg {
    background-color: #F82222;
    border-radius: 50px;
    padding: 20px;
}



/* COMPANY IMAGES */

.company_images {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-wrap: wrap; */
}

.company_images div {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}


.company_images img {
    width: 50%;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.company_images img:hover {
    width: 70%;
}


.image-1 {
    background-color: #FFD6D7;
}

.image-2 {
    background-color: #FFF1E3;
}

.image-3 {
    background-color: #F4FFE9;
}

.image-4 {
    background-color: #FFEEFB;
}

.image-5 {
    background-color: #EDFBFE;
}

.image-6 {
    background-color: #EEF1FF;
}

.image-7 {
    background-color: #F6E9EA;
}

.image-8 {
    background-color: #EEF1FF;
}

.image-9 {
    background-color: #F6E9EA;
}



/***********Portfolio section***********/
.portfolio_section {
    padding: 60px 0px;
}

.portfolio_section .portfolio_section_heading {
    text-align: center;
    padding: 30px 0px;
}

.portfolio_section_heading h1 {
    font-size: 50px;
}

.projects_section-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 45px;
}

.portfolio_section .projects_section-1 .project-1-image {
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    box-shadow: 0px 0px 10px 0px gray;
    overflow: hidden;
    width: 48%;
    height: 410px;
}



.projects_section-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 45px;
}

.portfolio_section .projects_section-2 .project-1-image {
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    box-shadow: 1px 1px 10px 0px gray;
    overflow: hidden;
    width: 30%;
    height: 410px;
    margin-top: 20px;
}

.project-1 {
    background-image: url(../assets/media/images/porfolio\ -1.png);
}

.project-2 {
    background-image: url(../assets/media/images/porfolio\ -2.png);
}

.project-3 {
    background-image: url(../assets/media/images/porfolio\ -3.png);

}

.project-4 {
    background-image: url(../assets/media/images/porfolio\ -4.png);

}


.project-content {
    background: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 12px;
    visibility: hidden;
    transition: all 1s ease-in-out;
}



.project-1-image:hover .project-content {
    animation-name: slideInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
    visibility: visible;
}

@keyframes slideInUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.project-1-image:not(:hover) .project-content {

    animation-name: slideInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
    visibility: hidden;
}

@keyframes slideInDown {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(100%);
    }
}


.project-content img {
    width: 200px;
}

.project-content {
    padding: 20px;
}

.All_projects_content {
    text-align: center;
    line-height: 30px;
}

.All_projects_content>h2 {
    font-size: 30px;
    padding: 20px 0px;
}

.All_projects_content>button {
    background-color: #F82222;
    padding: 10px 25px;
    color: white;
    border: none;
    margin-top: 20px;
}

.All_projects_content>button>a {
    color: white;
    text-decoration: none;
}



/* footer_section */

.footer_section {
    background-color: #000;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* align-items: center; */
    padding: 60px 0px;
    gap: 30px;
    line-height: 30px;
}


.footer_section>.footer_Section_2>h3 {
    color: #F82222;
    font-weight: 600;
    line-height: 40px;
}

.footer_section>.footer_section-1>p {
    font-size: 14px;
}


.footer_section>.footer_Section_2>ul {

    list-style: none;
    font-size: 14px;
}