* {
    margin: 0;
    padding: 0;
}

:root {
    --Snigle-font: "Sniglet", cursive;
    --Rubik: "Rubik", cursive;
    --Patua: "Patua One", cursive;
    --Lobster: "Lobster", cursive;
    --light-black: "#2e2c2caf";
    /* --bggradient: linear-gradient(to bottom, #470342, #f104b9); */
    --bggradient: linear-gradient(to bottom, #3e3d3e, #969596, #edebed, #ffffff);
    --light-gray: rgba(255, 255, 255, 0.2);
}

body {
    font-family: montserrat;
}

html {
    scroll-behavior: smooth;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 1000;
    transition: all 0.2s ease-in-out;
    height: auto;
    background-color: transparent;
    text-align: center;
    line-height: 40px;
}

.header.active {
    /* background-color: #092c3d; */
    background-image: linear-gradient(30deg, #08001a, #1d0086, #1b00e6);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

.header.active a {
    color: #fff;
}

.header ul {
    line-height: 50px;
    list-style: none;
    display: flex;
    justify-content: center;
}

.header ul li a {
    text-decoration: none;
    margin: 0 25px;
    font-size: 22px;
    text-transform: uppercase;
    color: #9a9898;
    font-weight: 600;
}


/* .header ul li .logo {
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
} */


/* styles for banner area */

.banner {
    height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    background-image: url("6.png");
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.banner-text h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15vw;
    color: #fff;
}

#canvas1 {
    position: relative;
    top: -325px;
    left: 28px;
}

.banner-text h3 {
    font-family: Arial, Helvetica, sans-serif;
    margin-top: -480px;
    font-size: 4.75vw;
    color: #0342d6;
}

.banner-text p {
    font-size: 2vw;
    margin-top: 15px;
    color: #fff;
    text-transform: uppercase;
}

.banner-text a {
    text-decoration: none;
    /* background-color: orangered; */
    background-image: linear-gradient(30deg, rgb(0, 200, 255), rgb(22, 86, 189), rgb(23, 1, 41));
    color: #fff;
    display: inline-block;
    padding: 15px 25px;
    margin-top: 25px;
    border-radius: 50px;
    text-transform: uppercase;
}

.banner-text a:hover {
    background-image: linear-gradient(30deg, rgb(4, 1, 52), rgb(23, 0, 139), rgb(3, 209, 255));
    box-shadow: 0 0 20px 2px rgb(86, 217, 253);
    transition: 0.5s;
}

.banner:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: -1;
}


/* styles for abut area */

.about {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #e1e1e1;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 45px;
    font-family: russo one;
    text-align: center;
}

.about .section-header h2 {
    font-family: var(--Snigle-font);
}

.section-header p {
    width: 50%;
    margin: 15px auto;
    text-align: center;
    line-height: 1.9;
    font-size: 18px;
    text-align: justify;
    text-indent: 170px;
}

.single-about img {
    width: 50%;
    border-top: 6px solid rgb(0, 19, 104);
    border-bottom: 6px solid rgb(17, 0, 255);
    border-right: 6px solid rgb(0, 21, 253);
    border-left: 6px solid rgb(11, 4, 120);
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1), 0 0 10px 3px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.about-text h2 {
    font-size: 40px;
    margin-top: 35px;
}

.about-text p {
    width: 50%;
    margin: auto;
    padding: 35px 0;
    text-align: justify;
    white-space: 10px;
    word-spacing: 3px;
    line-height: 1.4;
    font-size: 22px;
    text-indent: 300px;
}

.about-text a {
    text-decoration: none;
    background-image: linear-gradient(30deg, rgb(255, 129, 129), red, rgb(83, 1, 1));
    color: #fff;
    display: inline-block;
    padding: 15px 25px;
    margin-top: 25px;
    border-radius: 50px;
    text-transform: uppercase;
}

.about-text a:hover {
    background-image: linear-gradient(30deg, rgb(83, 1, 1), red, rgb(255, 129, 129));
    box-shadow: 0 0 20px 2px rgb(255, 91, 91);
    transition: 0.5s;
}


/* styles for reviews area */

.reviews {
    padding: 60px 0;
    background-image: linear-gradient(30deg, #3b3b3b, #232323, #898989);
}

.reviews-content {
    display: flex;
}

.single-reviews h2 {
    text-transform: uppercase;
    margin: 25px 0;
    text-align: center;
    color: #b3b3b3;
    font-family: var(--Patua);
}

.reviews .section-header h2 {
    color: #efeeee;
    font-family: var(--Snigle-font);
}

.single-reviews p {
    line-height: 1.9;
    text-align: center;
    font-size: 18px;
    color: #858585;
    text-align: justify;
}

.reviews .section-header p {
    color: #d6d5d5;
    font-size: 18px;
    text-indent: 100px;
}

.single-reviews img {
    display: flex;
    margin-left: 25%;
    justify-content: center;
    align-items: center;
    width: 50%;
    border-top: 4px solid rgb(255, 153, 0);
    border-bottom: 4px solid rgb(255, 0, 0);
    border-right: 4px solid rgb(255, 0, 0);
    border-left: 4px solid rgb(255, 174, 0);
    border-radius: 50%;
}

.single-reviews {
    width: 31%;
    padding: 35px;
}


/* styles for services area */

.services {
    padding: 60px 0;
    background-image: linear-gradient(30deg, #3b3b3b, #929090, #212121);
}

.service-content {
    display: flex;
}

.single-service h2 {
    text-transform: uppercase;
    margin: 25px 0;
    text-align: center;
    font-family: var(--Patua);
    color: #d0cece;
    font-size: 18px;
}

.single-service a {
    color: white;
    text-transform: uppercase;
    margin: 25px 0;
    text-align: center;
    font-family: var(--Patua);
    color: #d0cece;
    font-size: 18px;
    text-decoration: none;
    ;
}

.single-service a:hover {
    color: yellow;
}

.services .section-header h2 {
    font-family: var(--Snigle-font);
    color: #e4e1e1;
}

.single-service p {
    line-height: 1.9;
    text-align: center;
    font-size: 18px;
    color: #cecbcb;
}

.services .section-header p {
    color: #c9c8c8;
    font-size: 18px;
}

.single-service img {
    width: 100%;
    border: 5px solid rgb(174, 174, 174);
}

.single-service {
    width: 31%;
    padding: 35px;
}


/* styles for contact area */

.single-contact {
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 65%;
    justify-content: center;
    align-items: center;
}

.contact {
    padding: 60px 0;
    background-color: #e1e1e1;
}

.contact .section-header h2 {
    font-family: var(--Snigle-font);
}

.single-contact input {
    width: 100%;
    height: 50px;
    margin-bottom: 30px;
    border: 2px solid #b2b2b2;
    border-bottom: 3px solid #ddd;
    border-radius: 20px;
    padding: 3px;
}

.single-contact textarea {
    width: 100%;
    border: none;
    border: 2px solid #b2b2b2;
    border-bottom: 3px solid #ddd;
    border-radius: 10px;
    padding: 3px;
    margin-top: 10px;
}

.single-contact a {
    text-decoration: none;
    background-image: linear-gradient(30deg, rgb(255, 129, 129), red, rgb(83, 1, 1));
    color: #fff;
    display: inline-block;
    padding: 15px 25px;
    margin-top: 25px;
    border-radius: 50px;
    text-transform: uppercase;
    margin: 10px 43%;
}

.single-contact a:hover {
    background-image: linear-gradient(30deg, rgb(83, 1, 1), red, rgb(255, 129, 129));
    box-shadow: 0 0 20px 2px rgb(255, 91, 91);
    transition: 0.5s;
}


/* styles for footer area */

.single-reviews a {
    color: #ffea00;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    font-size: 18px;
    background-color: #686868;
}

footer {
    background-image: linear-gradient(30deg, #08001a, #1d0086, #1b00e6);
    text-align: center;
    line-height: 70px;
    color: #fff;
}