@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --primary-color: #367BF0;
    --body-color: #f9f9f9;
    --text-color: #636363;
    --text-color-dark: #242738;
    --white-color: #ffffff;
    --light-color: ;
    --font-family: Noto Sans;
    --dark-body-color: #010409;
    --dark-text-color: #eeeeec;
    --dark-text-color-dark: white;
    --dark-white-color: #16171d;
    --dark-light-color: ;
    --color-micro-blue: #2777ff;
    --color-micro-purple: #a400a4;
}

.dark-mode {
    --body-color: var(--dark-body-color);
    --text-color: var(--dark-text-color-dark);
    --text-color-dark: var(--dark-text-color-dark);
    --white-color: var(--dark-white-color);
    --light-color: var(--dark-light-color);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    font-family: var(--font-family), Cantarell, sans-serif;
    color: var(--text-color);
    background-color: var(--body-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-size: 16px;
    height: 100%;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: rgb(0, 0, 0);
    transition: all 0.3s ease-in-out;
}


.menu-icon.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-icon.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar {
    padding: 10px;
    width: 100%;
    background-color: var(--white-color);
    position: fixed;
    top: 0;
    font-family: NOTO sans;
    left: 0;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-logo a {
    color: var(--primary-color);
    font-family: NOTO sans;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color-dark);
    font-size: 1.2em;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.theme-switch {
    --toggle-size: 15px;
    --container-width: 5.625em;
    --container-height: 2.5em;
    --container-radius: 6.25em;
    --container-light-bg: #3D7EAE;
    --container-night-bg: #1D1F2C;
    --circle-container-diameter: 3.375em;
    --sun-moon-diameter: 2.125em;
    --sun-bg: #ECCA2F;
    --moon-bg: #C4C9D1;
    --spot-color: #959DB1;
    --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
    --stars-color: #fff;
    --clouds-color: #F3FDFF;
    --back-clouds-color: #AACADF;
    --transition: .5s cubic-bezier(0, -0.02, 0.4, 1.25);
    --circle-transition: .3s cubic-bezier(0, -0.02, 0.35, 1.17);
}

.theme-switch,
.theme-switch *,
.theme-switch *::before,
.theme-switch *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--toggle-size);
}

.theme-switch__container {
    width: var(--container-width);
    height: var(--container-height);
    background-color: var(--container-light-bg);
    border-radius: var(--container-radius);
    overflow: hidden;
    cursor: pointer;
    -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
    box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
}

.theme-switch__container::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    border-radius: var(--container-radius)
}

.theme-switch__checkbox {
    display: none;
}

.theme-switch__circle-container {
    width: var(--circle-container-diameter);
    height: var(--circle-container-diameter);
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: var(--circle-container-offset);
    top: var(--circle-container-offset);
    border-radius: var(--container-radius);
    -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: var(--circle-transition);
    -o-transition: var(--circle-transition);
    transition: var(--circle-transition);
    pointer-events: none;
}

.theme-switch__sun-moon-container {
    pointer-events: auto;
    position: relative;
    z-index: 2;
    width: var(--sun-moon-diameter);
    height: var(--sun-moon-diameter);
    margin: auto;
    border-radius: var(--container-radius);
    background-color: var(--sun-bg);
    -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
    box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
    -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    overflow: hidden;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.theme-switch__moon {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    background-color: var(--moon-bg);
    border-radius: inherit;
    -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
    box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
}

.theme-switch__spot {
    position: absolute;
    top: 0.75em;
    left: 0.312em;
    width: 0.75em;
    height: 0.75em;
    border-radius: var(--container-radius);
    background-color: var(--spot-color);
    -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
    width: 0.375em;
    height: 0.375em;
    top: 0.937em;
    left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
    width: 0.25em;
    height: 0.25em;
    top: 0.312em;
    left: 0.812em;
}

.theme-switch__clouds {
    width: 1em;
    height: 1em;
    background-color: var(--clouds-color);
    border-radius: var(--container-radius);
    position: absolute;
    bottom: -0.625em;
    left: 0.312em;
    -webkit-box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
    box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
    -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
    position: absolute;
    color: var(--stars-color);
    top: -100%;
    left: 0.312em;
    width: 2.75em;
    height: auto;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

/* actions */

.theme-switch__checkbox:checked+.theme-switch__container {
    background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__circle-container {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__circle-container:hover {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em)
}

.theme-switch__circle-container:hover {
    left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__moon {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__clouds {
    bottom: -4.062em;
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__stars-container {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


.home {
    font-family: NOTO sans;
    /* padding: 15em 10em; */
    display: flex;
    height: 100vh;
    color: var(--text-color-dark);
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
}

.home .max-width {
    width: 100%;
    display: flex;
}

.home .max-width .row {
    margin-right: 0;
}

.home .home-content .text-1 {
    font-size: 25px;
}

.home .home-content .text-2 {
    font-size: 100px;
    font-family: NOTO sans;
    font-weight: 700;
    margin-left: -3px;
}

.home .home-content .text-3 {
    font-size: 40px;
    margin: 5px 0;
}

.home .home-content .text-3 span {
    color: crimson;
    font-weight: 500;
}

.classbox {
    position: relative;
    width: 200px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 25px;
    margin-top: 45px;
    cursor: pointer;
}

.classbox::before {
    content: '';
    position: absolute;
    width: 68px;
    height: 500%;
    border-radius: 0;
    background: linear-gradient(#00ccff, #d400d4);
    animation: animate-rotate 4s linear infinite;

}

.classbox::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #0e1538;
    border-radius: 20px;
}

@keyframes animate-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.classbox a {
    text-decoration: none;
    color: #fff;
    font-size: 2em;
    z-index: 10;
    cursor: pointer;
}

.typing {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
}

.cursor,
.cursor-2 {
    display: inline-block;
    width: 5px;
    height: 1em;
    background: crimson;
    margin-left: 2px;
    visibility: visible;
    animation: none;
    vertical-align: middle;
}

.cursor-3 {
    display: inline-block;
    width: 5px;
    height: 1em;
    background: white;
    margin-left: 2px;
    visibility: visible;
    animation: none;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.cursor.blink,
.cursor-2.blink,
.cursor-3.blink {
    animation: blink 0.8s infinite;
}

.about .title::after {
    content: "who i am";
}

.about .about-content .left {
    width: 45%;
}

.about .about-content .left img {
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.about .about-content .right {
    width: 55%;
}

.about .about-content .right .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about .about-content .right .text span {
    color: crimson;
}

.about .about-content .right p {
    text-align: justify;
}

.about .about-content .right a {
    display: inline-block;
    /* background: crimson; */
    color: crimson;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: all 0.3s ease-in-out;


}

.about .about-content .right a:hover {
    color: white;
    background: crimson;

}

/* all similar content styling codes */
section {
    padding: 100px 0;
}

.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

.about,
.services,
.skills,
.teams,
.contact,
footer {
    font-family: 'Poppins', sans-serif;
}

.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content {
    display: flex;
    color: var(--text-color-dark);
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

section .title {
    position: relative;
    text-align: center;
    font-size: 40px;
    color: var(--text-color-dark);
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

section .title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: var(--text-color-dark);
    transform: translateX(-50%);
}

section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: crimson;
    padding: 0 5px;
    background: var(--body-color);
    transform: translateX(-50%);
}

hr {
    background-color: #fff;
    padding: 0;
    margin: 80px;
}

hr.hr-1 {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

/* services section styling */
.services, .teams{
    color:var(--body-color);
    background: var(--body-color);
}
.services .title::before,
.teams .title::before{
    background: var(--text-color-dark);
}
.services .title::after,
.teams .title::after{
    background: var(--body-color);
    content: "what i provide";
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0;
    background: var(--body-color);
    cursor: pointer;
}

.container .box {
    position: relative;
    width: 320px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 30px;
    transition: 0.5s;
}

.container .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    transition: 0.5s;
    transform: skewX(15deg);
}

.container .box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    transition: 0.5s;
    transform: skewX(15deg);
    filter: blur(30px);
    transition: 0.5s;
}

.container .box:hover:before,
.container .box:hover:after {
    transform: skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);
}

.container .box:nth-child(1):before,
.container .box:nth-child(1):after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(2):before,
.container .box:nth-child(2):after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(3):before,
.container .box:nth-child(3):after {
    background: linear-gradient(315deg, #4dff03, #00d0ff);
}

.container .box:nth-child(4):before,
.container .box:nth-child(4):after {
    background: linear-gradient(315deg, #eecda3, #ef629f);
}

.container .box:nth-child(5):before,
.container .box:nth-child(5):after {
    background: linear-gradient(-315deg, #c33764, #1d2671);
}

.container .box:nth-child(6):before,
.container .box:nth-child(6):after {
    background: linear-gradient(315deg, #36d1dc, #5b86e5);
}

.container .box .content {
    position: relative;
    left: 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10ox);
    z-index: 1;
    transition: 0.5s;
    color: #fff;

}

.container .box:hover .content {
    left: -25px;
    padding: 60px 40px;
}

.container .box .content h2 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 10px;
}

.container .box .content p {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.4em;
    padding: 12px;
}

.container .box .content a {
    display: inline-block;
    font-size: 1.1em;
    color: #111;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 5px;
}

.container .box span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    pointer-events: none;

}

.container .box span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    animation: fly 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 05);
}

.container .box:hover #first::before {
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/pen_tool.png") no-repeat;
    background-size: 100px;
    background-position: center;
    filter: invert(100%);
}

.container .box:hover #second::before {
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/code.png") no-repeat;
    background-size: 100px;
    background-position: center;
    filter: invert(100%);
}

.container .box:hover #third::before {
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/search.png") no-repeat;
    background-size: 100px;
    background-position: center;
    filter: invert(100%);
}

.container .box:hover #fourth::before {
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/video_camera.png") no-repeat;
    background-size: 100px;
    background-position: center;
    filter: invert(100%);
}

.container .box:hover #fifth::before {
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/grow.png") no-repeat;
    background-size: 100px;
    background-position: center;
    filter: invert(100%);
}

.container .box:hover #sixth::before {
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/android.png") no-repeat;
    background-size: 100px;
    background-position: center;
    filter: invert(100%);
}

.container .box span::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    animation: fly 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 05);
    animation-delay: -1s;
}

.container .box:hover #sixth::after {
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/android1.png") no-repeat;
    background-size: 100px;
    background-position: center;
}

.container .box:hover #fifth::after {
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/grow1.png") no-repeat;
    background-size: 100px;
    background-position: center;
}

.container .box:hover #fourth::after {
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/video_camera1.png") no-repeat;
    background-size: 100px;
    background-position: center;
}

.container .box:hover #third::after {
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/search1.png") no-repeat;
    background-size: 100px;
    background-position: center;
}

.container .box:hover #second::after {
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/code1.png") no-repeat;
    background-size: 100px;
    background-position: center;
}

.container .box:hover #first::after {
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background: url("img/pen_tool1.png") no-repeat;
    background-size: 100px;
    background-position: center;
}

@keyframes fly {

    0%,
    100% {
        transform: translateY(10px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* skills section styling */

.skills .title::after {
    content: "what i know";
}

.skills .skills-content .column {
    width: calc(50% - 30px);
}

.skills .skills-content .left .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.skills .skills-content .left p {
    text-align: justify;
}

.skills .skills-content .left a {
    display: inline-block;
    /* background: crimson; */
    color: crimson;
    font-size: 18px;
    font-weight: 500;
    padding: 4px 8px;
    margin-top: 10px;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: 0.3s ease-in-out;
}

.skills .skills-content .left a:hover {
    color: white;
    background: crimson;
}

.skills .skills-content .left p #link {
    border: none;
    text-decoration: none;
    color: crimson;
}

.skills .skills-content .left p #link:hover {
    color: crimson;
    /* text-transform: uppercase; */
    text-decoration: underline;
    background: none;
}

.our-skills {
    --white: hsl(0, 0%, 100%);
    --black: hsl(240, 15%, 9%);
    --paragraph: hsl(0, 0%, 83%);
    --line: hsl(240, 9%, 17%);
    --primary: hsl(266, 92%, 58%);

    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    padding: 1rem;
    width: 19rem;
    background-color: var(--body-color);
    background-image: radial-gradient(at 88% 40%,
            rgba(18, 18, 221, 0.364) 0px,
            transparent 85%),
        radial-gradient(at 49% 30%, rgb(251, 0, 197) 0px, transparent 85%),
        radial-gradient(at 14% 26%, rgb(85, 44, 138) 0px, transparent 85%),
        radial-gradient(at 0% 64%, hsla(263, 93%, 56%, 1) 0px, transparent 85%),
        radial-gradient(at 41% 94%, hsla(284, 100%, 84%, 1) 0px, transparent 85%),
        radial-gradient(at 100% 99%, hsla(306, 100%, 57%, 1) 0px, transparent 85%);

    border-radius: 1rem;
    box-shadow: 0px -16px 24px 0px rgba(255, 255, 255, 0.25) inset;
    padding: 10px;
    width: 500px;
}

.our-skills .card__border {
    overflow: hidden;
    pointer-events: none;

    position: absolute;
    z-index: -10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: calc(100% + 8px);
    height: calc(100% + 8px);
    background-image: linear-gradient(0deg,
            hsl(0, 0%, 100%) -50%,
            hsl(0, 0%, 40%) 100%);

    border-radius: 1rem;
}

.our-skills .card__border::before {
    content: "";
    pointer-events: none;

    position: fixed;
    z-index: 200;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%), rotate(0deg);
    transform-origin: left;

    width: 200%;
    height: 10rem;
    background-image: linear-gradient(0deg,
            hsla(0, 0%, 100%, 0) 0%,
            hsl(277, 95%, 60%) 40%,
            hsl(277, 95%, 60%) 60%,
            hsla(0, 0%, 40%, 0) 100%);

    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.our-skills .skill {
    margin: 10px 10px;
}

.skill p {
    margin: 0;
    color: var(--text-color-dark);
    font-size: 22px;
}

.skill .progress-line {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.skill .progress-line::before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--bg);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--bg), 0 0 10px var(--bg);
    z-index: 1;
    animation: circle-animate 2s forwards ease-out;
    opacity: 0;
}

@keyframes circle-animate {
    25% {
        left: 0;
        opacity: 1;
    }

    100% {
        opacity: 1;
        left: calc(var(--wd) - 8px);
    }
}

.skill .progress-line span {
    position: relative;
    display: block;
    height: 100%;
    width: 0;
    background: var(--bg);
    border-radius: 8px;
    box-shadow: 0 0 5px var(--bg);
    animation: span-animate 2s forwards ease-out;
}

@keyframes span-animate {
    25% {
        width: 0;
    }

    100% {
        width: var(--wd);
    }
}

.skill .progress-line span::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top-color: var(--bg);
    top: -9px;
    right: -6px;
    opacity: 0;
    animation: hint 0.2s forwards 2.2s;
}

.skill .progress-line span::after {
    position: absolute;
    content: var(--tx);
    color: var(--text-color-dark);
    top: -30px;
    right: -16px;
    background: var(--bg);
    padding: 3px 6px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 0 5px var(--bg);
    opacity: 0;
    animation: hint 0.2s forwards 2.2s;
}

@keyframes hint {
    to {
        transform: translateY(-5px);
        opacity: 1;
    }
}


.skill svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

/* Zoom effect on hover */
.skill:hover svg {
    transform: scale(1.3);
}

/* Styling for the progress line and text */
.skill .progress-line {
    margin-top: 10px;
    position: relative;
    width: 100%;
    height: 8px;
    background: var(--bg);
    transition: transform 0.3s ease;
}

.skill:hover .progress-line {
    transform: scale(1.02);
}

.skill .progress-line span {
    display: block;
    height: 100%;
    width: var(--wd);
    background: var(--bg);
    position: relative;
    transition: transform 0.3s ease;
}

.skill:hover .progress-line span {
    transform: scale(1.02);
}

.skill p {
    margin-top: 12px;
    font-size: 14px;
    font-weight: bold;
    transition: transform 8s ease-in-out;
}

.skill:hover p {
    margin-top: 6px;
    font-weight: bolder;
    font-size: 18px;
    transition: transform 0.8s ease-in-out;
}

/* projects section styling */
.teams .title::after {
    content: "Projects Done";
}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.box {
    background: var(--body-color);
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
}

.box p {
    color: var(--text-color-dark);
    font-size: 20px;
    font-weight: 400;
    margin: 10px 0 7px 0;

}

.text {
    color: var(--text-color-dark);
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

.box img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    background: white;
    border-radius: 50%;
    border: 5px solid crimson;
    transition: all 0.3s ease;
}

.box img:hover {
    border-color: #fff;
}

.navigation {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
}

.next {
    border: none;
    background: red;
    color: white;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 20px 40px 40px 20px;
    transition: background 0.3s;
}

.prev {
    border: none;
    background: red;
    color: white;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 40px 20px 20px 40px;
    transition: background 0.3s;
}

.prev:hover,
.next:hover {
    background: crimson;
    color: var(--dark-body-color);
}

.box .project {
    display: inline-block;
    color: crimson;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: 0.3s ease-in-out;
}

.box .project:hover {
    color: white;
    background: crimson;
}

.pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.pagination .bullet {
    width: 12px;
    height: 12px;
    background: crimson;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.pagination .bullet.active {
    background: rgb(195, 195, 195);
    border-radius: 20px 20px 5px 5px;
}

/* contact section styling */
input,
textarea {
    caret-color: red;
}

.contact .title::after {
    content: "get in touch";
}

.contact .contact-content {
    padding-bottom: 100px;
}

.contact .contact-content .column {
    width: calc(50% - 30px);
}

.contact .contact-content .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left p {
    text-align: justify;
}

.contact .contact-content .left .icons {
    margin: 10px 0;
}

.contact .contact-content .row {
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .row .info {
    margin-left: 30px;
}

.contact .contact-content .row i {
    font-size: 25px;
    color: crimson;
}

.contact .contact-content .info .head {
    font-weight: 500;
}

.contact .contact-content .info .sub-title {
    color: var(--text-color-dark);
    font-weight: 700;
}

.form {
    display: flex;
    flex-direction: column;
    align-self: center;
    font-family: inherit;
    gap: 10px;
    padding-inline: 2em;
    padding-bottom: 0.4em;
    background-color: #171717;
    border-radius: 20px;
}

.form-heading {
    text-align: center;
    margin: 2em;
    color: #a200ff;
    font-size: 1.2em;
    background-color: transparent;
    align-self: center;
}

.form-field {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    border-radius: 10px;
    padding: 0.6em;
    border: none;
    outline: none;
    color: white;
    background-color: #222222;
    box-shadow: inset 2px 5px 10px rgb(15, 15, 15);
}

.input-field {
    font-family: NOTO sans;
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #ffffff;
    padding-inline: 1em;
}

.sendMessage-btn {
    cursor: pointer;
    margin-bottom: 3em;
    padding: 1em;
    border-radius: 10px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #d400ff;
    font-weight: bold;
    outline: 1px solid #a200ff;
    transition: all ease-in-out 0.3s;
}

.sendMessage-btn:hover {
    transition: all ease-in-out 0.3s;
    background-color: #d400ff;
    color: var(--text-color-dark);
    cursor: pointer;
    box-shadow: inset 2px 5px 10px rgb(125 33 142);
}

.form-card1 {
    background-image: linear-gradient(163deg, #22ffcb 0%, #f412ce 100%);
    border-radius: 22px;
    transition: all 0.3s;
}

.form-card1:hover {
    box-shadow: 0px 0px 30px 1px rgba(7, 139, 255, 0.3);
}

.form-card2 {
    border-radius: 0;
    transition: all 0.2s;
}

.form-card2:hover {
    transform: scale(0.98);
    border-radius: 20px;
}

/* -----------Footer------------- */

/* Default styles (above 1200px) */
.footer {
    position: relative;
    width: 100%;
    background: #3586ff;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer h2 {
    margin-bottom: 12px;
    color: white;
    font-size: 2em;
}

.social-icon svg {
    width: 40px;
    height: 40px;
}

.social-icon,
.menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
    list-style: none;
}

.social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

.social-icon__link:hover {
    transform: translateY(-10px);
}

.menu__link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
}

.menu__link:hover {
    opacity: 1;
}

footer p {
    color: white;
    text-align: center;
    margin-top: 15px;
    font-size: 1.1em;
}

footer p a {
    text-decoration: none;
    color: white;
    font-size: 1em;
    transition: 0.5s ease-in-out;
}

footer p a:hover {
    text-decoration: underline;
    color: white;
    font-size: 1.2em;
    transform: rotateX(10px);
}

.wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("https://i.ibb.co/wQZVxxk/wave.png");
    background-size: 1000px 100px;
}

.wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
}

.wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
}

@keyframes animateWaves {
    0% {
        background-position-x: 1000px;
    }
    100% {
        background-positon-x: 0px;
    }
}

@keyframes animate {
    0% {
        background-position-x: -1000px;
    }
    100% {
        background-positon-x: 0px;
    }
}

/* Medium screens (768px to 1199px) */
@media (max-width: 1199px) {
    .footer {
        padding: 20px 30px;
    }
    footer h2 {
        font-size: 1.8em;
    }
    .social-icon__link {
        font-size: 1.8rem;
        margin: 0 8px;
    }
    .menu__link {
        font-size: 1rem;
        margin: 0 8px;
    }
    footer p {
        font-size: 1em;
    }
    .menu-icon{
        margin: 0;
    }
}

/* Small screens (480px to 767px) */
@media (max-width: 767px) {
    .footer {
        padding: 20px 15px;
    }
    footer h2 {
        font-size: 1.6em;
    }
    .social-icon__link {
        font-size: 1.5rem;
        margin: 0 6px;
    }
    .menu__link {
        font-size: 0.9rem;
        margin: 0 10px;
    }
    footer p {
        font-size: 0.9em;
    }
    .menu-icon{
        margin: 0;
    }
}

/* Extra small screens (below 480px) */
@media (max-width: 479px) {
    .footer {
        padding: 20px 10px;
    }
    footer h2 {
        font-size: 1.4em;
    }
    .social-icon__link {
        font-size: 1.2rem;
        margin: 0 5px;
    }
    .menu__link {
        font-size: 0.8rem;
        margin: 0 5px;
        padding: 0 2px;
    }
    footer p {
        font-size: 0.8em;
    }
    .menu-icon{
        margin:0;
    }
}


/* pr loader design  */
#preloader {
    /* background: url("img/e3a.gif") no-repeat center; */
    background-size: 15%;
    filter: invert(100%);
    background-color: #fff;
    height: 100vh;
    width: 100%;
    position: fixed;
    cursor: pointer;
    z-index: 1000;
    /* border-radius: 12px; */
}

/* responsive media query start */
@media (max-width: 1104px) {
    .about .about-content .left img {
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }
}

@media (max-width: 947px) {
    .menu-btn {
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before {
        content: "\f00d";
    }

    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .navbar .menu.active {
        left: 0;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }

    .home .home-content .text-2 {
        font-size: 70px;
    }

    .home .home-content .text-3 {
        font-size: 35px;
    }

    .home .home-content a {
        font-size: 23px;
        padding: 10px 30px;
    }

    .max-width {
        max-width: 930px;
    }

    .about .about-content .column {
        width: 100%;
    }

    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }

    .about .about-content .right {
        flex: 100%;
    }

    .services .serv-content .card {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .skills .skills-content .column,
    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        margin: 0;
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--white-color);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .nav-item .nav-link {
        padding: 10px 0;
        display: block;
    }

    .nav-menu.active {
        display: flex;
    }
}


@media (max-width: 690px) {
    .max-width {
        padding: 0 auto;
    }
    .home .home-content .text-1 {
        font-size: 20px;
    }

    .home .home-content .text-2 {
        font-size: 50px;
    }
    .home .home-content .text-3 {
        font-size: 32px;
    }

    .home .home-content a {
        font-size: 20px;
    }

    .classbox {
        width: 140px;
        height: 70px;
    }
    .classbox::before {
        width: 35px;
        height: 500%;
    }

    .services .serv-content .card {
        width: 100%;
    }
    .form-card1{
        margin: auto;
    }
    .menu-icon{
        margin: 0;
    }
}

@media (max-width: 575.98px) {
    .home .home-content .text-2 {
        font-size: 50px;
    }

    .home .home-content .text-3 {
        font-size: 27px;
    }

    .about .about-content .right .text,
    .skills .skills-content .left .text {
        font-size: 19px;
    }

    .contact .right form .fields {
        flex-direction: column;
    }

    .contact .right form .name,
    .contact .right form .email {
        margin: 0;
    }

    .right form .error-box {
        width: 150px;
    }

    .scroll-up-btn {
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
    .form-card1{
        margin: auto;
    }
    .menu-icon{
        margin: 0;
    }
}

@media (max-width: 500px) {

    .max-width{
        padding: 0 auto;
    }
    section .title{
        padding-bottom: 50px;
    }
    .home .home-content .text-1 {
        font-size: 18px;
    }
    .home .home-content .text-2 {
        font-size: 35px;
    }

    .home .home-content .text-3 {
        font-size: 20px;
    }

    .about .about-content .right .text,
    .skills .skills-content .left .text {
        font-size: 19px;
    }

    .contact .right form .fields {
        flex-direction: column;
    }

    .contact .right form .name,
    .contact .right form .email {
        margin: 0;
    }

    .right form .error-box {
        width: 150px;
    }

    .scroll-up-btn {
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
    .form-card1{
        margin: auto;
    }
    .menu-icon{
        margin: 0;
    }
}

