@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

:root {
    --main-color: aqua;
}

.cursor-dot{
    width: 10px;
    height: 10px;
    background: #fff;
}
.cursor-outline{
    width: 30px;
    height: 30px;
    border: 1.5px solid #fff;
    transition: transform 0.3s ease;
}

.cursor-dot,
.cursor-outline{
    position: fixed;
    top: 0;
    left: 0;
    border-radius:50%;
    z-index: 999;
    transform: translate(-50% , -50%);
    pointer-events: none;
}


::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #151C22;
}
input, textarea,
.btn:focus {
    outline: none !important;
    box-shadow: none !important;

}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    margin: 0px;
    padding: 0px;
}

p {
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0px 0px 20px;
    text-transform: capitalize;
}

a {
  text-decoration: none !important;
  color: #ffffff;
  transition: all 0.4s ease-out;
}

ul,
ol {
    padding: 0px;
    margin: 0px;
}



/* header css */
.header {
    padding: 20px;
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 999;
    transition: color 0.4s ease-out;
}

.header .navbar {}

.header .navbar .navbar-brand {}

.header .navbar .navbar-brand img {
    width: 170px;
}

.header .navbar .nav-list {
    gap: 35px;
}

.header .navbar .nav-list .nav-item {}

.header .navbar .nav-list .nav-item .nav-link {
    position: relative;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none !important;
    color: #ffffff;
    transition: color 0.4s ease-out;
}
.header .navbar .nav-list .nav-item .nav-link:hover{
    color: var(--main-color);
    text-decoration: underline !important;
}
.header .navbar .nav-list .nav-item .nav-link::after {
    content: '';
    position: absolute;
    left: 8px;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: var(--main-color);
    transition: width 0.4s ease-out;
}

.header .navbar .nav-list .nav-item .nav-link:hover::after {
    width: 40%;
}

/* header css */
/* banner css */
.banner-sec {
    position: relative;
    overflow: hidden;
    padding: 250px 0px 0px;
}

.banner-sec .banner-left {}

.banner-sec .banner-left h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    margin: 0px 0px 30px;
}

.banner-sec .banner-left h2 {
    font-size: 60px;
    line-height: 70px;
    margin: 0px 0px 29px;
}

.banner-sec .banner-left h2 span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 70px;
    color: var(--main-color);
}

.banner-sec .banner-left p {
    margin: 0px 0px 40px;
}

.banner-sec .banner-left .btn-hire {
    background: var(--main-color);
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 8px 30px;
    border-radius: 8px;
    border: 1px solid #000;
}

.banner-sec .banner-center {
    z-index: 1;
    overflow: hidden;
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    border-radius: 0 0 580px 565px;
}

.banner-sec .banner-right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.banner-sec .banner-right .box {
    width: 280px;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 40px 40px;
}

.banner-sec .banner-right .progress-box {
    border-bottom: 1px solid #fff;
    margin: 0px 0px 30px;
}

.banner-sec .banner-right .progress-box h3 {
    font-size: 50px;
    color: var(--main-color);
}

.banner-sec .banner-right .progress-box h3::before {}

.banner-sec .banner-right .progress-box p {}

/* banner css */

/* about-sec css */
.about-sec {
    padding: 100px 0px 20px;
    overflow: hidden;
}

.about-sec .year {
    background: #1616169e;
    width: 400px;
    text-align: center;
    box-shadow: 0px 0px 16px #80808073;
    border-radius: 10px;
    padding: 65px 40px;
    margin: 0px 0px 40px;
}

.about-sec .year h2 {
    font-size: 60px;
}

.about-sec .year h5 {
    font-size: 45px;
    line-height: 50px;
}

.about-sec .project {
    background: #1616169e;
    width: 400px;
    text-align: center;
    box-shadow: 0px 0px 16px #80808073;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.about-sec .project .main-img {
    height: 80px;
    width: 80px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-sec .project .main-img img {}

.about-sec .project .txt {
    text-align: left;
}

.about-sec .project .txt h2 {}

.about-sec .project .txt p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.about-sec .about-text {}

.head h6 {
    font-size: 25px;
    color: var(--main-color);
    line-height: 35px;
    margin: 0px 0px 15px;
}

.head h2 {
    font-size: 53px;
    margin: 0px 0px 20px;
}

.head p {}

.about-sec .about-text .bussines {
    background: #1616169e;
    box-shadow: 0px 0px 16px gray;
    border-radius: 10px;
    padding: 34px;
    margin: 0px 0px 60px;
}

.about-sec .about-text .bussines .head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.about-sec .about-text .bussines .head .main-img {
    height: 50px;
    width: 50px;
    background: blueviolet;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-sec .about-text .bussines .head .main-img img {}

.about-sec .about-text .bussines .head h2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 25px;
}

.about-sec .about-text .bussines p {}

.btn-about {
    background: var(--main-color);
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 400;
    padding: 15px 30px;
    border-radius: 8px;
    border: 1px solid #000;
}



.about-sec .about-text .languges{display: grid;grid-template-columns: repeat(2,1fr);gap: 10px;}

.about-sec .about-text .items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.about-sec .about-text .items p {
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    cursor: pointer !important;
    border: 1.5px solid #fff;
    transition: all .4s ease-in-out;
}
.about-sec .about-text .items p:hover{
    border: 1.5px solid var(--main-color);
    color: #fff;
    background: transparent;
}
/* about-sec css */

/* skill-sec CSS */

.skill-sec {
    padding: 100px 0px 0px;
    overflow: hidden;
}

.skill-sec .head {}

.skill-sec .head h2 {
    font-size: 40px;
    margin: 0px 0px 60px;
}

.skill-sec .html {
    margin: 0px 0px 50px;
}

.skill-sec .html ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    list-style: none;
    margin: 0px 0px 15px;
}
.skill-sec .html ul li{}
.skill-sec .html ul li p{
    margin: 0;
}
.skill-sec .html ul li h5{
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.skill-sec .html:hover .percentage{
    opacity: 1;
}

.skill-sec .html .line {
    height: 6px;
    width: 95%;
    background: #fff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.skill-sec .html .line::before {
    content: '';
    position: absolute;
    background: var(--main-color);
    top: 0;
    bottom: 0;
    height: 100%;
    width: 0%;
    border-radius: 10px;
    transition: width 0.5s ease;
}
.skill-sec .html:hover .line::before{
    width: 85%;
}
.skill-sec .html.css:hover .line::before{
    width: 65%;
}
.skill-sec .html.javascript:hover .line::before{
    width: 45%;
}
.skill-sec .html.tailwindcss:hover .line::before{
    width: 75%;
}
.skill-sec .html.nextjs:hover .line::before{
    width: 45%;
}


/* testimonial-sec */
.testimonial-sec {
    padding: 100px 0px 0px;
}

.testimonial-sec .head {
    text-align: center;
    margin: 0px 0px 80px;
}

.testimonial-sec .head h6 {}

.testimonial-sec .head h2 {}

.testimonial-sec .head p {
    width: 54%;
    margin: 0 auto 0px;
}

.testimonial-sec .box-testi {
    border: 2px solid #fff;
    padding: 60px 40px 40px;
    border-radius: 15px;
    max-width: 100%;
    transition: all 0.4s ease-in-out;
}

.testimonial-sec .box-testi .ul-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    list-style: none;
    margin: 0px 0px 30px;
}

.testimonial-sec .box-testi .ul-side li {}

.testimonial-sec .box-testi .ul-side li .img-name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.testimonial-sec .box-testi .ul-side li .img-name .main-img {
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-sec .box-testi .ul-side li .img-name .main-img img {
    width: 70px !important;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-sec .box-testi .ul-side li .img-name h5 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    line-height: 26px;
}

.testimonial-sec .box-testi .ul-side li .img-name h5 span {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #9f9f9f;
}

.testimonial-sec .box-testi .ul-side .star {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.testimonial-sec .box-testi .ul-side .star i {
    color: var(--main-color);
}

.testimonial-sec .box-testi p {}

.testimonial-sec .owl-item.active.center {
    transform: scale(1.1);
}

.testimonial-sec .owl-item.active {
    transform: scale(0.8);
    transition: all 0.5s ease-in-out;
    padding: 40px 0;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    background: #fff;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
}

.owl-dot.active span {
    background: #ff9800;
}

/* testimonial-sec */

/* education-sec */
.education-sec {
    padding: 100px 0px 0px;
    overflow: hidden;
}

.education-sec .head {
    text-align: center;
    margin: 0px 0px 70px;
}

.education-sec .head p {
    width: 60%;
    margin: 0 auto;
}

.education-sec .box {
    background: #1f1f1fbf;
    padding: 40px 20px;
    border-radius: 20px;
    margin: 40px 0px 0px;
}

.education-sec .box h3 {
    font-size: 20px;
    margin: 0px 0px 20px;
    font-weight: 500;
}

.education-sec .box h4 {
    font-size: 20px;
    margin: 0px 0px 20px;
}

.education-sec .box p {}

/* education-sec */

/* experiences-sec */
.experiences-sec {
    padding: 50px 0px 0px;
    overflow: hidden;
}

.experiences-sec .experiences {}

.experiences-sec .experiences h5 {
    font-size: 40px;
    margin: 0px 0px 40px;
}

.experiences-sec .experiences .head {
    margin: 0px 0px 50px;
}

.experiences-sec .experiences .head h6 {
    margin: 0px 0px 5px;
}

.experiences-sec .experiences .head h2 {
    font-size: 35px;
    margin: 0px 0px 10px;
}

.experiences-sec .experiences .head h3 {
    margin: 0px 0px 30px;
    font-size: 24px;
    font-weight: 500;
}

.experiences-sec .experiences .head p {}

.experiences-sec .main-img {}

.experiences-sec .main-img img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 30px;
}
/* experiences-sec */

/* content-sec */
.content-sec{
    padding: 100px 0px;
    overflow: hidden;
}
.content-sec .main-box{
    background-image: linear-gradient(to right, #2f2d2d 0%, black 100%);
    background-blend-mode: multiply;
    padding: 40px 40px;
    border-radius: 25px;
    border: 2px solid #fff;
}
.content-sec .main-box .head{}
.content-sec .main-box .head h2{
    font-size: 60px;
    line-height: 65px;
}
.content-sec .main-box .contact{
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 25px;
}
.content-sec .main-box .contact li{
}
.content-sec .main-box .contact li a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.content-sec .main-box .contact li a i{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #555;
    font-size: 20px;
    color: #fff;
    transition: all .4s ease-in-out
}
.content-sec .main-box .contact li a i:hover{
    border: 2px solid var(--main-color);
    color: var(--main-color);
}
.content-sec .main-box .contact li a p{
    margin: 0;
    font-size: 20px;
    line-height: 30px;
}
.content-sec .main-box .contact li a p:hover{
    color: var(--main-color);
}

.content-sec .main-box .contact li a p span{
    display: block;
    font-size: 17px;
    color: aqua;
}

.content-sec .main-box .form{}
.content-sec .main-box .form .submit-btn{
    background: var(--main-color);
    font-size: 20px;
    padding: 10px 63px;
    border-radius: 100px;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
}
.content-sec .main-box .form h2{
    font-size: 40px;
    margin: 0px 0px 25px;
}
.content-sec .main-box .form .input-group{
    margin: 0px 0px 30px;
}
.content-sec .main-box .form .input-group .input-box{
    height: 60px;
    background: transparent;
    border-radius: 8px;
    border: 1px solid #fff;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
}
.content-sec .main-box .form .input-group .textarea-box{
    background: transparent;
    border-radius: 8px;
    border: 1px solid #fff;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
}
/* content-sec */

/* project-sec */
.project-sec{
    padding: 100px 0px 0px;
    overflow: hidden;
}
.project-sec .head{
    text-align: center;
}
.project-sec .head p{
    margin: 0px auto 80px;
    width: 60%;
}
.project-sec .head h2{}
.project-sec .head h6{}
.project-sec .projext-box{
    background: #232222;
    padding: 20px 20px 40px;
    border-radius: 15px;
    margin: 0px 0px 30px;
}
.project-sec .projext-box .main-img{
    margin: 0px 0px 40px;
}
.project-sec .projext-box .main-img img{
    width: 100%;
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
}
.project-sec .projext-box ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}
.project-sec .projext-box ul li{}
.project-sec .projext-box ul li h2{
    font-size: 35px;
}
.project-sec .projext-box ul li a{
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    color: #fff;
}
/* project-sec */

/* footer  */
.footer {
    padding: 100px 0px;
    overflow: hidden;
    border-top: 2px solid #fff;
}

.footer .foot-logo {}

.footer .foot-logo .main-img {
    margin: 0px 0px 30px;
}

.footer .foot-logo .main-img img {
    width: 200px;
}

.footer .foot-logo h2 {
    font-size: 50px;
    line-height: 60px;
}

.footer .foot-logo h2 span {
    font-weight: 300;
}

.footer .links {}

.footer .links ul {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 17px;
}

.footer .links ul h4 {
    font-size: 30px;
    line-height: 40px;
    margin: 0px 0px 10px;
}

.footer .links ul li {}

.footer .links ul li a {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}
.footer .links ul li a:hover{
    color: var(--main-color);;
}

.footer .links .details {
    margin: 0px 0px 30px;
}

.footer .links .details li {}

.footer .links .details li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: lowercase;
    font-size: 15px;
}

.footer .links .details li a i {
    height: 50px;
    width: 50px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    border: 2px solid #ffffff;
    transition: all 0.4s ease-in-out;
}
.footer .links .details li a i:hover{
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

.footer .links .icons-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.footer .links .icons-link i {
    height: 50px;
    width: 50px;
    background: #3f3f3fb3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
/* footer  */



