/* ?This is where reusable styling of this template will be. 
   !Will contain things like:
   * Button styling
   * Background color styling
   * padding and margin
*/

body {

  margin:0px;

 
}

.container {
  max-width: var(--width-medium);
  margin: 0 auto;
  padding: 1rem 2rem;
}

h1::selection,
h2::selection {
  color: #111;
  background: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.9rem;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: 0.3s;
}

.btn-primary {
  background: var(--primary-color);
  color: #000000;
}

.btn-secondary {
  margin: 5px 0;
  background-color: var(--bg-secondary);
  color: var(--bg-primary);
}

/* add hover to resume button */
.btn-primary:hover {
  background: var(--secondary-color);
}

/* Dark mode toggle */
#switch {
  display: none;
}

.toggle-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toggle-icons>img {
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: 30px;
}

.moon {
  transform: rotate(10deg);
}

#switch:checked+.toggle-icons .moon {
  transform: rotate(250deg);
}

#switch:checked+.toggle-icons .sun {
  transform: rotate(100deg);
}

/* Header Container */
.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
  padding: 1rem;
}

.header-container>div {
  margin-top: 1rem;
}

#project-head>* {
  text-align: left;
  padding: 0;
  margin: 0;
}

.content-text {
  text-align: center;
  margin: 1.5rem 0;
}

.content-text h2 {
  font-size: 3rem;
  line-height: 1.2;
  transition: 0.2s ease-in-out;
  padding-left: 3px;
}

.content-text p {
  padding: 0.5rem;
  padding-left: 5%;
  margin: 0 auto;
  text-align: center;
  max-width: 870px;
}

.bio-text {
  width: 92%;
}

/* Project cards */
.card {
  padding: 1rem;
  background: var(--card-background);
  border: 1px solid #000;
  color: rgb(244, 244, 248);
  border-radius: 5px;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

.card a {
  color: #ffffff;
  transition: 0.25s ease-in-out;
  font-size: 1.1rem;
  margin-right: 0.3rem;
}

.card a:hover {
  color: var(--primary-color);
}

.card:hover {
  box-shadow: inset 0 100px 1000px 10px rgba(0, 0, 0, 0.9);
}

.card:hover .project-info {
  opacity: 1;
}

/* Project Images */

/* project 1 */
.card:nth-child(1) {
  background: url(../assets/project/project-1.jpg) center center/cover;
}

/* Project 2 */
.card:nth-child(2) {
  background: url(../assets/project/project-2.png) center center/cover;
}

/* Project 3 */
.card:nth-child(3) {
  background: url(../assets/project/project-3.png) center center/cover;
}

/* Project 4 */
.card:nth-child(4) {
  background: url(../assets/project/project-4.png) center center/cover;
}

/* Project 5 */
.card:nth-child(5) {
  background: url(../assets/project/project-5.png) center center/cover;
}

/* Project 6 */
.card:nth-child(6) {
  background: url(../assets/project/project-6.png) center center/cover;
}
/* project 1 */
.card:nth-child(7) {
  background: url(../assets/project/project-7.jpg) center center/cover;
}

/* Project 2 */
.card:nth-child(8) {
  background: url(../assets/project/project-8.png) center center/cover;
}

/* Project 3 */
.card:nth-child(9) {
  background: url(../assets/project/project-9.png) center center/cover;
}

/* Project 4 */
.card:nth-child(10) {
  background: url(../assets/project/project-10.png) center center/cover;
}

/* Project 5 */
.card:nth-child(11) {
  background: url(../assets/project/project-11.png) center center/cover;
}

/* Project 6 */
.card:nth-child(12) {
  background: url(../assets/project/project-12.png) center center/cover;
}
/* Media Queries */
@media (max-width: 768px) {
  .header-container {
    margin-top: 7rem;
    text-align: center;
  }

  .content-text h2 {
    font-size: 2.5rem;
  }
}

.awards-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  margin: 5px 5px ;
}


.awards-heading {
  font-size: 24px; 
  color: #000000;
}

.awards-paragraph {
  display: inline-block;
  font-size: 16px;
  color: #07110f;
  padding-bottom: 50px 50px;
  margin-bottom: 0px;
}

.extra-container {
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  margin: 5px 5px;
}


.extra-heading {
  font-size: 24px; 
  color: #000000;
}

.extra-paragraph {
  font-size: 16px;
  color: #07110f;
  padding-bottom: 50px 50px;
  margin-bottom: 30px;
}

.ex-container {
 
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  margin: 5px 5px ;
  position: relative;
  width: 90%;
  margin: 30px auto 30px auto;
  padding-right: 10px;
  
}

.one{
  width:100% ;
  height: 100px;
  margin-top: 6px;
}

.two{
  width:20% ;
  height: 72px;
  position: absolute;
  top: 9px;
}

.navbar1 {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
}

.con-project {
  width: auto;
  height: auto;
  padding-left: 100px;
  padding-top: 100px;
}

.text {
  padding-top: 10px;
  padding-bottom: 20px;
}



#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}

#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(-90deg);
}

#menu__toggle:checked ~ .menu__box {
  right: 0;
}

.menu__btn {
  position: fixed;
  top: 1px;
  right: 30px; /* Adjust the right position as needed for the right side */
  color: rgb(255, 255, 255);
  padding: 40px 15px;
  border-radius: 5px;
  text-decoration: none;
  z-index: 1001;
  cursor: pointer;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition-duration: .25s;
}

.menu__btn > span::before {
  content: '';
  top: -8px;
}

.menu__btn > span::after {
  content: '';
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 70%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #ECEFF1;
  box-shadow: -2px 2px 6px rgba(87, 88, 88, 0.4); /* Adjust shadow for the right side */
  transition-duration: .25s;
  z-index: 1000;
}

.menu__item:hover {
  background-color: #CFD8DC;
}


.screw-img{
 width:35%;
 margin-left:10px;
 float: right;

}

.fixed{
  display: block;
}
.screw-img1{
  width:140%;
  margin-left:10px;
  float: right;
  
 }

 .screw-img2{
  width:170%;
  margin-left:10px;
  float: right;
  
 }

 .screw-img3{
  width:300%;
  margin-left:10px;
  float: right;
  
 }

 .screw-img4{
  width:140%;
  margin-left:10px;
  float: right;
  
 }

 .screw-img5{
  width:145%;
  margin-left:10px;
  float: right;
  
 }

 .screw-img6{
  width:100%;
  margin-left:10px;
  float: right;
  
 }

 .screw-img7{
  width:80%;
  height: 200%;
  float: right;
  
 }

 .screw-img8{
  width:110%;
  margin-left:10px;
  float: right;
  
 }

.navbar ul{
  list-style: none;
}

.nav-link2 {
  margin: 0 1rem;
  font-size: 0.9rem;
  font-weight: var(--weight-semibold);

}

.nav-link1 {
  margin: 0 1rem;
  font-size: 0.8rem;
  font-weight: var(--weight-semibold);

}
.text1{
  padding-right: 130px;
  display: block;
}


.text2{
  padding-right: 130px;
  display: block;
}

.text3{
  padding-right: 150px;
  margin-right: 100px;
  display: block;
}

.text4{
  padding-right: 130px;
  display: block;
}

.text5{
  padding-right: 130px;
  display: block;
}

.text6{
  padding-right: 130px;
  display: block;
}

.text8{
  padding-right: 130px;
}
