@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');


:root {

    --primary-color: #f9532d;
    --text-color:white;
    --primary-dark:rgba(0, 0, 0, 1.0);
    --bg-color:#e6e6e6;
    --font-size:40px;
    --primary-color: #a855f7;

    /* --border-color:#f9532d; */
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background-color:#a855f7;
} 
html,body{
    
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    background: rgb(44, 43, 43);
    color:aliceblue;
}
a{
    font-size: var(--font-size);
}
a:hover{
    color: var(--primary-color)!important;
}
/* extra */
.navbar {
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 992px) {
    .navbar .navbar-nav {
        margin: auto; 
        background-color: #a855f7;
         position: fixed; 
        width: 100%;
        height: 400px;
        top: 0;
        left: 10;
        padding: 20px;
        right: 0;
        z-index: 999;
    }
    
    .navbar .navbar-nav .nav-item {
        width: 100%;
        text-align: center; 
    }
    
    .navbar .navbar-nav .nav-item a {
        display: block;
        padding: 10px 0; 
        color: white; 
        transition: background-color 0.3s; 
    }
    
    .navbar .navbar-nav .nav-item a:hover {
        background-color:  #655d5d;
        border-radius: 5px;
    }
  
        
        .navbar-toggler {
            z-index: 1000; 
        }
    }
    
    

/* extra end*/
/* navbar start */
.navbar-brand{
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
}
.navbar-brand:hover
{
   cursor: pointer;
}
.header-part{
    background:#fff;
    background-attachment: fixed;
    backdrop-filter: blur(25px);
}
.nav-item a{
    color: #244D61;
    margin-left: 20px;
    font-weight:700;
    font-family: consolas;
    letter-spacing: 1px;
    transition: all 0.4s;
   font-size: 17px; 
}
.nav-item a:hover{
    font-weight: bold;
    text-shadow: 0px 0px 1px #772fbb;
}
.form-check-input{
    border: 2px solid var(--border-color);
}

/* all button cass start */
.btn{
    font-size: 16px;
    font-weight: bold;
    padding: 12px 35px;
    color: var(--primary-color);
    border:3px solid var(--primary-color);
    position: relative;
    z-index: 1;
}


.btn:hover span{
    width: 100%;
    transition:0.5;
}
.btn:hover{
    color: var(--text-color)!important;
    background: var( #a855f7);
    text-decoration: underline;
}
.about_btn{
    display: inline-block !important;
    width: 200px;
}
.btn span{
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--primary-color);
    width: 0%;
    height: 100%;
    z-index: -1;
    transition: 0.2s ease-in-out;
}
/* all button cass end */
/* navbar end */


/* bennar section start */
 .home{
    padding: 210px 0px 160px 0px;
}
.home .hello{
    font-size: 28px;
}
.home .hello span{
    font-family: 'clicker script',cursive;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
}
.my-profession{
   font-size: 30px;
}
.my-profession .typing{
    color: var(--primary-color);
}
.home-info p{
    font-size: 18px;
    font-family:cursive;

}
.home-img{
    position: relative;
    width: 400px;
    height: 400px;
    background: var(--bg-color);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    /* margin-left: 50px; */
}
.home-img::before{
    position: absolute;
    content: "";
    background:#bc92e4;
    animation: round 4s linear infinite;
}
    .home-img:hover::before{
        inset: -20px -10px;
    }

.home-img .content{
    position: absolute;
    inset: 25px;
    border-radius: 50%;
    z-index: 3;
    overflow: hidden;
    justify-content: end;  
}
.content img{
    position: absolute;
    justify-content: end;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
/* bennar section end */


/* About section start */
/* menus heading start */


 .neha:hover 
{
   transform: scale(1.1,1.1);		
   transition: 0.5s;
   opacity: 0.5

}	  



.menu-heading{
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 40px;
}
.menu-heading span{
    font-size: 55px;
    color: var(--primary-color);
}

/* menus heading end */
.about-img img{
    width: 100%;
    height: 420px; 
    border-radius: 12px;
}
.about-content{
    width: 100%;

    height: 100%;
}
.about-heading{
    font-size: 44px;
    font-weight: 400;
   
}
.about-para{
    color: var(--primary-color);
    font-size: 20px;
}
.about-text{
    font-size: 15px;
    font-weight: 650;
}
.item{
    margin: 8px 0px;
    list-style: none;
}
.item b{
    font-weight: 600;
    font-size: 17px;
}
.item span{
    margin: 0px 3px;
    font-weight: 400;
    font-size: 15px;
}
.item{
    position: relative;
}

.item::before{
    content: "";
    position: absolute;
    left: 3px;
    margin: 6px 0px;
    width: 12px;
    height: 12px;
    background: var(--bg-color);
    border: 2px solid #a855f7;
    border-radius: 50%;
}

/* About section end */

/* skills  strat*/
.oskill{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px 0px;
    border-radius: 25px;
     border-color: rgb(255 255 255/1); 
    background-color: rgb(229 231 235/1);
    margin-top: 50px;
    background-color: rgb(44, 43, 43);
    border: 2px solid white;
}

.oskill:hover{
    transform: scale(1.1,1.1);		
    transition: 0.5s;

    /* opacity: 0.5; */
   cursor: pointer;
}

.skill-image
{
    width: 90px;
    height: 90px;

}

.skill{
    font-size: 25px;
    font-weight: 700;
}
.progress{
    /* border: 2px solid white */
}
.progress .progress-bar{
     background: var(--primary-color) !important; 
}
/* Skills section end */
/* hobbies start */
/* Hobby Section Styles */
#hobbies {
    background: rgb(44, 43, 43);
  padding: 50px 0;
 
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 50px;
  color: #ffffff;
}

.hobbies-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
}

.hobby {
  width: calc(33.33% - 40px); /* Adjust width to fit three items in a row with spacing */
  margin: 20px; /* Add space between items */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color:rgb(44, 43, 43); /* Background color for hover effect */
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(252, 252, 252, 0.1);
}

.hobby:hover {
  transform: translateY(5px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.hobby-icon {
  font-size: 48px;
  color: #a855f7; /* Adjust color as needed */
  margin-bottom: 10px; /* Add some space between icon and text */
}

.hobby-title {
  font-size: 24px;
  color:#a855f7;
}

.hobby-description {
  font-size: 22px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .hobby {
    width: calc(50% - 40px); /* Adjust width to fit two items in a row with spacing */
  }
}

@media screen and (max-width: 576px) {
  .hobby {
    width: calc(100% - 40px); /* Adjust width to fit one item in a row with spacing */
  }
}

/* hobbies end */
/* Education Start */
.service-box 
{
    background-color:#fff;   
    padding: 2.5rem 1.3rem;   
    border-radius: 1rem;   
    color: white;
    margin-left: 30px;
    margin-bottom: 3rem;   
    color: rgb(0, 0, 0);
    font-family:sans-serif;
    font-weight: bold;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    
    }
    
    .service-box:hover
    {
        
        transform: translateY(10px);
        box-shadow: 0 5px 15px rgba(252, 252, 252, 0.1);
    transition: 0.9s ease;
    /* opacity: 0.5;  */
    background-color:#9c6bc9;
    color: white;
     cursor: pointer;
    }
    .service-box:hover .ico-circle 
    {     
         background-color: #0077ff; 
        background-color: #0078ff;
        color:  #ffffff;
        border-radius: 30px;
      
    }
    
   
    .service-box .service-ico
    {
        margin-bottom: 1rem;
        color: #1e1e1e;

    }
    .service-box .ico-circle
    {
        transition: all 500ms ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .service-box .ico-circle i
    {
        line-height: 0;
        font-size: 40px;
    }

    .service-box .service-ico
    {
        margin-bottom: 1rem;
        color: #1e1e1e;
    }
    .service-box .ico-circle
    {
        transition:  all 500ms ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .service-box .ico-circle i
    {
        line-height: 0px;
        font-size: 50px;
    }
    .service-box .s-title
    {
        font-size: 1.4rem;
        text-transform: uppercase;
        text-align: center;
        padding:  0.4rem 0;


    }

    .service-box .s-description
    {
        color: #000000;
    }

.mi{
  border-radius: 12px;
}
.mi:hover
{
    transform: scale(1.1,1.1);		
    transition: 0.5s;
    opacity: 0.5; 
   cursor: pointer;
 
}
/* service Start */
#services{
    padding: 20px;
 }
 
 .services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    margin-top: 50px;
 }
 
 .services-list div{
    background: #696565;
    padding: 30px;
    font-size: 13px;
 
    font-weight: 300;
  
    border-radius: 10px;
    transition: background-color 0.5s, transform 0.5s;
 }
 
 .services-list div i{
    font-size: 50px;
    margin-bottom: 30px;
 }
 
 .services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
 }
 
 .services-list div a{
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
    transition: all 0.5s;
 }
 
 .services-list div:hover{
    background-color:#a855f7;
    transform: translateY(-10px);
 }
/*  service end*/
/* Project section start */
#portfolio{
    padding: 50px 0;
 
 }
 
 .work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
 }
 
 .work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
 }
 
 .work img{
    width: 100%;
    height: 300px;
    border-radius: 10px;
    display: block;

    object-fit: cover;
    transition: transform 0.5s;
 }
 
 .layout{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0,0,0,0.6),#772fbb);
    /* background-color: #a855f7; */
    border-radius: 10px;
    position:absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    font-size: 14px;
    transition: height 0.5s ease-in;
 }
 
 .layout h3{
    font-weight: 500;
    margin-bottom: 20px;
 }
 
 .layout a{
    margin-top: 20px;
    color: #ff0004;
    font-size: 18px;
    line-height: 60px;
    text-decoration: none;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
 }
 
 .work:hover img{
    transform: scale(1.1);
 }
 
 .work:hover .layout{
    height: 100%;
 }
 
 .btn2{
    display:block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #772fbb;
    padding: 10px;
    border-radius: 6px;
    font-size: 25px;
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
 }
 
 .btn2:hover{
    background:#772fbb;
    color: white;
 }
 

/* Project section end */

/* Contcat section start */
.contcat{
    width: 100%;
}
.contcat h1 span{
    border-bottom: 2px solid var(--primary-color);
}
.contcat input{
    width: 70%;
    margin-top: 12px;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary-color);
}
.out:focus{
    outline: 0px !important;
}
.contcat textarea{
    width: 70%;
    background: transparent;
    border: 2px solid var(--primary-color);
    margin-top: 20px;
}
.contcat textarea:focus{
    outline: 0px !important;
}
.contcat .c{
    color: var(--primary-color);
    margin-top: 20px;
    margin-left: 7px;
    font-size: 20px;
}
.social-links .fa-brands{
    font-size: 30px;
    margin-right: 9px;
}
.social-links .fa-brands:hover{
    text-shadow: 0px 0px 10px;
}
/* Contcat section end */


/* fotter part start */
.fotter{
    border-top: 2px solid rgb(202, 202, 202) !important;
    margin-top: 60px;
}
.fotter p{
    color:white;
    font-size: 16px;
    font-weight: bold;
}
/* fotter part end */


/* Media query startc */
@media screen and (max-width: 1600px) {
    .navbar .navbar-nav{
        margin-left: 270px;
    }
   
    .sk{
        margin: 40px 0px 150px 0px;
    }
    .sk .m{
        margin: 120px 0px 0px 0px;
    }
}
@media screen and (max-width: 1200px) {
    .navbar .navbar-nav{
        margin-left: 180px;
    }
    
}
@media screen and (max-width: 1100px) {
    .navbar .navbar-nav{
        margin-left: 100px;
    }

}
@media screen and (max-width: 992px) {
    .about-img img{
        height: 70%;
    }
  
    .contcat .c{
        
        font-size: 14px;
    }
 
    .about{
        margin-top: -100;
        
    }
    .project .card{
        height: 430px;
    }
    .form-check{
        margin-left: -450px;
    }
}
@media screen and (max-width: 776px) {
    .home{
        margin-top: -100px;
    }
    .about-heading{
        font-size: 30px;
    } 
    .project .card{
        height: 500px;
    } 
    .form-check{
        margin-left: -280px;
    }  
}
@media screen and (max-width: 576px) {
    .about-heading{
        font-size: 25px;
    }
    .form-check{
        margin-left: -200px;
    }
}
@media screen and (max-width: 450px) {
    .form-check{
        margin-left: -110px;
    }
}

/* Media query end */


@media (max-width: 576px) {
    .home-img{
         width: 325px;
         height: 325px;
}

} 


/* set dark mode end */
