@import url('https://fonts.googleapis.com/css2?family=Platypi:ital,wght@0,300..800;1,300..800&display=swap');



/*  custome property*/
:root {


    /*  baground color*/

    --bg-dark-purple: hsla(260, 62%, 11%, 1);
    --bg-russian-violate: hsla(259, 61%, 14%, 1);
    --bg-vivid-violate: hsla(273, 100%, 55%, 1);
    --bg-sunglow: hsla(43, 100%, 61%, 1);
    --bg-blue-jeans: hsla(202, 100%, 50%, 1);
    --bg-white-alpha-10: hsla(0, 0%, 100%, 0.5);
    --bg-white-alpha-1: hsla(0, 0%, 0%, 0.1);



    /*                   text colours           */

    --tex-white: hsla(0, 0%, 100%, 1);
    --tex-black: hsla(0, 0%, 0%, 1);
    --tex-sunglow: hsla(43, 100%, 61%, 1);
    --tex-white-alpha-60: hsla(0, 0%, 100%, 0.6);


    /*      border color        */

    --border-blue-jeans: hsla(202, 100%, 50%, 1);
    --border-white-alpha-10: hsla(0, 0%, 100%, 0.1);


    /*            Typography      */

    /*     font size          */

    --fontfamily-open-sans: 'open sans', sans-serif;
    --fontsize-1: 4rem;
    --fontsize-2: 3.2rem;
    --fontsize-3: 2.4rem;
    --fontsize-4: 2rem;
    --fontsize-5: 1.8rem;
    --fontsize-6: 1.6rem;
    --fontsize-7: 1.4rem;

    /*             font weight         */

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;


    /*         Shadow       */

    --shadodw-1: drop-shadow(0 20px 30px hsal(0, 0%, 0%, 0.1));
    --shadodw-2: drop-shadow(0 20px 30px hsal(0, 0%, 0%, 0.2));


    /*           transition       */

    --transition-1: 205ms ease;
    --transition-2: 500ms ease;
    --cubic-out: cubic-bezier(0, 1, 0.5, 1);

}




*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

li {
    list-style: none;
}

a,
img,
span,
button {
    display: block;
}

a {
    color: initial;
    text-decoration: none;
    cursor: pointer;
}

img {
    height: auto;
}

input,
button {
    background: initial;
    border: none;
    font: initial;
}

input {
    width: 100%;
    outline: none;
    text-transform:none;
}

button {
    cursor: pointer;
}

address {
    font-style: normal;
}





html {
    font-family: var(--fontfamily-open-sans);
    font-size: 10px;
    scroll-behavior: smooth;
}




body {
    color: var(--tex-white-alpha-0);
    font-size: var(--fontsize-6);
    line-height: 1.8;
    box-sizing: border-box;

}


header {
    background: var(--tex-white);
    display: block;
    height: auto;
    width: 100%;
    overflow: hidden;
}


.header-section {
    display: flex;
}


#logo {
    height: auto;
    margin-left: 90px;
    padding: 5px 20px;
    text-align: center;
}

#logo img {
    width: 100px;

}

#logo h2 {
    text-align: center;
}

nav {
    width: 100%;
}

.navigation-manu {
    display: block;
    margin-left: 100px;
}



/*  fist div header contact  section */

.upper-side-nav {
    height: 50%;
    line-height: 50px;
    text-align: center;
}

.upper-side-nav ul {
    display: flex;
    justify-content: space-around;
}

.upper-side-nav ul li {
    padding: 10px 20px;
    list-style: none;
    font-size: var(--fontsize-7);
}


.upper-side-nav ul li a {
    text-decoration: none;
    font-weight: 600;
    color: black;
    transition: .5s;
}

.upper-side-nav a i {
    color: #000000;
    padding-right: 7px;

}

#nav-sub-icon {
    display: flex;
    list-style: none;
}

#nav-sub-icon li {
    padding: 10px 20px;
}

#nav-sub-icon li a i {
    font-size: var(--fontsize-5);
    color: #82f33b;
    transition: .5s;
}

#nav-sub-icon li a i {
    color: #ff0000;
}

#nav-sub-icon .fa-brands.fa-facebook-f {
    color: #1877F2;
}


/* second div  */


.down-side-nav {
    height: 50%;
    display: flex;
    justify-content: space-between;
    margin-right: 50px;
    border-top: 1px solid #75ce3e;
}


.down-side-nav ul {
    display: flex;
}

.down-side-nav ul li {
    padding: 10px 15px;
}




.down-side-nav ul li a {
    text-decoration: none;
    padding: 5px 10px;
}


.down-side-nav ul li a:hover {
    background: var(--bg-white-alpha-1);
}


.dropbtn {
    position: relative;
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position:fixed;
    background-color: #f1f1f1;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 2px 20px;
    text-decoration: none;
    display: block;
  }
  
  
  .dropdown:hover .dropdown-content {display: block;}
  



.nav-box {
    background: #75ce3e;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    padding: 0px 0px 0px 15px;
}

.inner-nav-box {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    background: #1877F2;
}

.inner-nav-box button{
    padding: 25px 25px;
    color: var(--tex-white);
}



/* third div  */



.manu-bar {
    display: none;
    float: right;
    cursor: pointer;
    padding: 6px;
    border: 1px solid black;
}


.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: #000000;
    margin: 6px 0;
    transition: 0.5s;
}


.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}


/* forth div  */



#mobile-manu {
    display: none;
    background: var(--tex-white);
    padding-bottom: 50px;
}


#mobile-manu .btn {
    padding: 10px 0px 10px 50px;
    transition: 0.7s;
}

#mobile-manu .btn.deactive {
    background: var(--bg-blue-jeans);
}

#mobile-manu .btn:hover {
    padding: 10px 0px 10px 80px;
    background: var(--bg-blue-jeans);
}

#mobile-manu .btn i {
    padding-right: 10px;
}

#mobile-manu button {
    justify-content: center;
    margin-left: 40px;
    margin-top: 20px;
}


#mobile-manu button .btn-secondary {
    float: inline-end;
    background: var(--tex-white);
    font-weight: var(--weight-medium);
    font-size: var(--fontsize-5);
    border-radius: 6px;
    padding: 10px 30px;
    margin-right: 20px;
    transition: .5s;
}

#mobile-manu button .btn-secondary:hover {
    background: var(--bg-blue-jeans);
    color: var(--tex-white);

}



/* media quary of header section  */

@media screen and (min-width: 900px) and (max-width: 1100px) {


    header {
        display: block;
        width: 100%;
    }


    #logo {
        margin: auto;
        margin-left: 20px;
        padding: 20px;
        text-align: center;

    }

    #logo img {
        width: 90px;

    }

    .navigation-manu {
        display: block;
        margin-left: 20px;
    }


    .down-side-nav {
        margin-right: 20px;
        border-top: 1px solid #75ce3e;
    }


}



@media screen and (min-width: 750px) and (max-width: 900px) {


    header {
        display: block;
        width: 100%;
    }


    #logo {
        margin: auto;
        margin-left: 20px;
        padding: 20px;
        text-align: center;

    }

    #logo img {
        width: 90px;

    }

    .navigation-manu {
        display: block;
        margin-left: 20px;
    }


    #nav-sub-icon li {
        padding: 10px;
    }


    .down-side-nav {
        display: none;
        margin-right: 20px;
        border-top: 1px solid #75ce3e;
    }


    .manu-bar {
        display: block;
        margin: 20px 80px;
    }


}



@media screen and (min-width: 400px) and (max-width: 750px) {


    header {
        width: 100%;
        display: block;
    }


    #logo {
        width: 50%;
        margin: auto;
        text-align: center;

    }

    #logo img {

        margin: auto;
        width: 100px;

    }

    .navigation-manu {
        display: block;
        margin: auto;
        width: 50%;
    }

    .upper-side-nav {
        display: none;
    }

    .down-side-nav {
        display: none;
    }


    .manu-bar {
        display: block;
        margin: 50px;
    }


}

@media screen and (min-width: 0px) and (max-width: 400px) {


    header {
        width: 100%;
        display: block;
    }


    #logo {
        width: 50%;
        margin: auto;
        text-align: center;

    }

    #logo img {

        margin: auto;
        width: 100px;

    }

    .navigation-manu {
        display: block;
        margin: auto;
        width: 50%;
    }

    .upper-side-nav {
        display: none;
    }

    .down-side-nav {
        display: none;
    }


    .manu-bar {
        display: block;
        margin: 50px 0px;
    }


}



/* contact get in touch button form  */


.modal {
    display: none;
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 50px 300px 0px 300px;

}


form {
    display: block;
    border-radius: 6px;
    background-color: #ffffff;
    padding: 20px;
}

.contact-head {
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 20px;
}

.contact-head i {
    font-size: 30px;
    padding-right: 5px;
}


.contact-info-form {
    padding-left: 30px;
    display: block;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}



@media screen and (min-width: 775px) and (max-width: 1100px) {

    .modal {
        width: 100%;
        padding: 15px 200px 0px 200px;
    }
}

@media screen and (min-width: 400px) and (max-width: 775px) {

    .modal {
        width: 100%;
        padding: 50px 30px 0px 30px;
    }

}

@media screen and (min-width: 200px) and (max-width: 400px) {

    .modal {
        width: 100%;
        padding: 50px 30px 0px 30px;
    }

    .contact-head {
        font-size: var(--fontsize-5);
    }

    .contact-head i {
        font-size: var(--fontsize-5);
    }

    .contact-info-form {
        padding-left: 0px;
        display: block;
    }

    input[type=text],
    input[type=tel],
    input[type=email],
    textarea {
        font-size: 12px;
    }
}


/* main contaner slider  */

/*  video section css */


.video-section {
    width: 100%;
    height: 100%;
    z-index:1;
}


.x-cross-vidie-bar {
    position: absolute;
    right: 0;
}

.video-bar {
    width: 50px;
    height: 50px;
}

.video-bar i {
    font-size: var(--fontsize-2);
    padding: 5px 10px;
}

.video-section video {
    width: 100%;
    height: 78vh;
    object-fit: fill;

}

@media screen and (min-width: 500px) and (max-width: 700px) {


    .video-section {
        width: 100%;
        height: 100%;
    }

    .video-section video {
        width: 100%;
        height: 100%;
        object-fit: fill;

    }
}



@media screen and (min-width: 00px) and (max-width: 500px) {


    .video-section {
        width: 100%;
        height: 100%;
    }

    .video-section video {
        width: 100%;
        height: 100%;
        object-fit: fill;

    }
}



/*  Welcome section start */


.welcome-section{
    overflow: hidden;
    display:block;
    width:100%;
    background:var(--bg-white-alpha-1);

}


.welcome-header{
    display: block;
}

.welcome-header h1{
    text-align: center;
    padding: 10px 0px;
}


.welcome-contant{
    display: flex;
    margin:10px;
    background:var(--tex-white);
}

.welcome-contant-section{
    width: 40%;
    padding:30px 0px 40px 30px;
    /* border: 1px solid black; */
    margin-left:5%;
}

.welcome-contant-section .first-welcome-para,
.second-welcome-para,
.third-welcome-para{
    font-size: var(--fontsize-6);
    list-style:square outside none;
     display:list-item; 
}

.first-welcome-para{
    display: inline;
}


.welcome-img-section{
    width: 50%;
    margin: auto;
}

.welcome-img-section img{
    width:80%;
    margin: auto;
    display: block;
    border-radius: 20px;
}


/* media quary of welcome section  */

@media screen and (min-width: 000px) and (max-width: 1000px){


    .welcome-section{
        display: block;
    }


    .welcome-header{
        display: block;
    }
    
    .welcome-header h1{
        font-size:var(--fontsize-5);
        text-align: center;
        padding: 10px 0px;
    }


    .welcome-contant{
        display:block;
        width: 100%;
        padding:0;
    }


    
.welcome-contant-section{
    width: 100%;
    border:none;
    padding:10px 50px;
    margin:10px;
}


.welcome-contant-section .first-welcome-para,
.second-welcome-para,
.third-welcome-para{
    font-size: var(--fontsize-6);
    list-style:square outside none;
     display:list-item; 
}


.welcome-img-section{
    width: 100%;
    margin: auto;
}

.welcome-img-section img{
    width:90%;
    margin: auto;
    display: block;
    border-radius: 20px;
}



}


/*  SERVICES CARD SECTION  */

.Services-card-section {
    width: 100%;
    display: block;
    text-align: center;
}


.service-card-header {
    padding: 40px 0px;

}

.service-card-header h1 {
    font-size: var(--fontsize-2);
}

.service-card-header u {
    padding: 5px 0px;
    border-bottom-style: double;
}

.Services-card-contant {
    background: var(--bg-white-alpha-1);
    width: auto;
    margin: 10px;
    display:flex;
    padding: 30px 0px;
    align-content: center;
    justify-content: space-evenly;
}

.Services-card {
    border: 1px solid black;
    padding: 10px 20px;
    display: block;
    text-align: center;
    background: linear-gradient(360deg, var(--bg-white-alpha-10), var(--bg-white-alpha-10));
    margin: 10px;
    transition: .6s;
}

.Services-card:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    transform: scale(1.02);
}


.Services-card img {
    width: 150px;
    margin: auto;
}

.Services-card h1 {
    text-align: center;
    font-size: var(--fontsize-4);
}

.Services-card p{
    font-size: var(--fontsize-7);
}

.Services-card span {
    color: red;
}

@media screen and (min-width: 600px) and (max-width: 900px) {

    .Services-card-section {
        width: 100%;
    }



    .service-card-header h1 {
        font-size: var(--fontsize-3);
    }


    .Services-card-contant {
        background: var(--bg-white-alpha-1);
        padding: 20px 50px;
        display:grid;
        gap:30px;
    }

    .Services-card {
        border: 1px solid black;
        padding: 10px 10px;
        display: block;
        text-align: center;
        background: linear-gradient(360deg, var(--bg-white-alpha-10), var(--bg-white-alpha-10));
        margin:0px;
    }

    .Services-card:hover {
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        transform: scale(1.02);
    }


    .Services-card img {
        width: 180px;
    }

    .Services-card h1 {
        text-align: center;
        font-size: var(--fontsize-3);
    }
}

@media screen and (min-width: 400px) and (max-width: 600px) {

    .Services-card-section {
        width: 100%;
    }



    .service-card-header h1 {
        font-size: var(--fontsize-5);
    }


    .Services-card-contant {
        background: var(--bg-white-alpha-1);
        padding: 20px 30px;
        display:grid;
        gap:30px;
    }


    .Services-card {
        border: 1px solid black;
        padding: 10px 10px;
        display: block;
        text-align: center;
        background: linear-gradient(360deg, var(--bg-white-alpha-10), var(--bg-white-alpha-10));
        margin: 0px;
    }

    .Services-card:hover {
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        transform: scale(1.02);
    }


    .Services-card img {
        width: 150px;
    }

    .Services-card h1 {
        text-align: center;
        font-size:var(--fontsize-3);
    }
}


@media screen and (min-width: 0px) and (max-width: 400px) {

    .Services-card-section {
        width: 100%;
    }



    .service-card-header h1 {
        font-size: var(--fontsize-3);
    }


    .Services-card-contant {
        background: var(--bg-white-alpha-1);
        padding: 20px 0px;
        display: grid;
    }

    .Services-card {
        border: 1px solid black;
        padding: 5px 10px;
        display: block;
        text-align: center;
        background: linear-gradient(360deg, var(--bg-white-alpha-10), var(--bg-white-alpha-10));
        margin: 10px;
    }

    .Services-card:hover {
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        transform: scale(1.02);
    }


    .Services-card img {
        width: 160px;
    }

    .Services-card h1 {
        text-align: center;
        font-size:var(--fontsize-4);
    }
}





/* our client slider  */






.clint-slider-bar{
    width: 100%;
    display:block;
    overflow: hidden;
    padding-bottom:40px;
}

.clint-slider-bar h1{
    text-align: center;
    padding:20px;
}


@keyframes move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.clint-slider-bar ul {
    animation: move 6s linear infinite;
    display: flex;
    gap:100px;
}


.slider-link img{
    display: block;
    float: left;
    width:  200px;
    height: 150px;
    object-fit:fill;
}













/* footer section   */



footer {
    width: 100%;
    display: block;
    background: var(--bg-white-alpha-1);
}


.footer-section-1 {
    padding: 40px 10px 30px 10px;
    display: flex;
    justify-content: space-around;
    font-size: var(--fontsize-7);
}

.fist-footer {
    padding-bottom: 0px;
}

.fist-footer li {
    padding-bottom: 7px;
}


.footer-list-6 h3 {
    padding-bottom: 20px;
}

.footer-list-6 i {
    font-size: var(--fontsize-4);
    gap: 0px;
    padding-bottom: 30px;
}


.footer-list-6 .fa-brands.fa-facebook-f {
    color: #1877F2;
}

.footer-list-6 .fa-brands.fa-instagram {
    color: #ff0000;
}

.footer-list-6 .fa-brands.fa-linkedin {
    color: #0A66C2;
}

.footer-list-6 .fa-brands.fa-twitter {
    color: #1DA1F2;
}


.footer-section-2 {
    display: block;
    font-size: var(--fontsize-7);
    background: var(--bg-white-alpha-1);
    text-align: center;
    color: var(--tex-black);
    font-weight: var(--weight-bold);
    padding-top: 20px;
    padding-bottom: 20px;
}




/*  scroll top custome css  */

#myBtn-fly {
    font-size: var(--fontsize-1);
    display: none;
    position: fixed;
    bottom: 0;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    color: var(--bg-blue-jeans);
    background: transparent;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    position: fixed;
    animation: myfirst 5s 2;
    animation-direction: alternate-reverse;
    animation-iteration-count: infinite;
    transition: .5s;
}




#myBtn-fly:hover {
    background: transparent;
    color: var(--bg-blue-jeans);
}


/* medaia quary custome  */

@media screen and (min-width: 0px) and (max-width: 700px) {

    .footer-section-1 {
        padding: 0px 30px;
        display: block;
        font-size: var(--fontsize-6);
    }

    .fist-footer {
        padding-bottom: 30px;
    }


    .footer-list-6 ul {
        gap: 40px;
        display: flex;
        margin: auto;
        justify-content: center;
    }

    .footer-section-2 {
        font-size: var(--fontsize-7);
        color: var(--tex-black);
        font-weight: var(--weight-medium);
        padding-top: 10px;
        padding-bottom: 0px;
    }


    #myBtn-fly {
        font-size: var(--fontsize-1);
        display: none;
        bottom: 8px;
        right: -200px;
        z-index: 99;
        border: none;
        outline: none;
        color: var(--bg-blue-jeans);
        background: transparent;
        cursor: pointer;
        padding: 10px;
        border-radius: 4px;
        transition: 0.5s;
        position: relative;
        transition: .5s;
    }





    #myBtn-fly:hover {
        background: transparent;
        color: var(--bg-blue-jeans);
    }
}