* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: black;
  position: relative;
  font-family: "Michroma", sans-serif;
}


html, body {
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}



/* Background Sections */
.bg1 {
  background-image: url("./background1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100%;
  min-width: 100%;
  position: relative;
}

.bg2 {
  background-image: url("./background1_2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  margin-top: -5px; /* Eliminates the white gap */
}

/* Navigation */
.navcontainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 10;
}

.name h1 {
  font-family: "Michroma", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: black;
}

.navlist {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navlist li a {
  text-decoration: none;
  color: black;
  font-family: "Michroma", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  transition: color 0.5s;
}

.navlist li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #73dd22;
  transition: width 0.3s;
}

.navlist li a:hover::after {
  width: 100%;
}

/* Home Section */
.Home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.logo {
  margin-top: 60px;
  margin-bottom: 60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.group {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left_line,
.right_line {
  margin: 10px;
  width: 60px;
  height: 4px;
  border-radius: 5px;
  background-color: rgb(128, 128, 127);
}

.aspire {
  font-family: cursive;
  font-size: 1.5rem;
  color: rgba(13, 142, 154, 0.843);
  font-weight: 800;
}

.hookupline {
  width: 600px;
  margin: 10px;
  font-size: 1.8rem;
  text-align: center;
  font-family: "Akronim", system-ui;
  font-weight: 400;
  font-style: normal;
}

/* About Section */
.About {
  display: flex;
  flex-direction: row;
  margin-top: 100px;
}

.dot_sidebar {
  display: flex;
  flex-direction: column;
}

.dot {
  display: inline-block;
  background-color: black;
  height: 15px;
  width: 15px;
  margin-left: 10px;
  margin-top: 10px;
  border-radius: 50%;
}

.sidebar {
  margin: 15px;
  background-color: black;
  height: 300px;
  width: 5px;
  border-radius: 50%;
}

.about_me_content {
  font-family: "Michroma", sans-serif;
  margin-top: 50px;
  font-weight: 800;
  font-style: normal;
  width: 70%;
  text-align: justify;
  font-size: 16px;
  display: flex;
  align-items: center;
  line-height: 2rem;
}

/* Footer */
footer {
  text-align: center;
  font-family: "Michroma", sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0;
}

/* Skills, Projects, Contact Sections */

.dot_sidebar {
  display: flex;
  flex-direction: column;
}

.Skills {
  display: flex;
  flex-direction: row;
}
.Projects > .dot_sidebar > .sidebar {
  height: 500px;
}

.skillflex
{
  display: flex;
  flex-direction: column;
}



.Skills_Container {
  width: 1200px;
  max-width: 1200px;
  margin: auto;
}

.Projects,
.Contact {
  display: flex;
}

.skillsrotate {
  width: 100%;
  max-width: 1400px; /* limits max growth */
  margin: 30px auto;  /* center horizontally */
  /* border: 2px solid black; */
  height: 200px;
  overflow: hidden;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}


#row1,
#row2 {
  display: flex;
  list-style: none;
  gap: 50px;
  white-space: nowrap;
  font-weight: bold;
}

#row1 {
  margin-top: 20px;
  margin-bottom: 30px;
  justify-content: end;
  animation: scrollLeft 10s linear infinite alternate;
}

#row2 {
  animation: scrollRight 10s linear infinite alternate;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(-17%);
  }
  100% {
    transform: translateX(-30%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(15%);
  }
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-family: "Michroma", sans-serif;
  font-weight: bold;
  width: 120px;
  height: 40px;

  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  flex-shrink: 0;
}

.Contact >
.dot_sidebar >.sidebar
{
height: 500px;
}

.contact_content {
  display: flex;
  flex-direction: column;
}

.connect_container {
  margin-left: 30px;
  display: grid;
  gap: 1rem;
  margin-top: 4rem;
  width: 90vw;
  height: 400px;
  
 

  grid-template-areas:
    "pic1 pic2 pic3"
    "c1 c2 c3"
    "b1 b2 b3";
}

#pic1 {
  grid-area: pic1;
}

#pic2 {
  grid-area: pic2;
}

#pic3 {
  grid-area: pic3;
}

#c1 {
  grid-area: c1;
}

#c2 {
  grid-area: c2;
}
#c3 {
  grid-area: c3;
}

#b1 {
  grid-area: b1;
}

#b2 {
  grid-area: b2;
}

#b3 {
  grid-area: b3;
}

.item {
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gmail_img
{

  padding-left: 20px;
  width: 200px;
  height: 150px;

}
#c1
{
  width: 400px;
  text-align: justify;
  font-weight: 300;
}

.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

#pic1 > .gmail_img{
  border-radius: 40px;
}

a{
  list-style: none;
  text-decoration: none;
}

.projectImage {
  width: 250px;
  height: 200px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.projectImage:hover {
  transform: scale(0.9);
}


.box_Container
{
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3,1fr);

  margin-top: 30px;
}

.Projects>.dot_sidebar >.sidebar
{
  height: 600px;
  
}

.bx1>.buttons >#btn1
{
  margin-top: 30px;
}

.Projects >.container_adjust >.box_Container >.boxes >#btn1
{
  margin-top: 40px;
}
.container_adjust
{
  display: flex;
  flex-direction: column;
}

.imagecontainer
{
  display: flex;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}

.projectdesc
{
font-family: "Lucida Console", "Courier New", monospace;
margin-top: 10px;
margin-left: 15px;
margin-right: 3px;
text-align:start;
font-size: 16px;
font-weight: 500;
line-height: 25px;

}


.boxes
{
  width: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
  rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
  rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
   transition: transform 0.3s ease-in-out;
}

.boxes:hover{
  transform: scale(1.03);
}


.buttons {
  display: flex;
  justify-content: space-between;
  margin: 10px;
}


.golive, .viewCode {
  background: linear-gradient(135deg, #436e95, #2d4f6e);
  color: #f0f8ff;
  box-shadow: 0 0 15px rgba(67, 110, 149, 0.4);
  transition: all 0.3s ease-in-out;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  min-width: 100px;
}

.golive:hover, .viewCode:hover {
  background: linear-gradient(135deg, #2d4f6e, #436e95);
  transform: scale(0.9);
  box-shadow: 0 0 25px rgba(67, 110, 149, 0.6);
}

a{
  color: white;
  text-decoration: none;


}

#desc1 ,#desc2,#desc3
{
  margin-top: 40px;
  margin-bottom: 20px;
}


#btn2
{
  margin-top: 40px;
}

#btn3
{
  margin-top: 65px;
}

.resume {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 10px;
  width: 100%;
  flex-wrap: wrap; 
}

.leftline,
.rightline {
  flex: 1;
  height: 2px;
  background-color: black;
  border-radius: 10px;
  min-width: 50px;
}


.resume > .view {
  padding: 10px 30px;
  background: linear-gradient(135deg, #436e95, #2d4f6e);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(67, 110, 149, 0.4);
  transition: 0.3s ease-in-out;
}

.resume > .view > a {
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  font-family: "Michroma", sans-serif;
  text-decoration: none;
}

.resume > .view:hover {
  background: linear-gradient(135deg, #2d4f6e, #436e95);
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(67, 110, 149, 0.6);
}

/* Media Quries and responsive things */

/* ------------------- 4K THING ----------  */

/* @media (max-width:2560px) {

  .navcontainer > .navlist > li > a {
    font-size: 40px;
  } 

  .navlist{
    gap:3.5rem;
  }
  
  .myname h1 {
    text-align: center;
    font-size: 50px;
  }

  .group .aspire p
    {
        font-size: 50px;
    }

  .left_line, .right_line {
  width: 200px;
  height: 10px; 
  }



  .hookupline {
    width: 1600px;
    font-size: 6rem;
    text-align: center;
    font-family: "Akronim", system-ui;
    font-weight: 400;
  }
  .group {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  .about_me_content {
    font-family: "Michroma", sans-serif;
    margin-top: 50px;
    font-weight: 800;
    font-style: normal;
    width: 85%;
    text-align: justify;
    font-size: 33px;
    display: flex;
    align-items: center;
    line-height: 3.5rem;
  }

  

} */

/* ------------------- Laptop - L  THING ----------  */
@media(max-width:1441px)
{
  .navlist{
    gap:2rem;
  }
  .navcontainer > .navlist > li > a {
    font-size: 20px;
  }

  .myname h1 {
    text-align: center;
    font-size: 25px;
  }

  .group .aspire p {
    font-size: 30px;
  }

  .hookupline {
    width: 800px;
    font-size: 50px;
  }

  .group {
    margin-top: 12px;
    display: flex;
    align-items: center ;
    justify-content: center;
}

.left_line, .right_line {
  width: 100px;
  height: 10px; 
  }

  .dot {
    display: inline-block;
    background-color: black;
    height: 25px;
    width: 25px;
    margin-left: 5px;
    margin-top: 10px;
    border-radius: 50%;
  }

  .sidebar
 {
    margin: 15px;
    background-color: black;
    height: 300px;
    width: 5px;
    border-radius: 50%;
  }

  .about_me_title h1
  {
    position: relative;
    margin-top: 50px;
    margin-left: 5px;
    font-size: 25px;
  }


  .dot_sidebar {
    position: relative;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
  }

  .about_me_content p{
    font-size: 20px;
    line-height: 3rem;
  }

  .skills_title h1
  {
    font-size: 25px;
    padding-left: 10px;
    margin-top: 55px;
  }

  
  .project_title h1 
  {
  font-size: 25px;
  padding-left: 10px;
  margin-top: 55px;
  }

  .contact_title h1 
  {
  
    font-size: 25px;
  padding-left: 10px;
  margin-top: 55px;

  }



  
}

/* ------------------- Laptop -M THING  ----------  */
@media(max-width:1025px)
{

  .navcontainer > .navlist > li > a {
    font-size: 18px;
  } 


  .myname h1 {
    padding-left: 30px;
    text-align: center;
    font-size: 20px;
  }

  .group .aspire p {
    font-size: 20px;
  }

  .left_line, .right_line {
    width: 70px;
    height: 4px; 
  }

  .hookupline {
    width: 750px;
    font-size: 35px;
  }

  .dot {
    display: inline-block;
    background-color: black;
    height: 20px;
    width: 20px;
    margin-left: 10px;
    margin-top: 10px;
    border-radius: 50%;
  }

  .sidebar
  {
    margin: 15px;
    background-color: black;
    height: 300px;
    width: 5px;
    border-radius: 50%;
  }

  .about_me_title h1
  {
    position: relative;
    margin-top: 50px;
    margin-left: 0px;
    font-size: 20px;
  }


  .dot_sidebar {
    position: relative;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
  }

  .about_me_content {
    width: 90%;
    font-size: 15px;
    line-height: 1.7rem;
  }

  .skills_title h1
  {
        position: relative;
        margin-top: 50px;
        margin-left: 0px;
        font-size: 20px;
  }

  .project_title h1 
  {
    position: relative;
    margin-top: 50px;
    margin-left: 0px;
    font-size: 20px;
  }

  .about_me_content p {
    font-weight: 550;
    font-size: 19px;
    line-height: 2rem;
  }

  .contact_title h1 
  {
       position: relative;
        margin-top: 50px;
        margin-left: 0px;
        font-size: 20px;
  }


  .connect_container {
    display: grid;
    margin-left: 0px;
    gap: 1rem;
    margin-top: 2rem;
    width: 90vw;
    height: 400px;
    grid-template-areas:
        "pic1 pic2 pic3"
        "c1 c2 c3"
        "b1 b2 b3";
}

#c1 {
  font-size: 1rem;
  width: 300px;
  text-align: justify;
  font-weight: 300;
}   

#c2 {
  font-size: 1rem;
  width: 300px;
  text-align: justify;
  font-weight: 300;
}

#c3 {
  font-size: 1rem;
  width: 300px;
  text-align: justify;
  font-weight: 300;
}




}
/* ------------------- TABLET THING ----------  */
@media (max-width: 769px) {

  .navcontainer > .navlist > li > a {
    font-size: 15px;
  } 


  .Home
  {
    margin-left: 40px;
  }


  .Home >h1
  {
    font-size: 20px;

  }

  .about_me_content p {
    width: 900px;
    font-weight: 600; 
    font-size: 13px;
    line-height: 2rem;
  }

  .hookupline {
    width: 600px; 
    font-size: 25px;
  }

  
  .Skills_Container {
    width: 720px;
    max-width: 1200px;
    margin: auto;
  }

  .skillsrotate {
    flex-direction: column;
    height: auto;
    padding: 10px;
    gap: 15px;
    border: none;
  }
  
  #row1, #row2 {
    flex-wrap: wrap;
    justify-content: center;
    
    animation: mobileScroll 5s linear infinite alternate;
  }
  
  @keyframes mobileScroll {
    0% {
      transform: translateX(5%);
    }
    100% {
      transform: translateX(-10%);
    }
  }

  .Skills >.dot_sidebar >.sidebar
  {
    height: 500px;
  }

  .boxes >.imagecontainer >.projectImage
  {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  }

.projectdesc
{
margin-top: 2px;
margin-left: 15px;
margin-right: 3px;
text-align:start;
font-size: 16px;
font-weight: 500;
line-height: 25px;

}

.projectdesc > p{
  width: 210px;
}

#bx1 
{
  width: auto;
  height: 625px;
}
.buttons {
  display: flex;
  justify-content: space-between;
  
}

.golive, .viewCode {
  background: linear-gradient(135deg, #436e95, #2d4f6e);
  color: #f0f8ff;
  box-shadow: 0 0 15px rgba(67, 110, 149, 0.4);
  transition: all 0.3s ease-in-out;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 10px;
  cursor: pointer;
  text-align: center;
  min-width: 100px;
}


.navlist{
  width: 65%;
}

.myname >h1
{
  padding-left: 15px;
  margin-top: 20px;
  font-size: 20px;

}

#desc2,#desc3 >p
{
  width: 210px;
}

.Projects >.container_adjust >.box_Container >.boxes >#btn1
 {
    margin-top: 0px;
}

#bx2
{
  height: 630px;
}

#btn2
{
  margin-top: 45px;
}

#btn3
{
  margin-top: 45px;
}

#btn2 > .golive
{
  width: 1px;
}

.golive, .viewCode {
  font-size: 7px;
  width: 10px;

  min-width: 60px;
}

.connect_container {
  display: grid;
  grid-template-areas:
    "pic1 pic2"
    "c1 c2"
    "b1 b2"
    "pic3 pic3"
    "c3 c3"
    "b3 b3";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem;
  
}

.connect_container
{
  padding-right: 400px;
}

.dot_sidebar{
  margin-top: 25px;
}
.contact_title > h1
{
  margin-top: 25px;
}


#pic3 {
  grid-area: pic3;
  place-self: center;
  margin-top: 1rem;
}

#c1 {
  font-size: 1rem;
  width: 350px;
  text-align: justify;
  font-weight: 300;
}


#c2 {
  font-size: 1rem;
  width: 350px;
  text-align: justify;
  font-weight: 300;
}

#c3
 {
  font-size: 1rem;
    grid-area: c3;
    text-align: justify;
    width: 50%;
    margin-left: 25%;
}

.resume
{
  position: relative;
  margin-top: 20px;
}


.resume > .left_line{
  border-radius: 10px;
}

.Contact > .dot_sidebar>.sidebar{
  height: 800px;
  
}

footer > p {
  font-size: 12px;
  font-weight: bold;
}



.dot {
  height: 15px;
  width: 15px;
}

.sidebar
{
  height: 250px;
}

.about_me_title h1
{
  position: relative;
  margin-top: 50px;
  margin-left: 0px;
  font-size: 16px;
}


.dot_sidebar {
  position: relative;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.about_me_content {
  width: 80%;
  font-size: 15px;
  line-height: 2rem;
}




}
  

/* ------------------- Mobile THING -L  ----------  */
@media (max-width: 426px) {

  

  .navlist
  {
    padding-right: 320px;
    width: 40%;
    gap: 1.5rem;
    
  }
  
  .navlist li:last-child {
    display: none;
  }
  
  .Home{
    padding: 20px;
  }
  
  .Home>.pic
  {
    position: relative;
    
  }
  .Home >.pic >.logo{
    margin:5PX;
  }
  
  
  .Home> h1{
    color: rgb(186, 239, 25);
  
  }

  .About >.text-container>.about_me_content>p
   {
          width: 350px;
    }
  
  .bg1 {
    background-image: none !important;
    background: rgba(64, 212, 107, 0.11) !important;
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
  
  }
  
  .bg2 {
    background-image: none !important;
    background: rgba(64, 212, 107, 0.11) !important;
    
  }
  .mobile_display {
    margin-right: 30px;
    width: 400px;
    overflow: hidden;
    
  }
  
  
  
  .mobile_display >.hookupline
  {
    margin: 20px 0px 0px 0px;
  width: 100%;
  }
  #about
  {
    position:relative;
    top: 1rem;    
  }

  
  .About>.dot_sidebar>.sidebar
  {
    height: 350px;
  }
  
  .about_me_title
  {
    margin-top: 35px;
  }
  .about_me_content
  {
    margin-top: 30px;
    font-size: 15px;
    font-weight: 20;
    text-align: justify;
    line-height: 25px;
    width: 380px;
    padding: 2px;
  }

  .dot_sidebar,.skillflex
  {
    margin-top: 35px;
  }

  .Skills >.dot_sidebar >.sidebar
  {
  
    height: 300px;
  }
  
  .Skills_Container{
    position: absolute;
    width: 100%;
    overflow: hidden
  }
  
  .skillsrotate {
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }
  
  #row1, #row2 {
    display: grid;
    margin-left: 90px;
    width: 20%;
    grid-template-columns: repeat(3, 1fr); /* 4 boxes in each row */
    gap: 10px;
    justify-items: center;
  
  }
  
  @keyframes mobileScroll {
    0% {
      transform: translateX(60%);
    }
    100% {
      transform: translateX(-6%);
    }
  }
  
  .box {
    width: 80px;
    font-size: 11px;
    padding: 8px;
    text-align: center;
  }

  .container_adjust
  {
    margin-top: 40px;
  }

  .box_Container
  {
    margin-top: 15px;
  }

  .Projects >.dot_sidebar >.sidebar
  {
  
    height: 1950px;
  }

  .box_Container
  {
    padding-left: 25%;
     grid-template-columns: repeat(1,1fr);
  }

  .contact_conent{
    margin-top: 38px;
  }
  

  .connect_container {
    display: grid;
    grid-template-columns: 1fr; /* only one column */
    grid-template-areas:
      "pic1 pic1 pic1"
      "c1 c1 c1"
      "b1 b1 b1"
      "pic2 pic2 pic2"
      "c2 c2 c2"
      "b2 b2 b2"
      "pic3 pic3 pic3"
      "c3 c3 c3"
      "b3 b3 b3 ";
    gap: 1rem;
  }
.gmail_img
{
  margin-right: 0px;
  width: 100px;
  height: 100px;
}

#c3 {
  font-size: 1rem;
  width: 350px;
  text-align: justify;
  font-weight: 300;
  margin-left: 0%;
}


.button{
  margin-right:0px ;

}
  

.Contact > .dot_sidebar >.sidebar {
  height: 1100px;
}

.resume{
  
  margin-top: 30px;
}




footer{

  margin-top: 5px;

}

.myname h1 {
    
  text-align: center;
  font-size: 20px;
}

.group .aspire  p {
  width: 200px;
  font-size: 14px;
  color: rgba(13, 142, 154, 0.843);
  font-weight: 800
}

.about_me_title h1 {
  position: relative;
  margin-top: 40px;
  margin-left: 0px;
  font-size: 16px;
}


.skills_title h1 {

  margin-top: 0px ;
}

.project_title h1 {
  position: relative;
  margin-top: 0px;
  margin-left: 0px;
  font-size: 20px;
}

.contact_title > h1 {
margin-top: 0px;
}
}
/* ------------------- Mobile THING -M  ----------  */
@media (max-width: 376px) {

  .mobile_display >.myname>h1 {
    width: 400px;
    text-align: center;
    font-size: 15px;
}



.About>.dot_sidebar>.sidebar {
  height: 350px;
}

.About >.text-container>.about_me_content>p {
  width: 300px;
}

.contact_conent {
  margin-top: 38px;
}

.resume> .leftline, .rightline
{
  display: none;
  
}

.Contact > .dot_sidebar >.sidebar {
  height: 1000px;
}


.resume > .view
 {
    
    background: linear-gradient(135deg, #436e95, #2d4f6e);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(67, 110, 149, 0.4);
    transition: 0.3s ease-in-out;
    
}

.resume > .view>a {
  font-size: 14px;
}


.left_line, .right_line {
  width: 50px;
  height: 3px;
}

.mobile_display >.hookupline {
  margin-top: 10px;
  padding-left: 15px;
  width: 95%;
}

#c1,#c2,#c3
 {
        font-size: 1rem;
        width: 250px;
        text-align: justify;
        font-weight: 300;
    }


    .resume
    {
      padding-right: 60px;
    }

}

/* ------------------- Mobile THING -M  ----------  */

@media (max-width: 320px) {

  .navlist
  {
          padding-right: 320px;
          width: 30%;
          gap: 1rem;
  }

  .logo
 {
    margin-top: 60px;
    margin-bottom: 60px;
    width: 200px;
    height: 200px;
 }

 .mobile_display >.hookupline {
  margin-top: 10px;
  padding-left: 15px;
  width: 90%;
  }
  .box_Container {
    padding-left: 5%;
    grid-template-columns: repeat(1, 1fr);
  }
  .resume {
    padding-right: 30px;
  }

  .About >.text-container>.about_me_content>p {
    width: 250px;
    line-height: 1.5rem;
  }

}








