body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: lightgray;
    cursor: none;
    scroll-behavior: smooth;
    
}

-------
/* body {
    box-sizing: border-box;
    padding: 0;
    margin:0;
    background-color: white;
    height: 100vh;
  } */
  
  /* .cursor {
    pointer-events: none;
    position: fixed;
    display: block;
    border-radius: 0;
    mix-blend-mode: difference;
    top: 0;
    left: 0;
    z-index: 9999999999999999;  
  }
  
  .circle {
      position: absolute;
      display: block;
      width: 26px;
      height: 26px;
      border-radius: 20px;
      background-color: #fff;
  }
   */
-----
.container-main{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    background-color: #001f7c38;
    
}
.back-vid{
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
    mix-blend-mode: lighten;
}

@media (max-aspect-ratio: 16/9 ){
    .back-vid{
        width: auto;
        height: 100%;
    }
    
}

@media (min-aspect-ratio: 16/9 ){
    .back-vid{
        width: 100%;
        height: auto;
    }
    
}

header{
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.123);
    backdrop-filter: blur(10px);
    padding: 0 30px;
    box-shadow: 0 0 15px #72a1de68;
    z-index: 999;
    

}

.left{
    display: flex;
    align-items: center;
}

.left img{
    width: 40px;
    margin: 0 15px;
}

header ul{
    display: flex;
    justify-content: space-between;
    font-weight: bolder;
    width: 50%;
    padding: 15px 15px;
    border-radius: 50px;
    background-color: rgba(0,0,69,0.30);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px #727fde65;

}

header ul li{
    list-style: none;
}

header ul a{
    text-decoration: none;
    color: white;
    font-weight: 700;
    margin: 0 10px;
}

.box-icons{
    display: flex;
    gap: 40px;

}
.box-icons a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(149, 14, 202,0.697);
    text-decoration: none;
    color: lightgray;
    border-radius: 50%;
    transition: 0.3s;
}

.box-icons a:hover{
    background-color: rgba(149, 14, 202, 0.697);
    color: black;
    box-shadow: 0 0 15px #727fde6f;
}

.blackhole-box{
    position: absolute;
    top: 0;
    width: 100%;
    justify-content: center;
    mix-blend-mode: lighten;

}

.blackhole-box video{
    width: 100%;
    margin-top: -23.5%;
}

.hero{
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
   
    
}
    
.hero-info{
    position: absolute;
    left: 5%;
    margin-top: 5%;
}
    
.hero-info .hero-info-title{
    
    padding: 8px 5px;
    color:#727fde;
    border: 1px solid #727fde77;
    width: 240px;
    background-color: #2200493d;
    box-shadow: 0 0 5x #727fde88;
    border-radius: 50px;

}

.hero-info h1{
    font-size: 60px;
    max-width: 600px;
    font-weight: 700;
    line-height: 70px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.hero-info p{
    max-width: 550px;
    line-height: 25px;
    margin-bottom: 40px;
    font-size: 20px;
    text-align: left;
}

.hero-info button{
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    border: 1px solid  #727fdeb4;
    background-color: #2200493d;
    box-shadow: 0 0 5px #727fde86;
    cursor: pointer;
    transition: 0.3s;
}  
    I
    
.hero-info button:hover{
    box-shadow: 0 0 15px #6f04b286;
    transform: scale(1.3);

}

/* Gradient Text */

.gradient{
    background: linear-gradient(to right,#008baa, #7e42a7, #6600c5, #6070fd,#2a46ff, #0099ff,#008ead);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient{
    to{
        background-position: 200%;
    }
}

.hero-vid-box{
    position: absolute;
    right: 3%;
}
    
.hero-vid-box video{
    height: 900px;
    mix-blend-mode: lighten;
}

.scroll-down{
    height: 50px;
    width: 30px;
    border: 2px solid lightgray;
    position: absolute;
    left: 49%;
    bottom: 8%;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(211, 211, 211, 0.477);
    
}
    
.scroll-down::before,
.scroll-down::after{

    content: "";
    position: absolute;
    top: 20%;
    left: 49%;
    height: 10px;
    width: 10px;
    border: 2px solid lightgray;
    transform: translate(-50%, -100%) rotate(45deg);
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 2s ease-in-out infinite;

}



.scroll-down::before {
  top: 30%;
  animation-delay: 0.5s;

}

@keyframes scroll-down{
    0%{
        opacity: 0;
    }
    30%,60%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        top: 90%;
    }

}

/* scroll-to-top */

.scroll-to-top{
animation-name: appear;
animation-timeline: scroll(y);
}

@keyframes appear {
0%{
  opacity: 0;
  display: none;
  position: fixed;
}
3%{
  opacity: 0;
display: none;
}
3.5%{
  opacity: 1;
 display: block;
}
100%{
opacity: 1;
display: block;
position: fixed;
}

}

/*About Me*/

 .About-Me{
    
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    flex-wrap: wrap;
    /* margin-right: 0px; */
    
}

.about-right{
    display: flex;
    justify-content: space-around;
    padding: 20px;

    width: 90%;
    
    
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    flex-wrap: wrap;
}

.section-header{
    font-size: 40px;
    font-weight: 700;
    display: block;
    /* padding-left: 40%;
    padding-right: 40%; */
    text-align: center;
    padding-top: 30px;
}

.profile-img-div{
    height: 400px;
    width: 300px;
    /* display: flex; */
    object-fit: contain;
    /* align-items: center;
    justify-content: center; */
    /* padding-right: 100px; */
}

.profile-img{
    max-width: 100%;
    height: 100%;
    margin-top: 18%;
    
}

.summary{
    width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: large;
    line-height: 1.6;
    
}

.summary p{
  font-size: large; 
  text-align: left;
}

/*My-Skill*/

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i, 600, 600,700");

.My-skills{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 10px solid blue; */
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    
    /* background: #000; */
    
}


.skill-cards{
    justify-content: space-evenly;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center; 
    /* border: 10px solid white; */
    flex-wrap: wrap;
    
}
  
.skill-title{
    font-weight: 500;
    font-size: large;
    display: inline-block;
    text-align: center;
  }
  
  .skill-type{
    font-weight: 700;
    margin-bottom: 5px;
    
    
  }
  
  .l1,
  .l2,
  .l3,
  .l4,
  .l5 {
    opacity: 100;
    
  }

  .skill-title:hover{
    transform: scale(1.2);
  
  }

  #container{
    /* margin: 0 auto; */
    padding: 2em;
    width: 300px;
    background: #1c1f2b;
    text-align: center;
    border-radius: 10px;
    position: relative;
    margin-left: 50px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
  }
  
  @property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  
  #container::after, #container::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), #008baa, #7e42a7, #6600c5, #6070fd,#2a46ff, #0099ff,#008ead);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 3px;
    border-radius: 10px;
    /* animation: 3s spin linear infinite; */
  }
  #container::before{
    filter: blur(1.5rem);
    opacity: 0.5;
  }
  @keyframes spin{
    from{
      --angle: 0deg;
    }
    to{
      --angle: 360deg;
    }
  }
  
  .in-skill{
    /* margin: 0.8rem auto;
    font-family: Montserrat, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content; */

    
  
    /* &#container { */
      /* From https://css.glass */


      /*--------------------------------------- */
      /* background: rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.3); */
      /* ------------------------------------- */

      /* width: fit-content;
      padding: 3rem 4rem;
      
      margin: 20px;
      transition-duration: 0.5s;
  
      &:hover {
        color: #f0f4ef;
        box-shadow: 0 0 5px #f0f4ef; */
        /* cursor: pointer; */
        /* filter: grayscale(0%);
        border: 1px solid rgba(255, 255, 255, 0.3);
        
      }
    } */
  
    &.skill-bar {
      margin: 1rem 0 0 0;
      width: 16rem;
      display: flex;
      cursor: none;
      flex-direction: row;
      justify-content: center;
    }
  
    &.skill-level {
      margin: 0.2rem 0;
      flex-direction: row;
    }
  
    &.dot {
      opacity:100;
      margin: 0.2rem 0.2rem;
      width: 12px;
      height: 12px;
      border-radius: 100%;
      border: 0.1rem #ff9e00 solid;
      
    }
  
    &.fill {
      background: linear-gradient(to right, var(--dot-color) 100%, transparent 50%);
    border: 0.1rem var(--dot-color) solid;
    }
  
    &.half {
    background: linear-gradient(to right, var(--dot-color) 50%, transparent 50%);
    border: 0.1rem var(--dot-color) solid;
  }
  
  /* Define dot colors dynamically */
  .fill.dot:nth-child(1) { --dot-color: #ff6d00; }
  .fill.dot:nth-child(2) { --dot-color: #ff7900; }
  .fill.dot:nth-child(3) { --dot-color: #ff8500; }
  .half.dot { --dot-color: #ff9100; }
  .dot { --dot-color: #ff9e00; }
  
  
   
  
    .l1 {
      background: #ff6d00;
      border: 0.1rem #ff6d00 solid;
    }
  
    .l2 {
      background: #ff7900;
      border: 0.1rem #ff7900 solid;
    }
  
    .l3 {
      background: #ff8500;
      border: 0.1rem #ff8500 solid;
    }
  
    .l4 {
      background: #ff9100;
      border: 0.1rem #ff9100 solid;
    }
  
    .l5 {
      background: #ff9e00;
      border: 0.1rem #ff9e00 solid;
    }
  }
  
  .fadeIn {
    animation: fadeIn 0.5s;
    animation-fill-mode: forwards;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 100;
    }
  }


/*Skill Slider*/

.slider{
    width: 100%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
}
.slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}
.slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (10s / var(--quantity)) * (var(--position) - 1) - 10s)!important;
}
.slider .list .item img{
    width: 100%;
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}
.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.slider .item:hover{
    filter: grayscale(0);
}
.slider[reverse="true"] .item{
    animation: reversePlay 10s linear infinite;
}
@keyframes reversePlay{
    from{
        left: calc(var(--width) * -1);
    }to{
        left: 100%;
    }
}



/* Glow test  */

/* :root {
    --gradient: conic-gradient(
      from 90deg at 50% 50%,
      rgb(184, 8, 228),
      rgba(217, 41, 255, 1),
      rgba(217, 41, 255, 1),
      rgba(217, 41, 255, 1),
      rgba(217, 41, 255, 1),
      rgba(217, 41, 255, 1),
      rgba(217, 41, 255, 1)
    );
  }
    
  .glow {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: blur(14px);
  }
  
  .glow::before {
    position: absolute;
    content: "";
    width: 98%;
    height: 98%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 14px;
    border: 15px solid transparent;
    background: var(--gradient);
    background-attachment: fixed;
    mask: linear-gradient(#0000, #0000), conic-gradient(from calc((
                  var(--start) - (20 * 1.1)
                ) * 1deg), #000 0deg, #ffffff, rgba(0, 0, 0, 0) 100deg);
    mask-composite: intersect;
    mask-clip: padding-box, border-box;
    opacity: 0;
    transition: 1s ease;
  }
  
  #container:hover > .glow::before {
    opacity: 1;
  }
  #container:hover::before {
    opacity: 0.6;
  }
  
  #container {
    --start: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 320px; 
    height: 400px; 
    margin: 10px;
    padding: 20px;
    background-color: #040404;
    border-radius: 14px;
    transition: border-color 0.3s ease-in-out;
    flex-shrink: 0; 
  }
  
  #container::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 14px;
    border: 2px solid transparent;
    background: var(--gradient);
    background-attachment: fixed;
    mask: linear-gradient(#0000, #0000), conic-gradient(from calc((
                var(--start) - (20 * 1.1)
              ) * 1deg), #ffffff1f 0deg, white, #ffffff00 100deg);
    mask-composite: intersect;
    mask-clip: padding-box, border-box;
    opacity: 0;
    transition: 0.5s ease;
  } */


  /* Education */

  .edu-title{
    margin: 0;
    padding: 0;
    font-size: 13px;
    direction: ltr;
  }
  
  .sectionClass {
    padding: 0px 0px 50px 0px;
    position: relative;
    display: block;
    /* background: rgb(249, 249, 249); */
  }
  
  .row {
    width: 980px;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .row:before,
  .row:after {
    content: "";
    display: table;
  }
  
  .sectiontitle {
    background-position: center;
    text-align: center;
    min-height: 20px;
  }
  
  .sectiontitle h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 0px;
    padding-right: 10px;
    padding-left: 10px;
  }
  
  .headerLine {
    width: 160px;
    height: 2px;
    display: inline-block;
    background: #101F2E;
  }
  
  .fullWidth {
    width: 100%;
    display: table;
    float: none;
    padding: 0;
    min-height: 1px;
    height: 100%;
    position: relative;
  }
  /********************************/
  /*  SECTION WORK EXPERIENCE
  ********************************/
  
  #work-experience .sectiontitle .headerLine {
    width: 280px;
  }
  
  #work-experience .headerline {
    width: 280px;
  }
  
  .cbp_tmtimeline {
    margin: 60px 30px 0 0;
    padding: 0;
    list-style: none;
    position: relative;
  }
  
  .cbp_tmtimeline:before {
    content: '';
    position: absolute;
    top: 3%;
    bottom: 0;
    width: 10px;
    background: #324454;
    left: 13%;
    height: 100%;
  }
  
  .cbp_tmtimeline li:last-child:before {
    content: initial;
  }
  
  .cbp_tmtimeline > li .cbp_tmtime {
    display: block;
    width: 25%;
    padding-right: 100px;
    position: absolute;
  }
  
  .cbp_tmtimeline > li .cbp_tmtime span {
    display: block;
    text-align: right;
  }
  
  .cbp_tmtimeline > li .cbp_tmtime span:first-child {
    font-size: 0.9em;
    color: #bdd0db;
  }
  
  .cbp_tmtimeline > li .cbp_tmtime span:last-child {
    font-size: 2.9em;
    color: #3594cb;
  }
  
  .cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
    color: #6cbfee;
  }
  
  .cbp_tmtimeline > li .cbp_tmlabel {
    margin: 0 0 15px 25%;
    background: rgba(50, 68, 84, 1);
    color: #FFF;
    padding: 30px;
    font-size: 1.2em;
    font-weight: 300;
    line-height: 1.4;
    font-family: 'Open Sans';
    position: relative;
    border-radius: 5px;
    min-height: 150px;
    
  }
  
  .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
    background: #2B3A48;
    flex-grow: 0;
  }
  
  .cbp_tmtimeline > li .cbp_tmlabel h3 {
    margin-top: 0px;
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    
  }
  
  .cbp_tmtimeline > li .cbp_tmlabel h4 {
    opacity: 0.7;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 600;
    padding: 0;
    padding-bottom: 10px;
    margin: 0;
    text-align: left;
   
  }
  
  .cbp_tmtimeline > li .cbp_tmlabel h4 i {
    margin-right: 5px;
    vertical-align: middle;
    
  }
  
  .cbp_tmtimeline > li .cbp_tmlabel:after {
    right: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-right-color: rgba(50, 68, 84, 1);
    border-width: 10px;
    top: 70px;
  }
  
  .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: #2B3A48;
  }
  
  .cbp_tmtimeline > li .cbp_tmicon {
    width: 150px;
    height: 150px;
    top: 3%;
    /* speak: none; */
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    font-size: 1.4em;
    line-height: 40px;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    color: #151515;
    background: #324454;
    border-radius: 50%;
    text-align: center;
    left: 8%;
    margin: 0 0 0 -25px;
    
  }
  
  .cbp_tmtimeline li {
    margin-bottom: 70px;
    position: relative;
  }
  
  .sectionClassProject {
    position: relative;
    display: block;
    /* background: #f7f7f7; */
    
    margin: 0 auto;
    padding: 80px 1.875em 3.125em;
  }
  
  .projectParagraph {
    font-size: 18px;
    margin: 0.5em 0 0;
    font-family: 'Source Sans Pro', serif;
  }
  
  .projectParagraphLink {
    font-size: 15px !important;
    font-weight: 500 !important;
    margin-top: 50px !important;
    margin-bottom: 0px;
    text-align: right;
  }
  
  .projectParagraphLink a {
    color: white;
    text-decoration: underline;
  }
  
  .cbp_tmicon  {
    width: 100%;
    padding-top: 30px;
    border-radius: 50%;
    
  }
  
  .faPra {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 90px;
    vertical-align: middle;
    margin-top: 14%;
    color: white;
    line-height: 150px;
  }
  
  .label {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    color: #FFFFFF;
    display: inline;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    padding: 5px 15px;
  }
  
  .date {
    color: #BFC3C7;
    display: block;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: 30px;
    right: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
  
  .date i {
    margin-right: 8px;
    vertical-align: top;
    font-size: 18px;
    line-height: 20px;
    
  }
  
  @media (max-width: 1024px) {
    .fullWidth{
      margin-left: 20px;
    }
    .cbp_tmtimeline:before {
      display: none;
    }

    /*Changed Here*/
    .cbp_tmtimeline{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
    }

    .cbp_tmtimeline li {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
    }  
    
    /*Changed Here*/

    .cbp_tmtimeline > li .cbp_tmtime {
      width: 100%;
      position: relative;
      padding: 0 0 20px 0;
    }
    .cbp_tmtimeline > li .cbp_tmtime span {
      text-align: left;
    }
    .cbp_tmtimeline > li .cbp_tmlabel {
      margin: 30px 0 70px 0;
      padding: 50px 30px 30px 30px;
      font-weight: 400;
      font-size: 95%;
      float: left;
    }
    .cbp_tmtimeline > li .cbp_tmlabel:after {
      right: auto;
      border-right-color: transparent;
      border-bottom-color: rgb(50, 68, 84);
      top: -20px;
    }
    .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
      border-right-color: transparent;
      border-bottom-color: rgb(43, 58, 72);
      left: 65px;
    }
    .cbp_tmtimeline > li:nth-child(even) .cbp_tmlabel:after {
      left: 65px;
    }
    .cbp_tmtimeline > li:nth-child(odd) .cbp_tmicon {
      position: relative;
      float: left;
      left: auto;
      margin: 0px 5px 0 0px;
    }
    .cbp_tmtimeline > li:nth-child(even) .cbp_tmicon {
      position: relative;
      /* float: right; */
      left: auto;
      margin: 0px 5px 0 0px;
    }
    .cbp_tmtimeline > li .cbp_tmtime span:last-child {
      font-size: 1.5em;
    }
  }
  
  @media (max-width: 32em) {
    .cbp-ntaccordion {
      font-size: 70%;
    }
  }
  
  
  
  .edu{
    display:inline;
    font-family: 'Source Sans Pro', sans-serif;
  }


  /* Project section */

  .My-Projects{
    margin: 0;
    padding: 0;
    /* background-color: #0f0f0f; */
    font-family: Arial, sans-serif;
    color: white;
    overflow-x: hidden;
    cursor: none;
    height: 100vh;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 30px;
}

/* Projects Container */
.projects-container {
    display: flex;
    overflow-x: auto;
    padding: 20px;
    gap: 20px;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    /* justify-content: center; */
    margin-left: 100px;

    

}

/* Hide Scrollbar */
.projects-container::-webkit-scrollbar {
    display: none;
}

/* Drag Scroll Effect */
.projects-container.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

/*Project card mobile responsive*/

@media(hover : none){
  .project-card {
    width: 250px;
    height: 300px;
    /* background: linear-gradient(135deg, #32004b, #8a2be2); */
    background: radial-gradient(
      ellipse at right top,
      #6600c5 0%,
      #151419 45%,
      #151419 100%);
    border-radius: 20px;
    /* border: 2px solid; */
    /* border-color: linear-gradient(135deg, #8a2be2, #32004b); */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, background 0.8s ease;
    flex-shrink: 0;
    border: 1px solid;
    border-color: black;
    /* position: relative;
    padding: 2px; Inner padding for border */
}

.project-card a{
  z-index: 999;
}

.view-btn{
  /* background-color: #8a2be2; */
  background: radial-gradient(
ellipse at right top,
#6600c5 0%,
#6600c5 45%,
#151419 100%);
  /* background-color: white; */
  color: white;
  border: 2px;
  border-color: white;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
  z-index: 1000;
  position: relative;
}

.tags span {
  /* background-color: #6c038e; */
  background-color:  #6c038e;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: white;
}

.project-card h3 {
  margin-top: 60px;
  font-size: 1.2rem;
}

/* Tags */
.tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

}


@media(hover : hover){
/* Project Card */
.project-card {
    width: 250px;
    height: 300px;
    /* background: linear-gradient(135deg, #32004b, #8a2be2); */
    background: #040404;
    color: white;
    border-radius: 20px;
    /* border: 2px solid; */
    /* border-color: linear-gradient(135deg, #8a2be2, #32004b); */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, background 0.8s ease;
    flex-shrink: 0;
    border: 1px solid;
    border-color: white;
    /* position: relative;
    padding: 2px; Inner padding for border */
}






/* Hover Effect */
.project-card:hover {
    /* background: radial-gradient(
      ellipse at left bottom,
      #6600c5 0%,
      #6600c5 30%,#151419 60%,
      #151419 100%); */
      background: radial-gradient(
      ellipse at right top,
      #6600c5 0%,
      #151419 45%,
      #151419 100%);

    transform: translateY(-5px);

    border: 10px;
    border-color: white;

    .view-btn{
        /* background-color: #8a2be2; */
        background: radial-gradient(
      ellipse at right top,
      #6600c5 0%,
      #6600c5 45%,
      #151419 100%);
        /* background-color: white; */
        color: white;
        border: 2px;
        border-color: white;
        padding: 10px 20px;
        border-radius: 20px;
        cursor: pointer;
        width: 100%;
        transition: background 0.3s;
    }

    .view-btn:hover {
        background-color: #6c038e;
        color: white;
    }

    .tags span {
        /* background-color: #6c038e; */
        background-color:  #6c038e;
        padding: 5px 10px;
        border-radius: 12px;
        font-size: 0.8rem;
        color: white;
    }
    

    
}

/* Project Title */
.project-card h3 {
    margin-top: 60px;
    font-size: 1.2rem;
}

/* Tags */
.tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.tags span {
    /* background-color: #6c038e; */
    background-color:  rgb(71, 71, 71);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* View Button */
.view-btn {
    /* background-color: #8a2be2; */
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.view-btn:hover {
    background-color: #6c038e;
    color: white;
}

}

/* Project Card Present*/


/* .project-card {
    width: 250px;
    height: 300px;
    
    background: #040404;
    color: white;
    border-radius: 20px;
    
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, background 0.8s ease;
    flex-shrink: 0;
    border: 1px solid;
    border-color: white;
    
} */






/* Hover Effect */
/* .project-card:hover {
   
      background: radial-gradient(
      ellipse at right top,
      #6600c5 0%,
      #151419 45%,
      #151419 100%);

    transform: translateY(-5px);

    border: 10px;
    border-color: white;

    .view-btn{
       
        background: radial-gradient(
      ellipse at right top,
      #6600c5 0%,
      #6600c5 45%,
      #151419 100%);
        
        color: white;
        border: 2px;
        border-color: white;
        padding: 10px 20px;
        border-radius: 20px;
        cursor: pointer;
        width: 100%;
        transition: background 0.3s;
    }

    .view-btn:hover {
        background-color: #6c038e;
        color: white;
    }

    .tags span {
        
        background-color:  #6c038e;
        padding: 5px 10px;
        border-radius: 12px;
        font-size: 0.8rem;
        color: white;
    }
    

    
} */

/* Project Title */
/* .project-card h3 {
    margin-top: 60px;
    font-size: 1.2rem;
} */

/* Tags */
/* .tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
} */

/* .tags span {
   
    background-color:  rgb(71, 71, 71);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
} */

/* View Button */
/* .view-btn {
    
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
} */

/* .view-btn:hover {
    background-color: #6c038e;
    color: white;
} */

/* -------------------------Responsive Styles -----------------------*/
/* @media (max-width: 768px) {
  .projects-container {
      padding: 10px;
      gap: 10px;
  }

  .project-card {
      width: 200px;
      height: 250px;
  }

  .project-card h3 {
      font-size: 1rem;
  }

  .view-btn {
      font-size: 0.8rem;
  }
} */


/* body {
    box-sizing: border-box;
    padding: 0;
    margin:0;
    
    
    
  } */
  
 
  .cursor {
    pointer-events: none;
    position: fixed;
    display: block;
    border-radius: 0;
    mix-blend-mode: difference;
    top: 0;
    left: 0;
    z-index: 9999999999999999;  
  }
  
  .circle {
      position: absolute;
      display: block;
      width: 26px;
      height: 26px;
      border-radius: 20px;
      background-color: #fff;
  }
  

  /* Certification */

  .certi-container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #e3f2fd; */
    
  }
  .testimonial {
    position: relative;
    max-width: 1000px;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
    /* padding-left: 5px; */
    
  }

  .swiper-slide img{
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-top: 60px;
    border: 5px solid #fff;
    
  }

  .card-title h4{
    font-weight: bolder;
    font-size: x-large;

  }

  .card-title p{
    font-weight: bold;
    font-size: large;

  }

    /* .testimonial .image {
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 50%;
  }
   */
  .testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    width: 100%;
    /* border-radius: 30px; */
    /* border: 5px solid;
    border-color: red; */
  
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.2));
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 20px;
      border:1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
  }
  
  .card-title{
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
  }
  
  .card-title h4,p{
    text-align: center;
  }
  /* .slide p {
    text-align: center;
    padding: 0 160px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
  } */
  /* .slide .quote-icon {
    font-size: 30px;
    color: #4070f4;
  }
  .slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .details .name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }
  .details .job {
    font-size: 12px;
    font-weight: 400;
    color: #333;
  } */
  /* swiper button css */
  .nav-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transform: translateY(30px);
    background-color: rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    /* flex-shrink: 0; */
    flex-grow: 0;
  }
  .nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.2);
    /* flex-shrink: 0; */
    flex-grow: 0;
  }
  .nav-btn::after,
  .nav-btn::before {
    font-size: 20px;
    color: #fff;
    /* flex-shrink: 0; */
    flex-grow: 0;
  }
  .swiper-pagination-bullet {
    background-color: white;
    color: white;
    background-image: white;
    opacity: 1;
  }
  .swiper-pagination-bullet-active {
    background-color: purple;
    color: purple;
    background-image: purple;
    opacity: 1;
  }



  @media screen and (max-width: 768px) {
    .slide p {
      padding: 0 20px;
    }
    .nav-btn {
      display: none;
    }
  }
  
  .view-btn-certi{
    
    background-color: white;
    color: #6c038e;
    border: 2px;
    border-color: white;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    flex-shrink: 0;
    flex-grow: 0;
    margin-bottom: 25px;
  }
  
  .view-btn-certi:hover {
    background-color: #6c038e;
    color: white;
   
  }

/* Contact-page */
.contact-container {
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
  padding: 20px;
}

/* Contact Content */
.contact-content {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  /* text-align: left; */
}

/* Contact Info */
.contact-info {
  width: 40%;
  /* text-align: left; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.1rem;
}

.contact-info i {
  color: #9b59b6;
  margin-right: 10px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 10px;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  
}

/* Contact Form */
.contact-form {
  width: 55%;
  text-align: left;
}

form label {
  font-size: 1rem;
  display: block;
  margin: 10px 0 5px;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background-color: #e6e6e6;
  color: #333;
  font-size: 1rem;
}

form button {
  background-color: purple;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #8e44ad;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
      flex-direction: column;
      align-items: center;
  }

  .contact-info,
  .contact-form {
      width: 100%;
  }

  .contact-form {
      margin-top: 20px;
  }
}

.contact-info button{
  color: white;
  padding: 15px 35px;
  border-radius: 10px;
  border: 1px solid  #727fdeb4;
  background-color: #2200493d;
  box-shadow: 0 0 5px #727fde86;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 15px;
}  
  I
  
.contact-info button:hover{
  box-shadow: 0 0 15px #727fde86;

}

.menu-toggle{
  opacity: 0;
}


/* Responsiveness */

/* Base styles are already there, adding only responsive styles below */



/* Menu toggle active class */
header ul.active {
  display: flex;
}


/* Tablet Responsive */
 @media (max-width: 1385px)  {
  body{
    cursor: none;
  }

  .cursor{
    opacity: 0;
  }

  .blackhole-box video{
    margin-top: -20%;
    
    }
  
  header {
    flex-direction: row;
    padding: 10px 20px;
    height: auto;
    margin-left: 0px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
  }

  header ul {
    display: none;
    flex-direction: column;
    background-color: black;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    align-items: center;
    justify-content: center;
    content: normal;
    margin-left: 5px;
    margin-right: 5px;
  }

  header ul li {
    margin: 10px 0;
    text-align: center;
    display: inline-block;
  }


  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 30px;
    color: white;
    opacity: 1;
    margin-right: 10px;
  }

  .box-icons {
    margin-top: 10px;
  }

  .hero {
    flex-direction: row;
    height: auto;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0px;
    padding-left: 0px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .blackhole-box video{
    margin-top: -20%;
    
    }

    /* .hero-vid-box {
      position: relative;
      right: 0;
      
    }
  
    .hero-vid-box video {
      margin-left: 50%;
      height: 500px;
    } */

    .hero-info {
      position: relative;
      left: 0;
      text-align: center;
      margin-top: 13%;
      padding-left: 10%;
      
  
    }
  
    .hero-info h1 {
      font-size: 40px;
      line-height: 40px;
      max-width: 400px;
      display: block;
      text-align: left;
    }
  
    .hero-info p{
      max-width: 300px;
      text-align: left;
    }
  
    .hero-info button{
      display: block;
    }
  
    .hero-vid-box {
      position: relative;
      right: 0;
      margin-top: 10%;
      /* margin-top: 20px; */
    }
  
    .hero-vid-box video {
      margin-left: 10%;
      height: 500px;
    }

    .profile-img-div{
      height: 300px;
      width: auto;
      margin-bottom: 20%;
      
    }

    .profile-img{
    display: block;
    margin-bottom: 10%;
    }
    

}

/* Mobile Responsive */

@media (max-width: 700px) {
  /* body{
    cursor: none;
  } */

  .cursor{
    opacity: 0;
  }

  .blackhole-box video{
    margin-top: -20%;
    
    }
  
  header {
    width: 100%;
    flex-direction: row;
    padding: 10px 20px;
    height: auto;
    margin-left: 0px;
    justify-content: space-between;
    align-items: center;
    position: sticky;
  }

  /* .nav-links{
    display: flex;
    flex-direction: column;
  } */

  .left h1 {
    font-size: 22px;
  }

  header ul {
    display: none;
    flex-direction: column;
    background-color: black;
    /* background-image: linear-gradient(135deg, rgba(22, 19, 195, 0.8), rgba(136, 13, 185, 0.8));
    backdrop-filter: blur(80%);
    -webkit-backdrop-filter: blur(80%);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); */


    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    align-items: center;
    justify-content: center;
    content: normal;
    margin-left: 5px;
    margin-right: 5px;
  }

  header ul li {
    margin: 10px 0;
    text-align: center;
    display: inline-block;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 30px;
    color: white;
    opacity: 1;
    margin-right: 10px;
    margin-left: 10px;
  }

  .box-icons {
    margin: 10px;
    margin-left: 20px;
  }

  .hero {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0px;
    padding-left: 0px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .blackhole-box video{
    margin-top: -16%;
    
    }
  

  .hero-info {
    position: relative;
    left: 0;
    text-align: center;
    margin-top: 25%;
    padding-left: 15%;
    

  }

  .hero-info h1 {
    font-size: 40px;
    line-height: 40px;
    max-width: 400px;
    display: block;
    text-align: left;
  }

  .hero-info p{
    max-width: 300px;
    text-align: left;
  }

  .hero-info button{
    display: block;
  }

  .hero-vid-box {
    position: relative;
    right: 0;
    /* margin-top: 20px; */
  }

  .hero-vid-box video {
    margin-left: 10%;
    height: 500px;
  }

  .scroll-down {
    /* margin: 70px; */
    /* left: 50%;
    bottom: 10%; */
    /* transform: translateX(-50%);
    left: 49%;
    bottom: 8%; */
    opacity: 0;
    
  }

  .projects-container{
    margin-left: 10px;
  }

  .summary {
    font-size: small;
    display: flex;
    flex-direction: column;
    
  }

  .about-right{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .profile-img-div{
    margin-bottom: 20%;
  }
.profile-img{
  display: block;
  margin-bottom: 10%;
}



}

@media(max-width:500px){

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body{
  margin-right: 0;
}

.container-main{
  margin-right: 0%;
  width: 100%;
}
.blackhole-box video{
  margin-top: 6%;
  
  }

.hero-vid-box video{
  height: 300px;
  margin: 0px;
  margin-top: 100px;
  padding: 0px;
}

header{
  width: 100%;
  margin-right: 0%;
  height: auto;
  margin-left: 0px;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  flex-wrap: wrap;
}
.active{
  margin-top: 40px;
}

.hero-info{
  padding-left: 25px;
}

.About-Me{
  margin-top: 50px;
}
.about-left{
  margin-bottom:30px ;
}

.about-right{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 980px;
  flex-wrap: wrap;
  width: 90%;
  /* justify-content: center; */
}

.summary p{
  font-size: 1.2em;
  /* flex-shrink: inherit; */
}


.profile-img-div{
  height: 200px;
  width: auto;
  
}

.summary{
  width: auto;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* margin-top: 0%;
  padding-top: 0%; */
  justify-content: space-around;
}

.profile-img-div{
  margin-bottom: 20%;
}
.profile-img{
display: block;
margin-bottom: 10%;
}

.skill-cards{
  padding: 0px;

}
.skill-cards #container{
  padding-top: 18px;
  padding-bottom: 24px;
  padding-left: 32px;
  padding-right: 32px;
  margin: 10px;
  margin-bottom: 15px;
}

.skill-cards{
  margin-bottom: 30px;
}

.skill-type{
  margin-top: 20px;
}


}





















  
/* remove hover for touchscreens */
/* @media (hover: none) {
  .project-card:hover {
    background: none;
    transform: none;
    border: 1px solid white;
  }

  .view-btn:hover {
    background-color: white;
    color: black;
  }

  .tags span {
    background-color: rgb(71, 71, 71);
  }
}

.no-hover .project-card:hover,
.no-hover .view-btn:hover {
  background: none;
  transform: none;
} */
