:root {
      --main-red: #b30000;
      --cream-white: #fde4c2;
      --ash-grey: #e0e0e0;
      --text-dark: #222;
      --text-light: #666;
      --accent-blue: #0ef;
    }body {
  background-color: var(--cream-white);
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--main-red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 25px;
  height: 3px;
  background: var(--main-red);
  border-radius: 2px;
  transition: 0.4s;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-8px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(8px);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.side-menu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: var(--main-red);
  color: white;
  padding-top: 80px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.side-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.side-menu nav ul li {
  margin: 20px 0;
}

.side-menu nav ul li a {
  color: white;
  font-size: 18px;
  text-decoration: none;
}

.side-menu.active {
  right: 0;
}

#hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

#hero h1 {
  font-size: 3rem;
  animation: fadeInDown 1s ease-out;
}

#hero p {
  font-size: 1.4rem;
  color: var(--accent-blue);
  animation: fadeInUp 1.5s ease-in-out;
}
#hero a{
  margin-right: 10px;
  color: white;
}
#hero img{
  height: 100px;
  width: 100px;
  border-style: solid;
  border-radius: 40%;
  border-width: 5px;
}
section {
  padding: 60px 20px;
}
.about {
  text-align: center;
  color: var(--main-red);
  font-size: 2rem;
  margin-bottom: 15px;
  animation: pulse 1s ease;
}
.skillserv{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.container{
  width: 370px;
  height: 415px;
  background-color: #fcf4e8;
  border-width: 5px;
  border-style: solid;
  border-radius: 17%;
  border-color: #2c5364;
}
.container h2{
  text-align: center;
}
h2 {
  text-align: left;
  color: var(--main-red);
  font-size: 2rem;
  margin-bottom: 15px;
  animation: pulse 1s ease;
}

ul li {
  margin-bottom: 10px;
  animation: slideInLeft 0.8s ease-in;
}
.finished-projects{
  background: linear-gradient(to right, #fde4c2, #73a4b4, #d359e4) ;
  width: 80%;
}

#proje {
  margin-top: 100px;
  text-align: center;
  font-size: 35px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  margin-bottom: 5px;
}
.cont{
  margin: 10px;
}
#projects_container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  height: fit-content;
}
.projects{
  margin-top: 5px;
  width: 230px;
  height: 270px;
  background-color: #fcf4e8;
}
.projects p{
  font-size: 23px;
}
footer {
  background: linear-gradient(to right, #3a0ca3, #7209b7);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

footer .social-icons a {
  margin: 0 10px;
  color: white;
  font-size: 20px;
  transition: transform 0.3s;
}

footer .social-icons a:hover {
  color: var(--accent-blue);
  transform: scale(1.2);
}
