html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

/* ! Section One Start  */

.sectionOne {
    margin-top: -50px;
    grid-template-columns: repeat(3, 1fr);
}

.sectionOne__middle--powerText {
    margin-top: -370px;
}

.sectionOne__middle--powerText2 {
    font-style: italic;
    font-weight: bold;
}

.sectionOne__right {
    margin-top: 200px;
    margin-left: -150px;
}

.sectionOne__right--btn {
    align-self: start;
}

/* Laptop screen */

@media (max-width: 1023px) {
    .sectionOne {
        margin-top: 0px;
    }
    
    .sectionOne__right {
        margin-top: 100px;
    }
    
}

/* Tablet screen */

@media (max-width: 767px) {
    .sectionOne {
        grid-template-columns: repeat(2,1fr);
    }

    .sectionOne__middle--powerText {
        margin: 0px;
    }

    .sectionOne__right {
        margin-left: 0px;
        margin-top: 10px;
        width: 200%;
    }
}

/* Mobile screen */

@media (max-width: 567px) {
    .sectionOne__right {
        width: 200%;
    }
}

/* ! Section One End  */

/* ! Section Two Start  */

.sectionTwo {
    display: grid;
    gap: 30px;
    margin-top: 15px;
    margin-bottom: 40px;

    position: relative;
}

.sectionTwo__cards {
    gap: 30px;
}

[class ^="sectionTwo__cards--"] {
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-1);
    border-style: solid;
    border-color: var(--color-purple-stroke);
    gap: 15px;
    background-image: linear-gradient(to bottom right, #130428, #251043, #38126D, #261045, #190634);
}

.sectionTwo__cardstitle{
    margin-left: -50%;
    margin-top: 8%;
}

.sectionTwo__cardsText{
    width: 200%;
}

.sectionTwo__btn {
    justify-self: center;
}

/* Laptop screen */

@media (max-width: 1023px) {
    .sectionTwo__cardstitle{
        margin-left: -20%;
    }
}

/* Tablet screen */

@media (max-width: 767px) {
    [class ^="sectionTwo__cards--"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectionTwo__cardstitle{
        margin-left: -50%;
        margin-top: 15%;
    }
}

/* Mobile screen */

@media (max-width: 567px) {
    .sectionTwo__cardstitle{
        width: 200%;
        margin-left: 0px;
        /* margin-top: 8%; */
    }

    [class ^="sectionTwo__cards--"] {
        grid-template-columns: repeat(1, 0.5fr);
    }
}


/* ! Section Two End  */

/* ! Section Three Start  */

.sectionThree {
    display: grid;
    justify-items: center;
    gap: 50px;
    margin-bottom: 20px;
}
.sectionThree__text {
    display: grid;
    justify-items: center;
    margin-top: 40px;
}

/* Mobile screen */

@media (max-width: 567px) {
    .sectionThree__text--1{
        margin-left: 65px;
    }

    .sectionThree__text--2 {
        margin-left: 25px;
        font-size: 120%;
        font-weight: 600;
    }
}

/* ! Section Three End  */

/* ! Section Four Start */

.sectionFour{
    display: grid;
    margin-top: 15px;
    margin-bottom: 40px;
    gap: 20px;
}

.sectionFour__projects {
    display: grid;
    gap: 80px;
}

.projectContent {
    display: grid;
    gap: 10px;
    position: relative;
}

.projectBox {
    position: relative;
}

[class ^= "blurBox--"] {
    max-width: 600px;
    height: 110px;

    background-image: linear-gradient(to bottom right, #693B93, #6EBFF4, #4690D4);
    filter: blur(40px) opacity(75%);
}

.projectText {
    position: absolute;
    top: 12px;
    left: 20px;
}

[class ^= "projectImg--"] {
    margin-top: 3%;
}

.bankRight {
    position: absolute;
    right: 0px;
    top: -60px;
}

/* Laptop screen */

@media (max-width: 1023px) {
    .projectContent {
        gap: 30px;
    }

    .blurBox--1 {
        height: 130px;
    }

    .blurBox--2 {
        height: 175px;
    }
    
}

/* Tablet screen */

@media (max-width: 767px) {
    .projectContent {
        order: 1;
    }

    .bankRight {
        position: unset;
    }

    .projectContent {
        gap: 10px;
    }


    [class ^= "blurBox--"] {
        height: 110px;
    }
    
}

/* ! Section Four End */

/* ! Section Five Start */

.sectionFive {
    display: grid;
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.contactBox {
    border-radius: 16px;
    box-shadow: 0px 0px 40px 5px rgba(255, 255, 255, 0.30);
    border: 5px solid white;
    border-image: linear-gradient(to right, var(--color-purple-accent), var(--color-hr-end)) 1 round;
}

.contactBox__greetings {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0px 20px;
}

.contactBox__sendMsg {
    margin: 0px 20px;
}

label {
    font-family: var(--font-1);
    font-size: var(--h5);
}

input, textarea {
    padding: 10px 0px 10px 10px;
    width: 100%;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.30);
}

#name, #email, #message {
    font-family: var(--font-1);
    font-weight: normal;
    color: var(--color-white-text1);
}

.submitBtn {
    align-self: start;
}

/* ! Section Five End */
