* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-decoration: none;

    }
  
    /* Navbar styling */
    
    .max-width {
        max-width: 1300px;
        padding: 0 80px;
        margin: auto;
    }
    
    .navbar {
        position: fixed;
        width: 100%;
        z-index: 999;
        padding: 30px 0;
        font-family: 'Ubuntu', sans-serif;
        transition: all 0.3s ease;
    }
     
        .navbar .logo a {
        color: #fff;
        font-size: 35px;
        font-weight: 600;
    }
    
    .navbar .logo a span {
        color: crimson;
    }
    
    .navbar.sticky .logo a span {
        color: #fff;
    }
    .navbar.sticky {
        padding: 10px 0;
        background: crimson;
    }
  
    
    .navbar .max-width {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar .menu li a {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        margin: 25px;
        transition: color 0.3s ease;
    }

    
    .navbar .menu li a:hover {
        color: crimson;
    }
    
    .navbar.sticky .menu li a:hover {
        color: #fff;
    }
    
    .navbar .menu li {
        list-style: none;
        display: inline-block;
    }
    .navbar .logo span{
    
        color: red;
    
    }
     .navbar .sticky .logo span{
    
        color: white;
    
    }
    /* menu button styling */
    
    .menu-btn {
        color: #fff;
        font-size: 23px;
        cursor: pointer;
        display: none;
    }
    /* home section styling */
    
    .home {

        display: flex;
        /*background:black;*/
        width: 100%;
        height: 100vh;
        min-height: 500px;
        font-family: 'Ubuntu', sans-serif;
        color: #fff;
    }
    
    .home .max-width {
        margin: auto 0 auto 40px;
    }
    
    .home .home-content .text-1 {
        font-size: 27px;
    }
    
    .home .home-content .text-2 {
        font-size: 75px;
        font-weight: 600;
        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;
    }
    
    .home .home-content a {
        display: inline-block;
        background: crimson;
        color: #fff;
        font-size: 25px;
        padding: 12px 36px;
        margin-top: 20px;
        border-radius: 6px;
        border: 2px solid crimson;
        transition: all 0.3s ease;
    }
    
    .home .home-content a:hover {
        color: crimson;
        background: none;
    }
    /* about styling */
    
    section {
        padding: 80px 0px;
    }
    
    .about {
        font-family: 'Poppins', sans-serif;
    }
   

    .about .title {
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        text-align: center;
        font-family: 'Ubuntu', sans-serif;
    }
    
    .about .about-content ,
    .skills .skills-content,
    .contact .contact-content
    {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }
      .about .about-content .column{
        width: calc(50% - 30px);
    }
    .about .about-content .left {
        width: 55%;
    }
    
    .about .about-content .right {

        width: 45%;
    }
    .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 .list {
        text-align: justify;
      margin-left: 25px;
      
    }
    
    .about .about-content .right a {
        display: inline-block;
        background: crimson;
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        padding: 10px 30px;
        margin-top: 20px;
        border-radius: 6px;
        border: 2px solid crimson;
        transition: all 0.3s ease;
    }
    
    .about .about-content .right a:hover {
        color: crimson;
        background: none;
    }
    
    .about .about-content .left img {
        height: 400px;
        width: 400px;
        border-radius: 6px;
        object-fit: cover;
        display: none;
        
    }
    
    .cube {
        position: absolute;
        width: 300px;
        height: 300px;
        transform-style: preserve-3d;
        transform: rotateX(-30deg);
        animation: animate 5s linear infinite;
    }
    
    @keyframes animate {
        0% {
            transform: rotateX(-30deg) rotateY(0deg);
        }
        100% {
            transform: rotateX(-30deg) rotateY(360deg);
        }
    }
    
    .cube div {
        position: absolute;
        top: 0%;
        left: 30%;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
    }
    
    .cube div span {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: url('smarti.JPG') no-repeat;*/
        background-size: cover;
        transform: rotateY(calc(90deg*var(--i))) translateZ(150px);
    }
    .cube div .one{
         
        background: url("smartipic-removebg-preview (1).png") no-repeat;
        background-size: cover;
                 
    }
    .cube div .two{
           background: url("smartipic-removebg-preview (1).png") no-repeat;
        background-size: cover;
    }
     .cube div .three{
            background: url("smartipic-removebg-preview (1).png") no-repeat;
        background-size: cover;
    }
     .cube div .four{
           background: url('smartipic-removebg-preview (1).png') no-repeat;
        background-size: cover;
    }
    .top {
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 300px;
        background: rgb(14, 13, 13);
        transform: rotateX(90deg) translateZ(150px);

    }
    
    .top::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 300px;
        background: green;
        transform: translateZ(-400px);
        filter: blur(20px);
        box-shadow: 0 0 120px rgba(3, 68, 3, 0.4), 0 0 200px rgba(12, 143, 12, 0.5), 0 0 300px rgba(84, 231, 84, 0.6), 0 0 400px rgba(124, 255, 124, 0.8), 0 0 500px rgba(124, 255, 124, 0.1);
    }
    
    
   



    section .title{
        position: relative;
        text-align: center;
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
    }

    section .title::before{
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0px;
        width: 180px;
        height: 3px;
        background: #111;
        transform: translateX(-50%);

    }

    section .title::after{
        position: absolute;
        bottom: -12px;
        left: 50%;
        font-size: 20px;
        color: crimson;
        padding: 5px;
        background: white;
        transform: translateX(-50%);
    }

    .skills .title::after{
        content: "What I know";
    }

    .about .title::after{
        content: "Who I am";
    }
  .contact .title::after{
        content: "get in touch";
    }



/*Skills */

    .skills .skills-content .column{
        width: calc(50% - 30px);
    }

    .skills .skills-content .left .text{
        font-size:25px ;
        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: #fff;
        font-size: 18px;
        font-weight: 500;
        padding: 8px 16px;
        margin-top: 20px;
        border-radius: 6px;
        border: 2px solid crimson;
        transition: all 0.3s ease;

    }
    .skills .skills-content .left a:hover{
    color: crimson;
    background: none;
    }
     .skills .skills-content .right .bars{
       
        margin-bottom: 15px;
    
    }
    .skills .skills-content .right .info{
        display: flex;
        align-items: center;
        margin-bottom:5px ;
        justify-content: space-between;
    }

    .skills .skills-content .right span{
    font-weight: 500;
    font-size: 15px;

    }
    .skills .skills-content .right .line{
    height: 10px ;
    width: 100%;

    background: lightgrey;
    position: relative;

    }
    .skills .skills-content .right .line::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 80%;
    left: 0;
     border-radius: 10px;
    top: 0;
    background: crimson;
    }

.skills .skills-content .right .c::before
    {
    width: 70%;
    
    }
    .skills .skills-content .right .cp::before
    {
    width: 50%;
    
    }

    .skills .skills-content .right .html::before
    {
    width: 90%;
    
    }
    .skills .skills-content .right .css::before
     {
    width: 60%;
    
    }
    .skills .skills-content .right .js::before
    {
    width: 60%;
    
     }
     .skills .skills-content .right .python::before
    {
    width: 80%;
    
    }
    
  .skills .skills-content .right .sql::before
    {
    width: 80%;
    
    }

/*contact section*/

.contact .contact-content .column{
    width: calc(50% - 30px);
}

.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}


.contact .contact-content .column .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: 30px;
    color: crimson;
}

.contact .contact-content  .info .head{
    font-weight: 800;
    font-size: 20px;

}
.contact .contact-content  .info .sub-title a{
    color: black;
}

.contact .contact-content .info .sub-title{
    color: #333;
}

.contact .right form .fields , .button{
    display: flex;
}
.contact .right form .field,
.contact .right form .fields .filed
{
   height: 45px;
   width: 100%;
   margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}
.contact .right form .name,.btn1{
    margin-right: 10px;
}

.contact .right form .email,.btn2{
    margin-left: 10px;
}


.contact .right form .field input, button,
.contact .right form .textarea textarea{
    height: 100%;
    width:100% ;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    font-size: 17px;
    font-family:'Poppins',sans-serif ;
    padding: 0 15px;
}
.contact .right form .textarea textarea{
    padding-top:10px ;
    resize: none;
}

.contact .right form .button{
height: 45px;
   width: 100%;
   margin-bottom: 15px;
}
.contact .right form .button button {
    width: 100%;
    height: 100%;
    border: 2px solid crimson;
    background: crimson;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease ;

}
.contact .right form .button a{
    color: white;
}
.contact .right form .button button:hover{
    background: none;
    color: crimson;
}
.contact .right form .button a:hover{
    color: crimson;
}


.contact .row .sub-title i{
    color: white;
    font-size: 25px;
    margin-left: 15px;
}

.contact  .row .sub-title .fa-whatsapp{
    background: green;
    border-radius: 50%;
}

.contact  .row .sub-title .fa-instagram{
background: #f09433; 
border-radius: 5px;
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}

.contact  .row .sub-title .fa-linkedin{
    color: darkblue;
}
.contact  .row .sub-title .fa-phone{
    color: blue;

}

.section{
    background:linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.01)),url("image.jpg");
    width: 100%;
    background-size: cover;
}