* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid yellowgreen; */
}

body {
    font-family: Be Vietnam Pro, sans-serif;
    /* font-family: Playfair Display, sans-serif; */
    background-color: #0a2023;
    color: whitesmoke;
    scroll-behavior: smooth;
    /* border: 1px solid red; */
}

.hidden {
    display: none;
}

.developerRNP {
    margin-top: -30px;
    color: transparent;
}

a {
    text-decoration: none;
    color: whitesmoke;
}

a:hover {
    font-weight: bold;
}


.footer_box_content2_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #a0a0a0;
}

.footerBottomDown02 {
    font-size: 11px;
}

.footerBottomDown02 b {
    color: #adadad;
}

.footerBottomDown02 b:hover {
    cursor: pointer;
}


.shushankTechLink {
    color: #b5b5b5;
    text-decoration: none;
}

/***********************loading_page.html-Start******************************/
/***********************deleted-Start******************************/
.leaf {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 25px;
    width: 25px;
    border-radius: 0.1cm;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: whitesmoke;
}

.lightgray_leaf {
    /* background-color: lightgray; */
    background-color: orange;
    background: linear-gradient(to right, #ff0000, #00ff00, #0000ff, lightgray, yellow, orange, darkorange, red, darkred, green, darkgreen, violet, darkviolet, blue, darkblue, indigo, purple, black);
    /* border: 1px solid lightgray; */
    animation: blow 5s infinite linear;
}

.yellow_leaf {
    background-color: yellow;
    animation: blow 4.95s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.orange_leaf {
    background-color: orange;
    animation: blow 4.9s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.darkorange_leaf {
    background-color: darkorange;
    animation: blow 4.85s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.red_leaf {
    background-color: red;
    animation: blow 4.8s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.darkred_leaf {
    background-color: darkred;
    animation: blow 4.75s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.green_leaf {
    background-color: green;
    animation: blow 4.7s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.darkgreen_leaf {
    background-color: darkgreen;
    animation: blow 4.65s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.violet_leaf {
    background-color: violet;
    animation: blow 4.6s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.darkviolet_leaf {
    background-color: darkviolet;
    animation: blow 4.55s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.blue_leaf {
    background-color: blue;
    animation: blow 4.5s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.darkblue_leaf {
    background-color: darkblue;
    animation: blow 4.45s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.indigo_leaf {
    background-color: indigo;
    animation: blow 4.4s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.purple_leaf {
    background-color: purple;
    animation: blow 4.35s infinite linear;
    /* animation: blow 5s infinite linear; */
}

.black_leaf {
    background-color: black;
    animation: blow 4.30s infinite linear;
    /* animation: blow 5s infinite linear; */
}



@keyframes blow {
    0% {
        transform: translateX(-100px) translateY(0) rotate(0);
    }

    12.5% {
        transform: translateX(-50px) translateY(-50px) rotate(0deg);
    }

    25% {
        transform: translateX(0) translateY(0) rotate(0);
    }

    37.5% {
        transform: translateX(50px) translateY(50px) rotate(180deg);
    }

    50% {
        transform: translateX(100px) translateY(0) rotate(0);
    }

    62.5% {
        transform: translateX(50px) translateY(-50px) rotate(0deg);
    }

    75% {
        transform: translateX(0) translateY(0) rotate(0);
    }

    87.5% {
        transform: translateX(-50px) translateY(50px) rotate(-180deg);
    }

    100% {
        transform: translateX(-100px) translateY(0) rotate(0);
    }
}

/***********************deleted-End******************************/


.loader {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    /* border: 16px solid #f3f3f3; */
    /* border-radius: 50%; */
    /* border-color: #ff0000 #00ff00 #0000ff orange; */
    width: 150px;
    height: 100px;
    /* animation: spin 2s linear infinite; */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader img {
    /* border-radius: 50%; */
    width: 148px;
    height: auto;
    /* border-radius: 50%; */
    /* box-shadow: 0px 0px 500px #0000ff; */
    /* background-color: #b6b6fc; */
}



/***********************loading_page.html-End******************************/
/***********************************Common_box-Start**********************************/


.box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* border: 1px solid orange; */
}


.box_heading {
    word-spacing: 2px;
    /* border: 2px solid #0A4FD5; */
}

.box_heading span {
    color: #0A4FD5;
}


.box_boxs-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: red solid 1px; */
    width: 1200px;
    /* gap: 50px; */
}

.header_content {
    font-weight: bold;
    font-size: 42px;
}

/***********************************Common_box-End**********************************/
/***************************Header-Start******************************/
@keyframes fadeSkewM {
    from {
        opacity: 0;
        transform: rotateZ(180deg);
    }

    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

@keyframes fadeSkewX {
    from {
        opacity: 0;
        transform: rotateZ(0deg);
    }

    to {
        opacity: 1;
        transform: rotateZ(180deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 0.3s;
    animation: fadeInDown 0.3s linear alternate;
    /* border: 2px solid red; */
    padding: 10px 0;
    /* color: black; */
}

#sticky-header {
    padding: 10px 0;
    box-shadow: 0px 0px 10px 1px gray;
    /* background-color: #55BBDB; */
    /* background-color: #0033e7; */
    /* background-color: #4831D4; */
    background-color: #504EB4;
    background: linear-gradient(165deg, #2832d4, #bb61ff);
    background: linear-gradient(215deg, #1a59c8, #1a59c880);
    background: linear-gradient(215deg, #1a59c880, #1a59c8);
    background: linear-gradient(215deg, #103578, #2832d4, #103578);
    background: linear-gradient(215deg, #103578, #00a5b2);
    background: linear-gradient(215deg, #20f5a9, #1a59c8);
    background: linear-gradient(215deg, darkblue, #1a59c8);
    /* color: black; */
}

.header_boxs-content {
    justify-content: space-between;
    /* border: 1px solid green; */
    /* color: black; */
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
}

.header_logotext {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
    /* border: 1px solid red; */
}

.header_logotext_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 200px;
    /* height: 40px; */
    border-radius: 0.15cm;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
    letter-spacing: -4px;
    font-family: cursive;
}

.header_logotext_content {
    font-weight: bold;
    letter-spacing: 0.5px;
    /* border: 1px solid red; */
    /* color: black; */
}



.header_main-menu_ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 650px;
    /* color: black; */
    /* border: 2px solid red; */
}

/* .header_main-menu_ul a {
    color: black;
} */

/* .header_main-menu_ul a:hover {
    color: #e74c3c;
} */

.header_main-menu_ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid red; */
    width: 130px;
    /* color: black; */
}

.header_sub-menu_ul {
    /* border: 2px solid red; */
    padding-left: 0%;
    transition: transform 0.2s ease;
    display: none;
    position: absolute;
    z-index: 998;
    /* color: black; */
}

.header_sub-menu_ul:hover {
    display: block;
    /* color: black; */
}


.box_button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    /* background-color: #e74c3c; */
    background-color: #6D6BEC;
    color: whitesmoke;
    border-radius: 0.75cm;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    font-weight: bold;
    /* color: black; */
}

/* Add animation on hover */
.box_button:hover {
    cursor: pointer;
    /* background-color: whitesmoke; */
    background-color: #ADABFF;
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Specify different easing functions for opacity and transform */
}

.box_button:active {
    cursor: pointer;
    /* background-color: whitesmoke; */
    background-color: #ff0000;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Specify different easing functions for opacity and transform */
}


/***************************Header-Ebd******************************/
/***********************************power_Css-Start**********************************/
.power {
    display: flex;
    /* background-image: url(power_bg_image3.jpg); */
    background: linear-gradient(to bottom, #00008b, transparent), url("box01_bg_image1.png");
    background-position: center;
    background-size: cover;
    flex-direction: column;
    transition: background-image 0.5s ease-in-out;
    /* height: 100vh; */
    gap: 20px;

    /* align-items: stretch;
    justify-content: center; */

}

.power_boxs-contentA {
    display: flex;
    /* flex-direction: column; */
    align-items: stretch;
    justify-content: space-between;
    margin-top: 100px;
    gap: 20px;
    flex-wrap: wrap;
    /* border: 1px solid red; */
}


.power_boxs-contentA_child_left {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
    /* border: 1px solid red; */

}

.power_boxs-contentA_child_left_child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 230px;
    /* border-radius: 50%; */
    /* background-color: #0a2023; */
    /* background: linear-gradient(130deg, #ffabab, transparent 50%, #bb61ff); */
    /* border: 1px solid red; */
    border-radius: 0.15cm;
    border-radius: 50%;
    box-shadow: 1px 1px 20px 10px #0000004d;
}


.power_boxs-contentA_child_right {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 800px;
    text-shadow: 0px 0px 20px black;
    /* border: 1px solid orange; */
}

.power_hr {
    margin: 50px 0;
    width: 100%;
    border: 1px solid gray;
}

.power_boxs-contentB {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
}

.power_content_01 {
    font-weight: bold;
}

.power_content_02 {
    font-size: 36px;
}

.power_content_03 {
    font-size: 28px;
    /* border: 2px solid red; */
    text-align: justify;
}

.power_content_04 {
    margin: 20px 0;
}

.power_content_04spanA {
    text-decoration: underline;
    font-weight: bold;
}

.power_content_05 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 75px;
    flex-wrap: wrap;
    padding-top: 20px;
    /* border: 1px solid green; */
}

.power_content_05A,
.power_content_05B {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    /* width: 220px; */
    /* border: 1px solid green; */
}

.power_content_05A_span_a,
.power_content_05B_span_a {
    font-size: 24px;
}

.power_content_06 {
    /* margin: 20px 0; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* border: 1px solid red; */
    /* position: absolute;
    bottom: 50px; */
}

.left_span_button,
.middle_span_button,
.right_span_button {
    background-color: #0A4FD5;
    padding: 3.5px 15px;
    border-radius: 5cm;
    cursor: pointer;

}

/***********************************power_Css-End**********************************/

/***********************************complex_Css-Start**********************************/

.complex {
    /* background-color: red; */
    /* background: linear-gradient(130deg, #ba99ff, #abd8ff 50%, #8bfaeb); */
    /* background: linear-gradient(135deg, #ffabab, #bb61ff 50%); */
    /* background: linear-gradient(135deg, #ed7077, #2832d4 50%, #9a34e7); */
    background: linear-gradient(135deg, #2832d4, #9a34e7 35%, #2832d4, #9a34e7 85%, #2832d4);
    background: linear-gradient(135deg, #2832d4, #1a59c880);
    background: linear-gradient(135deg, #1a59c8, #1a59c880);
    background: linear-gradient(135deg, #00a5b2, #1a59c880);
    background: linear-gradient(135deg, #20f5a9, #1a59c8);
    background: linear-gradient(135deg, #20f5a980, #1a59c880), url(box02_bg_image1bg.png);
    background: linear-gradient(135deg, #20f5a9, #1a59c8);
    background: linear-gradient(135deg, darkblue, #1a59c8);
    background-position: center;
    background-size: cover;
    /* background-color: #0a2023; */
    padding-top: 40px;
    padding-bottom: 40px;

}

.complex_boxs-content {
    /* flex-direction: column; */
    align-items: start;
    gap: 50px;
    /* border: 1px solid red; */
}

.complex_content_02 {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 450px;
    padding-top: 100px;
    padding-bottom: 50px;
    /* border: 1px solid green; */
}

.complex_content_02A {
    font-size: 24px;
    /* width: 680px; */
    /* border: 1px solid green; */
}

.complex_content_02Aspan {
    font-family: cursive;
    font-style: italic;
    font-weight: lighter;
}

.complex_content_02B {
    width: 455px;
    /* border: 1px solid green; */
}

.complex_content_03 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* height: 1200px; */
    flex-wrap: wrap;
    width: 720px;
    /* border: 1px solid green; */
}

.complex_content_03a {
    background-color: white;
    /* background: linear-gradient(135deg, #20f5a980, #1a59c880); */
    width: 290px;
    border-radius: 0.3cm;
    overflow: hidden;
    /* border: 1px solid red; */
    text-shadow: 0px 0px 10px black;
}


.complex_content_03a1 {
    background: linear-gradient(300deg, #00000080, #adcbff80), url(box02_bg_image_box01.png);
    background-position: center;
    background-size: cover;
}

.complex_content_03a2 {
    background: linear-gradient(300deg, #00000080, #adcbff80), url(box02_bg_image_box02.png);
    background-position: center;
    background-size: cover;
}


.complex_content_03a3 {
    background: linear-gradient(135deg, #00000080, #adcbff80), url(box02_bg_image_box03.png);
    background-position: center;
    background-size: cover;
}


.complex_content_03a4 {
    background: linear-gradient(300deg, #00000080, #adcbff80), url(box02_bg_image_box04.png);
    background-position: center;
    background-size: cover;
}


/* .complex_content_03a00 {
    position: relative;
    top: 250px;
} */

.complex_content_03a01 {
    padding: 25px;
    height: 350px;
    /* color: black; */
    /* border: 1px solid red; */
}

.complex_content_03a01_A {
    font-weight: bold;
    display: flex;
    font-size: 24px;
    gap: 20px;
}

.complex_content_03a01_A img {
    width: 50px;
    height: 50px;
}

.complex_content_03a01_B {
    font-weight: normal;
}

.complex_content_03a01_D {
    border: 2.5px solid transparent;
}

.complex_content_03a:hover>.complex_content_03a01_D_green {
    border: 2.5px solid green;
    animation: colorLeft2Right 0.4s linear;
}

.complex_content_03a:hover>.complex_content_03a01_D_orange {
    border: 2.5px solid darkorange;
    animation: colorLeft2Right 0.4s linear;
}

.complex_content_03a:hover>.complex_content_03a01_D_blue {
    border: 2.5px solid blue;
    animation: colorLeft2Right 0.4s linear;
}

.complex_content_03a>.complex_content_03a01_D_green,
.complex_content_03a>.complex_content_03a01_D_orange,
.complex_content_03a>.complex_content_03a01_D_blue {
    transition: border 0.4s linear;
    animation: colorRight2Left 0.4s linear;
}

@keyframes colorLeft2Right {
    0% {
        transform: translateX(-500px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes colorRight2Left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-500px);
    }
}

/***********************************complex_Css-End**********************************/

/***********************************consultancy_Css-Start**********************************/
.consultancy {
    align-items: start;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    background: linear-gradient(215deg, #ed7077, #2832d4, #9a34e7 40%, #2832d4 30%, #9a34e7);
    background: linear-gradient(215deg, #1a59c880, #2832d4 40%, #1a59c880 30%, #2832d4);
    background: linear-gradient(215deg, #00a5b2, #1a59c880 40%, #00a5b2 30%, #1a59c880);
    background: linear-gradient(215deg, #20f5a9, #1a59c8 40%, #20f5a9 30%, #1a59c8);
    background: linear-gradient(135deg, #20f5a9, #1a59c8);
    background: linear-gradient(135deg, darkblue, #1a59c8);
}

.consultancy_boxs-contentA {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    width: 50%;
    /* height: 1000px; */
    /* padding-left: 50px; */
    padding-right: 50px;
    /* border: 1px solid orange; */
    padding-top: 100px;
    padding-bottom: 50px;
}

.consultancy_boxs-contentA_child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
    width: 550px;
    /* border: 1px solid orange; */
}

.consultancy_boxs-contentB {
    background-image: url(box03_bg_image_bg2.webp);
    background-position: center;
    background-size: cover;
    align-items: end;
    justify-content: start;
    border-radius: 0.25cm 0 0 0.25cm;
    /* margin-bottom: 50px; */
    width: 50%;
}

.consultancy_boxs-contentB img {
    width: 350px;
    border-radius: 0.25cm;
    margin: 400px auto 60px 40px;
    display: none;
}


.consultancy_boxs-contentB div {
    width: 350px;
    height: 247px;
    /* border: 1px solid red; */
    border-radius: 0.25cm;
    margin: 530px auto 60px 40px;
}


.consultancy_content_02 {
    font-size: 36px;
}

.consultancy_content_03 {
    font-size: 24px;
    /* border: 1px solid red; */
}

.consultancy_hr {
    margin-top: 30px;
    width: 100%;
    border: 1px solid gray;
}

.consultancy_content_04 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start;
}

.consultancy_content_04_child {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    gap: 15px;
    font-weight: bold;
}

/***********************************consultancy_Css-End**********************************/

/***********************************project_Css-Start**********************************/
.project {
    align-items: start;
    justify-content: space-between;
    /* gap: 50px; */
    /* flex-wrap: wrap; */
    /* background: linear-gradient(135deg, #7209d4 40%, #2832d4 30%, #00a5b2); */
    background: linear-gradient(145deg, #9a34e7, #2832d4, #9a34e7 40%, #2832d4 30%, #2832d4, #2832d4, #ed7077);
    background: linear-gradient(145deg, #2832d4, #1a59c880 40%, #2832d4 30%, #1a59c880);
    background: linear-gradient(145deg, #1a59c880, #00a5b2 40%, #1a59c880 30%, #00a5b2);
    background: linear-gradient(145deg, #1a59c8, #20f5a9 40%, #1a59c8 30%, #20f5a9);
    background: linear-gradient(135deg, #20f5a9, #1a59c8);
    background: linear-gradient(135deg, darkblue, #1a59c8);
}


.project_boxs-contentA {
    background-image: url(box02_bg_image1bg2.webp);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: end;
    justify-content: end;
    border-radius: 0 0.25cm 0.25cm 0;
    width: 50%;
}

.project_boxs-contentA img {
    width: 350px;
    border-radius: 0.25cm;
    margin: 400px 40px 60px auto;
    display: none;
}

.project_boxs-contentA div {
    width: 350px;
    height: 180px;
    /* border: 1px solid red; */
    border-radius: 0.25cm;
    margin: 300px 40px 60px auto;
}

.project_boxs-contentB {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
    width: 50%;
    /* padding-left: 50px; */
    padding-left: 50px;
    padding-top: 100px;
}

.project_boxs-contentB_child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
    width: 550px;
    padding-bottom: 50px;
    /* border: 1px solid red; */
}


.project_content_02 {
    font-size: 36px;
}

.project_content_03 {
    font-size: 24px;
}

/***********************************project_Css-End**********************************/

/***********************************Box04_Css-Start**********************************/
/* .box04 {
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 120px 60px;
    gap: 50px;
    background-color: #1c4449;
}

.box04_boxs-content {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 0 0.25cm 0.25cm 0;
    gap: 40px;
    border: 1px solid red;
}

.box04_content_02 {
    font-size: 36px;
    width: 750px;
    border: 1px solid red;
}

.box04_boxs-content03A,
.box04_boxs-content03B {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: start;
    padding: 30px 50px;
    width: 100%;
    background-color: #0a2023;
    border-radius: 0.25cm;
    transition: background-color 0.5s ease-in-out;
    border: 1px solid orange;
}

.box04_boxs-content03A {
    padding-bottom: 0px;
}

.box04_boxs-content03A:hover,
.box04_boxs-content03B:hover {
    cursor: pointer;
    background-color: darkblue;
    transition: background-color 0.5s ease;
}

.box04_boxs-content_image1,
.box04_boxs-content_image2 {
    width: 280px;
    border-radius: 0.25cm 0.25cm 0 0;
}

.box04_boxs-content_image2 {
    border-radius: 0.25cm;
}

.box04_boxs-content03_h3 {
    width: 200px;
    border: 1px solid #e74c3c;
}

.box04_boxs-content03_para {
    width: 310px;
    border: 1px solid #e74c3c;
}


.box04_boxs-content03A .para,
.box04_boxs-content03A .box04_boxs-content_image1arrow_div {
    padding-bottom: 30px;
}

.box04_boxs-content_image1arrow,
.box04_boxs-content_image2arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-radius: 50%;
    background-color: white;
    transition: background-color 1.5s ease-in-out;
}

.box04_boxs-content03A:hover>.box04_boxs-content_image1arrow_div>.box04_boxs-content_image1arrow,
.box04_boxs-content03B:hover>.box04_boxs-content_image1arrow_div>.box04_boxs-content_image2arrow {
    cursor: pointer;
    background-color: #e74c3c;
    transition: background-color 1.5s ease;
} */

/***********************************Box04_Css-End**********************************/

/***********************************Box06_Css-Start**********************************/
/* .box06 {
    align-items: start;
    justify-content: center;
    gap: 50px;
    padding: 60px;
    background: linear-gradient(150deg, #9a34e7 10%, #2832d4, #2832d4, #9a34e7 85%);
    background: linear-gradient(150deg, #1a59c880, #2832d4, #1a59c880);
    background: linear-gradient(150deg, #00a5b2, #1a59c880, #00a5b2);
    background: linear-gradient(150deg, #20f5a9, #1a59c8, #20f5a9);
    background: linear-gradient(135deg, #20f5a9, #1a59c8);
}

.box06_boxs-content {
    align-items: start;
    justify-content: space-between;
}

.box06_boxs-contentA {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
    width: 500px;
    border: 1px solid red;
}

.box06_boxs-contentB {
    display: flex;
    align-items: end;
    justify-content: end;
    border-radius: 0 0.25cm 0.25cm 0;
}

.box06_boxs-contentB img {
    width: 600px;
    border-radius: 0.25cm;
}


.box06_content_02 {
    font-size: 36px;
}


.box06_content_03 {
    font-size: 24px;
} */

/***********************************Box06_Css-End**********************************/

/***********************************Box07_Css-Start**********************************/
/* .box07 {
    align-items: start;
    justify-content: center;
    gap: 80px;
    padding: 60px;
    background: linear-gradient(205deg, #9a34e7 10%, #2832d4, #9a34e7 85%);
    background: linear-gradient(205deg, #1a59c880, #2832d4, #1a59c880);
    background: linear-gradient(205deg, #00a5b2, #1a59c880, #00a5b2);
    background: linear-gradient(205deg, #20f5a9 10%, #1a59c8, #20f5a9 90%);
    background: linear-gradient(135deg, #20f5a9, #1a59c8);
    border: 1px solid red;
}

.box07_boxs-content {
    flex-wrap: wrap;
}

.box07_boxs-contentA {
    background-image: url(power_bg_image2.jpg);
    background-position: center;
    background-size: cover;
    align-items: end;
    justify-content: end;
    border-radius: 0.25cm;
    margin-top: 100px;
    margin-bottom: 50px;
    width: 500px;
}

.box07_boxs-contentA img {
    width: 200px;
    border-radius: 0.5cm;
    margin: 0px 0px 300px 0px;
    position: relative;
    top: -50px;
    right: -350px;
}

.box07_boxs-contentB {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 600px;
    border: 1px solid red;
}

.box07_content_02 {
    font-size: 36px;
}

.box07_content_03 {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.box07_content-list {
    border: 1px solid gray;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    border-radius: 0.25cm;
    overflow: hidden;
}

.box07_content-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    width: 100%;
    border-radius: 0.25cm 0.25cm 0 0;
    background: linear-gradient(135deg, #6f6dce 60%, #bb61ff);
    background: linear-gradient(135deg, #00a5b2, #6f6dce, #00a5b2, #6f6dce);
}

.box07_content {
    padding: 20px;
    animation: fadeInDown 0.3s linear alternate;
}


.box07_content-button.maximized {
    background-color: #e74c3c;
    background: linear-gradient(45deg, #bb61ff 60%, #6f6dce);
    background: linear-gradient(45deg, #6f6dce, #00a5b2, #6f6dce);
} */

/***********************************Box07_Css-End**********************************/

/***********************************footer_Css-Start**********************************/

.footer_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #1c4449;
    background: linear-gradient(135deg, transparent, #1a59c880, transparent, transparent 40%, transparent, #1a59c880, transparent);
    color: antiquewhite;
    padding: 50px 0px 20px 0px;
    /* border: 1px solid red; */
}

.footer_box_content {
    flex-direction: column;
    padding: 0;
    gap: 20px;
    /* border: 1px solid red; */
}

.footer_box_content_child {
    display: flex;
    align-items: start;
    justify-content: center;

    padding: 20px 0;
    width: 100%;
    flex-wrap: wrap;
    /* border: 1px solid red; */
}

.footer_box_content_child1 {
    flex-wrap: wrap;
    /* border: 1px solid red; */
}

.footer_box_content_child2 {
    align-items: center;
    /* border: 1px solid red; */
}

.footer_box_content_hr {
    width: 100%;
    border: 1px solid gray;
}

.footer_box_content_list_hr {
    height: 210px;
    margin: 0px 50px 0px 100px;
    border: 1px solid gray;
}

.footer_box_content1_list {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 35px;
    /* border: 1px solid red; */
}

.footer_box_content1_list_heading {
    font-weight: bold;
}

.footer_box_content1_list_text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.footer_box_content1_list_text a {
    font-weight: normal;
}

.footer_box_content1_list_text5 {
    /* background-color: #0a2023;
    background: linear-gradient(215deg, #0a2023, #1a59c880, #0a2023, #0a2023 40%, #0a2023, #1a59c880, #0a2023); */
    gap: 12px;
    font-size: 13px;
    /* padding: 35px 120px 35px 25px; */
    /* border-radius: 0.2cm; */
}

.footer_box_list_hyperlink:hover {
    cursor: pointer;
    color: #e74c3c;
}

.footer_box_list_hyperlink00 {
    color: orange;
}

.footer_box_list_hyperlink00:hover {
    cursor: text;
}

.footer_box_content1_images img {
    width: 35px;
    background-color: white;
    border-radius: 50%;
}

.footer_box_content1_images img:hover {
    cursor: pointer;
}

.footer_box_content1_images {
    display: flex;
    gap: 15px;
}

.footer_logotext {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    gap: 4px;
}

.footer_logotext_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 40px;
    height: 40px;
    /* background-color: #e74c3c; */
    background-color: #6D6BEC;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -4px;
    padding: 0 5px 0 0;
    font-family: cursive;
}

.footer_box_content2_list {
    display: flex;
    gap: 30px;
    text-align: center;
}

.footer_box_content_child3 b {
    cursor: pointer;
    cursor: alias;
    cursor: all-scroll;
    cursor: auto;
    cursor: cell;
    cursor: col-resize;
    cursor: context-menu;
    cursor: copy;
    cursor: crosshair;
    cursor: default;
    cursor: e-resize;
    cursor: ew-resize;
    cursor: grab;
    cursor: grabbing;
    cursor: help;
    cursor: move;
    cursor: n-resize;
    cursor: ne-resize;
    cursor: nesw-resize;
    cursor: no-drop;
    cursor: none;
    cursor: not-allowed;
    cursor: ns-resize;
    cursor: nw-resize;
    cursor: nwse-resize;
    cursor: progress;
    cursor: row-resize;
    cursor: s-resize;
    cursor: se-resize;
    cursor: sw-resize;
    cursor: text;
    cursor: vertical-text;
    cursor: w-resize;
    cursor: wait;
    cursor: zoom-in;
    cursor: zoom-out;
}

/***********************************footer_Css-End**********************************/

/*##################################ContactUs_Css-Start##################################*/

/***********************************contactUs_box01-Start**********************************/


.contactUs_box01 {
    overflow: hidden;
    display: flex;
    text-align: center;
    background-image: url(box06_bg_image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* border: 1px solid red; */
}

.contactUs_box01_text {
    font-size: 60px;
    font-weight: bold;
    margin: 200px 0;
    /* color: black; */
    text-shadow: 0px 0px 10px black;
}


.contactUs_box01B {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactUs_box01B_child {
    overflow: hidden;
    /* padding: 0 50px; */
    margin: 50px 0;
    gap: 40px;
    /* width: 1200px; */
    display: flex;
    align-items: center;
    justify-content: center;
}


.contactUs_box01B_child img {
    width: 750px;
    height: 450px;
}

/***********************************contactUs_box01-End**********************************/

/***********************************contactUs_box02-Start**********************************/
.contactUs_box02 {
    align-items: start;
    padding-top: 30px;
    padding-bottom: 30px;
    background: linear-gradient(130deg, #ed7077, #2832d4, #9a34e7 40%, #2832d4 30%, #2832d4, #ed7077);
    background: linear-gradient(130deg, #2832d4, #1a59c880 40%, #2832d4 30%, #1a59c880);
    background: linear-gradient(130deg, #00a5b2, #1a59c880 40%, #00a5b2 30%, #1a59c880);
    background: linear-gradient(130deg, #20f5a9, #1a59c8 40%, #20f5a9 30%, #1a59c8);
    background: linear-gradient(135deg, #20f5a9, #1a59c8);
    background: linear-gradient(135deg, darkblue, #1a59c8);
    /* border: 1px solid red; */
}

.contactUs_box02_box {
    gap: 20px;
    align-items: start;
}

.contactUs_box02_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background-color: #cbeffb;
    color: black;
    padding: 40px;
    border-radius: 0.25cm;
    width: 550px;
}

.contactUs_box02_left h1 {
    margin-bottom: 30px;
    font-size: 34px;
}

.contactUs_box02_left input,
textarea {
    margin-bottom: 40px;
    background-color: #cbeffb;
    border: 1px solid gray;
    /* border-bottom: 1px solid gray; */
    border-radius: 0.3cm;
    width: 100%;
    padding: 10px;
}

.contactUs_box02_left input:focus,
textarea:focus {
    border-bottom: 1px solid blue;
    outline: none;
}

.contactUs_box02_left label {
    padding-bottom: 10px;
    width: 100%;
}

button {
    border: 1px solid transparent;
    font-size: 18px;
}


.contactUs_box02_right {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    width: 650px;
    /* padding-left: 50px; */
    padding-left: 50px;
    margin: 50px 0;
    /* border: 1px solid red; */
}

.contactUs_box02_right_02 {
    font-size: 36px;
}


.contactUs_box02_right_03 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    font-size: 24px;
}


.contactUs_box02_right_03A,
.contactUs_box02_right_03B {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #cbeffb;
    color: black;
    width: 250px;
    padding: 30px;
    gap: 30px;
    border-radius: 0.25cm;
    /* cursor: pointer; */
    /* border: 1px solid red; */
}

.contactUs_box02_right_03_image img {
    width: 50px;
}

.contactUs_box02_right_03_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.para_b {
    font-weight: bold;
    color: #0A4FD5;
}

/***********************************contactUs_box02-End**********************************/

/*##################################ContactUs_Css-End##################################*/














@media screen and (max-width: 1310px) {

    /* * {
        border: 1px solid red;
    } */

    .project_content_03 {
        text-align: start;
    }

    .complex_content_03a00 {
        position: relative;
        top: 0px;
    }

    .box_boxs-content {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0px 50px;
        /* border: 1px solid green; */
    }

    .power_boxs-contentA_child_left,
    .power_boxs-contentA_child_right,
    .project_boxs-contentB,
    .consultancy_boxs-contentA,
    .contactUs_box02_box,
    .contactUs_box02_right {
        width: 680px;
    }


    /* .box06_boxs-contentA,
    .box06_boxs-contentB,
    .box07_boxs-contentA,
    .box07_boxs-contentB {
        width: 680px;
    } */


    .header_main-menu_ul {
        width: 100%;
        justify-content: space-between;
    }

    .header_boxs-content {
        flex-direction: row;
    }

    .power_boxs-contentA_child_left {
        /* border: 1px solid orange; */
        text-align: center;
        padding: 0;
    }

    .power_boxs-contentA_child_right {
        text-align: center;
        align-items: center;
        padding: 0;
    }

    .power_content_05A,
    .power_content_05B {
        text-align: center;
        align-items: center;
        /* border: 1px solid orange; */
    }

    .complex_content_02 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 50px;

    }

    .complex_content_02A {
        text-align: start;
    }

    .complex_content_03 {
        flex-direction: row;
        justify-content: center;
    }

    .project {
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
        gap: 50px;
    }

    .project_boxs-contentB {
        justify-content: center;
        padding: 0;
    }

    .project_boxs-contentB_child {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .consultancy {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        text-align: center;
        /* border: 2px solid red; */
    }

    .consultancy_content_03 {
        text-align: start;
    }


    .consultancy_boxs-contentA_child {
        text-align: center;
        width: 100%;
        /* border: 2px solid red; */
    }

    .consultancy_boxs-contentA_child00 {
        text-align: start;
    }

    /* .box06_boxs-contentA {
        align-items: center;
        text-align: center;
        margin-top: 50px;
    } */

    /* .box06_boxs-contentB {
        align-items: center;
        justify-content: center;
    } */

    /* .box06_boxs-contentB img {
        width: 100%;
        margin: 0;
    } */

    /* .box07_boxs-contentB {
        text-align: center;
    } */

    /* .box07_boxs-contentB {
        display: flex;
        align-items: center;
        gap: 30px;
    } */

    /* .box07_boxs-contentA img {
        right: -450px;
        border: 1px solid blue;
    } */

    .footer_box_content_child {
        flex-wrap: wrap;
        width: 100%;
        gap: 40px;
        /* justify-content: center; */
        /* border: 1px solid blue; */
    }

    .contactUs_box02_box {
        gap: 40px;
    }

    .contactUs_box02_right {
        align-items: center;
        text-align: center;
        padding: 0px;
    }

    .contactUs_box02_right_03 {
        justify-content: center;
        text-align: start;
        gap: 30px;
    }

}



@media screen and (max-width: 910px) {

    /* *{
        border: 1px solid orange;
    } */

    .power_boxs-contentA_child_left,
    .power_boxs-contentA_child_right,
    .complex_content_02A,
    .complex_content_02B,
    .project_boxs-contentB,
    .consultancy_boxs-contentA,
    .contactUs_box02_box,
    .contactUs_box02_right {
        width: 100%;
    }

    /* .box06_boxs-contentA,
    .box06_boxs-contentB,
    .box07_boxs-contentA,
    .box07_boxs-contentB {
        width: 100%;
    } */

    .header_menu_div {
        display: none;
    }


    .header_menu-bar {
        display: flex;
    }

    .header_menu-bar_parent {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }


    .header_menu-bar {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #menubtn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: blue;
        border-radius: 50%;
        width: 35px;
        cursor: pointer;
        animation: fadeSkewM 0.3s linear alternate;
    }

    #closebtn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 50%;
        width: 35px;
        font-size: 24px;
        cursor: pointer;
        animation: fadeSkewX 0.3s linear alternate;
    }

    .header_main-menu_ul01 {
        list-style-type: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #EDF2F8;
        color: #000000;
        /* background-color: #6f6dce;
        background: linear-gradient(130deg, #2832d4, #103578, #2832d4);
        background: linear-gradient(130deg, #00a5b2, #103578);
        background: linear-gradient(130deg, #1a59c8, #20f5a9); */
        transition: transform 0.5s ease;
        animation: fadeInDown 0.3s linear alternate;
        width: 70%;
    }


    .header_main-menu_ul-li01 {
        padding: 10px;
        cursor: pointer;
    }


    .header_main-menu_ul-li01 {
        border: 0.5px solid lightgrey;
        border-right: none;
        border-left: none;
        color: #000000;
    }

    .header_boxs-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .header_main-menu_ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 270px;
        /* border: 2px solid red; */
    }

    /* .box07_boxs-contentA img {
        right: -50%;
    } */

    .power_boxs-contentA_child_right {
        padding: 0;
    }

    /* .box06_boxs-content,
    .box06_boxs-contentB,
    .box07_boxs-content,
    .box07_boxs-contentB {
        padding: 0;
    } */

    .project_boxs-contentB,
    .consultancy_boxs-contentA {
        padding: 0px 50px;
    }

    .consultancy_boxs-contentA {
        padding-top: 50px;
    }

    /* .box06_boxs-contentA {
        padding: 20px;
    } */

    .footer_box_content2_list {
        flex-wrap: wrap;
    }

    .header_content {
        font-size: 30px;
    }

    .contactUs_box01_text {
        font-size: 40px;
    }

    .para {
        font-size: 22px;
    }

    .power_boxs-contentA_child_left_child {
        width: 200px;
        height: 200px;
    }

}

@media screen and (max-width: 610px) {

    .contactUs_box02_left {
        width: 100%;
    }

    .power_boxs-contentA,
    .complex_boxs-content {
        margin-top: 50px;
    }

    .complex_content_01 {
        text-align: center;
    }


    .footer_box_content_list_hr {
        height: 210px;
        margin: 0px 20px;
        border: 1px solid gray;
    }

    .header_content {
        font-size: 30px;
    }

    .power_content_02,
    .power_content_05A_span_a,
    .power_content_05B_span_a,
    .project_content_02,
    .consultancy_content_02,
    .contactUs_box02_right_02 {
        font-size: 32px;
    }

    /* .box04_content_02,
    .box06_content_02,
    .box07_content_02 {
        font-size: 32px;
    } */

    .para,
    .complex_content_02A {
        font-size: 16px;
    }
}

@media screen and (max-width: 510px) {
    /* * {
        border: 1px solid green;
    } */


    .box_boxs-content {
        padding: 0px 40px;
    }

    .footer_box_content_list_hr {
        display: none;
    }

    .header_content {
        font-size: 25px;
    }

    .power_content_02,
    .power_content_05A_span_a,
    .power_content_05B_span_a,
    .project_content_02,
    .consultancy_content_02,
    .contactUs_box02_right_02 {
        font-size: 28px;
    }

    /* .box04_content_02,
    .box06_content_02,
    .box07_content_02 {
        font-size: 28px;
    } */

    .complex_content_01 {
        text-align: center;
    }

    .complex_content_03 {
        padding: 0px 10px;
    }

    .complex_content_03a {
        width: 100%;
    }

    .get_started_button00 {
        display: none;
    }

    .project_boxs-contentA div,
    .consultancy_boxs-contentB div {
        width: 100%;
        margin: 300px 40px 60px 40px;
    }

    /* .box07_boxs-contentA img {
        width: 150px;
        margin: 0px 0px 200px 0px;
        right: -50px;
    } */

    .contactUs_box01_text {
        font-size: 35px;
    }

}


@media screen and (max-width: 410px) {

    /* * {
        border: 1px solid green;
    } */

    .box_boxs-content {
        padding: 0px 30px;
    }

    .header_content {
        font-size: 25px;
    }

    .power_content_02,
    .power_content_05A_span_a,
    .power_content_05B_span_a,
    .project_content_02,
    .consultancy_content_02,
    .contactUs_box02_right_02 {
        font-size: 24px;
    }


    /* .box04_content_02,
    .box06_content_02,
    .box07_content_02 {
        font-size: 24px;
    } */

    .contactUs_box02_right_03A,
    .contactUs_box02_right_03B {
        width: 100%;
    }


    .contactUs_box01_text {
        font-size: 30px;
        font-weight: bold;
        margin: 150px 0;
    }

    .contactUs_box02_left {
        padding: 30px 20px;
    }

    .contactUs_box02_left h1 {
        padding-bottom: 0px;
        font-size: 28px;
    }

    .contactUs_box02_left label {
        padding-bottom: 0px;
    }

    .contactUs_box02_right_03A,
    .contactUs_box02_right_03B {
        padding: 20px 10px;
    }

    .complex_content_03 {
        padding: 0px;
    }

}


@media screen and (max-width: 370px) {

    /* * {
        border: 1px solid green;
    } */

    .header_content {
        font-size: 22px;
    }
}
