@import url('https://fonts.googleapis.com/css2?family=Victor+Mono:ital,wght@0,100..700;1,100..700&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Victor Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

body {
    background-color: #000000; /* Pure Black background */
    color:aliceblue;
  }
.sidebar{
    /* position: fixed; */
    /* width: 10vw; */
    max-height: 100vh;
    padding: 20px;
    transition: transform 0.3s ease-in; 
    border-right: 1px solid #FFFFFF; /* add a glowing white border */
    box-shadow: 0 0 5px #FFFFFF, 0 0 5px #FFFFFF, 0 0 5px #FFFFFF; /* add a glowing effect to the border */

}



.sidebar nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 150px 40px 60px 40px;
  }
  .sidebar nav ul li {
    margin: 0;
    padding: 0;
  }
  .sidebar nav ul li a{
    text-decoration: none;
    color: white;
  }

  .sidebar nav ul li a:hover{
    color: red;
  }

.main{
    
    width: 90vw;
    height: 100vh;
    padding-left: 20px;
}
/* .home-info{
  
  height: 1/2vh;
  width: 80vw;
  margin:125px auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
} */
.home-info {
  /* background-color: red; */
  height: 50vh; /* changed from 1/2vh to 50vh for better responsiveness */
  width: 80vw;
  margin: 25vh auto; /* changed from 125px to 10vh for better responsiveness */

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.devInfo{
  display: flex;
  gap: 20px;
  justify-content: center;
  justify-content: space-between;
  flex-direction: column;
}
.hello{
  font-size: 40px;
  
}

.name{
  font-size: 30px;
  font-weight: bold;
  font-family: "DM Serif Text", serif;
  color: red;
}

.myInfo{
  font-size: 15px;
}
.moreAbout{
  font-size: small;
}

.buttons button{
    padding:9px 14px;
    border-radius: 5px;
    font-weight: bolder;  
    color: white;
    background-color: red;
    font-size: 15x;
    margin: 0 3px;
    cursor: pointer;
}
.buttons button:hover{
  background-color: white;
  color: red;
}

.devPic{
  position: relative;
  width: 400px; /* adjust width to your needs */
  height: 350px; /* adjust height to your needs */
  /* display: flex;
  flex-direction: column; */
}
.mySlides img{
  vertical-align: middle;

  width: 65vw;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* The dots/bullets/indicators */

.dot {
  height: 1em;
  width: 1em;
  min-width: auto;
  margin: 0 0.2em;
  background-color: rgb(4, 4, 115);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease-in-out;
}

.active {
  background-color: rgb(112, 4, 4);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}




.sidebarGo{
  transform: translate(-443px, 0px);
  position: absolute;
}
.hamburger {
  position: absolute;
  cursor: pointer;
  top: 10px;
  left: 10px;
}
.fa-bars{
  font-size: 40px;
}
.hamburger i:nth-child(2) {
  /* Your styles here */
  margin-left: 180px;
  font-size: 20px;
  
}

.container{
    display: flex;
}

.contact-me {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.contact-me form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
 
  box-shadow: 0 0 10px rgba(134, 3, 3, 0.1);
}

/* Contact Form Styles */
#contact-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contact-form h2 {
  margin-top: 0;
}

#contact-form .form-group {
  margin-bottom: 20px;
}

#contact-form label {
  display: block;
  margin-bottom: 10px;
}

#contact-form input, #contact-form textarea {
  width: 80%;
  height: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contact-form textarea {
  height: 100px;
  resize: vertical;
}

#contact-form button[type="submit"] {
  background-color: red;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#contact-form button[type="submit"]:hover {
  background-color: white;
  color: red;
}


/* About Section Styles */
.about-info {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.about {
  padding: 40px 0;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pic-icon {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.profile-pic {
  flex-basis: 25%;
  margin: 20px;
}

.profile-pic img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 25%;
}

.about-content {
  flex-basis: 60%;
  margin: 20px;
}

.about-content h2 {
  margin-top: 0;
}

.about-content p {
  margin-bottom: 20px;
}

.btn {
  background-color: #FF3737; /* Red color */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background-color: #FF6969; /* Darker red color */
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  margin-right: 10px;
  color: rgb(28, 28, 108);
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #FF3737; /* Red color */
}

.social-links i {
  font-size: 24px;
}

/* Media Queries */

/* Large screens (Desktops) */
@media only screen and (min-width: 1200px) {
  .about-inner {
    max-width: 1000px;
  }
  .profile-pic {
    flex-basis: 30%;
  }
  .about-content {
    flex-basis: 65%;
  }
}

/* Medium screens (Laptops) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-inner {
    max-width: 900px;
  }
  .profile-pic {
    flex-basis: 35%;
  }
  .about-content {
    flex-basis: 60%;
  }
}

/* Small screens (Tablets) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-inner {
    max-width: 700px;
  }
  .profile-pic {
    flex-basis: 40%;
  }
  .about-content {
    flex-basis: 55%;
  }
}

/* Extra small screens (Mobiles) */
@media only screen and (max-width: 767px) {
  .about-inner {
    flex-direction: column;
    align-items: center;
  }
  .profile-pic {
    flex-basis: 100%;
    margin: 10px;
  }
  .about-content {
    flex-basis: 100%;
    margin: 10px;
  }
  .btn {
    padding: 10px 15px;
  }
  .social-links {
    margin-top: 10px;
  }
  .social-links a {
    margin-right: 5px;
  }
}
/* Project Section Styles */

.card-grid {
  max-width: 1000px;
  
  margin: 20px auto;
}
.project-head{
    text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.project-grid h3{
  color: red;
}

/* .grid-btn{
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
} */

.btn-des {
  text-decoration: none;
  background-color:red;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-des:hover {
  background-color: white;
  color: red;
}
.cards{
   
  max-height: fit-content;
  position:relative;
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  margin-top: 30px;
  margin-bottom: 20px;
  overflow: hidden;
}

.cards img{
  width: 100%;
  object-fit: cover;
  height: auto;
}
.cards-content{
  padding: 10px;
}
.card-content h3{
  font-size: 28px;
  margin-bottom: 8px;
}
.text{
  color: #666;
  font-size: 15px;
  overflow: hidden;
  max-height: 100px;
  transition: max-height 0.3s ease;
  text-align: justify;
}
.btns{
  display: flex;
  padding: 8px 16px;
  justify-content: space-evenly;
  
  text-decoration: none;
  border-radius: 4px;
  margin-top: 16px;
}
