* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  scroll-behavior: smooth;
  /* font-family: 'Quicksand', sans-serif; */
  /* font-family: 'Poppins', sans-serif; */
  font-family: "Quicksand", sans-serif;
  /* font-family: 'Yuji Hentaigana Akari', cursive; */
}
:root {
  --bg-color: #f9eefe;
  --text-color: #333;
  --main-color: #2c186b;
  --white-color: #fdfdfd;
  --shadow-color: #rgba(0, 0, 0, 0.2);
}
html {
  font-size: 68.5%;
  overflow-x: hidden;
}
body {
  background: var(--bg-color);
  color: var(--text-color);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 7%;
  background: transparent;
  display: flex;
  align-items: center;
  z-index: 100;
  transition: 0.5s;
}

.header.sticky {
  background: var(--bg-color);
  box-shadow: 0 0.1rem 1rem var(--shadow-color);
}

.logo {
  font-size: 2.5rem;
  color: var(--main-color);
  font-weight: 600;
  cursor: default;
  margin-right: auto;
}
.navbar a {
  position: relative;
  font-size: 1.7rem;
  color: var(--white-color);
  font-weight: 500;
  margin-right: 3.5rem;
}

.header.sticky .navbar a {
  color: var(--text-color);
}
.header.sticky .navbar a.active {
  color: var(--main-color);
}

.navbar a.active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 0.2rem;
  background: var(--white-color);
}

.header.sticky .navbar a::before {
  background: var(--main-color);
  opacity: 0.7;
}

#darkMode-icon {
  font-size: 2.4rem;
  color: var(--white-color);
  cursor: pointer;
}
.header.sticky #darkMode-icon {
  color: var(--text-color);
  opacity: 0.9;
}

section {
  min-height: 100vh;
  padding: 10rem 7% 2rem;
}
.home {
  display: flex;
  align-items: center;
}
.home .home-content {
  max-width: 44rem;
}
.home-content h3 {
  font-size: 8rem;
  font-weight: 700;
  line-height: 0.3;
  margin-bottom: 3rem;
}
.home-content h1 {
  font-size: 6.5rem;
  font-weight: 700;
  margin-top: 1.3rem;
  margin-bottom: 0.3rem;
}
.home-content .name {
  color: var(--main-color);
}
.home-content p {
  font-size: 3.6rem;
  margin-bottom: 2rem;
}
.home-content .social-media a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  background: transparent;
  border: 0.2rem solid var(--main-color);
  border-radius: 50%;
  box-shadow: 0 0.2ren 0.5rem var(--shadow-color);
  font-size: 2rem;
  color: var(--main-color);
  margin: 0.5rem 1.5rem 3rem 0;
}
.home-content .social-media a:hover {
  background: var(--main-color);
  color: var(--white-color);
}
#more {
  display: none;
}
.btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  background: var(--main-color);
  border-radius: 0.6rem;
  box-shadow: 0 0.2rem 0.5rem var(--shadow-color);
  font-size: 1.6rem;
  color: var(--white-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  border: 0.2rem solid transparent;
  transition: 0.5s ease;
}
.btn:hover {
  background: transparent;
  color: var(--main-color);
  border-color: var(--main-color);
}
.home .profession-container {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 768px;
  height: 768px;
  /* background: red; */
  overflow: hidden;
  pointer-events: none;
}

/* Add this to your CSS file */

.profession-container .profession {
  opacity: 0;
  transform: translateY(50px);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.profession {
  width: 300px;
  height: 100px;
}

.Navbar {
  /* display: flex; */
  padding: 16px;
  font-family: sans-serif;
  color: rgb(254, 2, 2);
}

.Navbar__Link {
  padding-right: 8px;
}

.Navbar__Items {
  display: flex;
}

.Navbar__Items--right {
  margin-left: auto;
}

.Navbar__Link-toggle {
  display: none;
}
.img_girl img {
    display: none;
   }
@media screen and (max-width: 1000px) {
  .navbar a {
    color: var(--main-color);
  }
  .profession-container {
    display: none;
  }
  .img_girl img {
    display: inline;
    border-radius: 45%;
    margin-bottom: 150px;
    height: 300px; /* Adjust the height as per your preference */
    width: 300px; /* Adjust the width as per your preference */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: zoomInOut 5s infinite alternate;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
  .img_girl img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
@keyframes zoomInOut {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }
}

@media screen and (max-width: 900px) {
 .img_girl img {
        display: none;
       }
  .Navbar__Items,
  .Navbar {
    flex-direction: column;
  }

  .Navbar__Items {
      display:none;
    }

  .Navbar__Items--right {
    margin-right: 0;
  }

  .Navbar__ToggleShow {
    display: flex;
  }

  .Navbar__Link-toggle {
    align-self: flex-end;
    display: initial;
    position: absolute;
    cursor: pointer;
    color: #100b0b;
    font-size: 3.0rem;
  }
}

.home .profession-container .profession-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 768px;
  height: 768px;

  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .profession-box .profession {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--main-color);
  transform: rotate(calc(360deg / 4 * var(--i)));
  transform-origin: 384px;
  background-color: var(--bg-color);
  padding: 13px 0;
}

.home .profession-box .profession:nth-child(1) i {
  margin-right: 15px;
}

.home .profession-box .profession:nth-child(2),
.home .profession-box .profession:nth-child(4) {
  padding-bottom: 3.8rem;
}

.home .profession i {
  font-size: 3.8rem;
}
.home .profession h3 {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 600;
}
.home .profession-box .circle {
  width: 560px;
  height: 560px;

  border: 3px solid var(--main-color);
  border-radius: 50%;
}
.home .profession-container .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 384px solid var(--main-color);
  border-right: 384px solid var(--main-color);
  border-bottom: 384px solid var(--main-color);
  border-left: 384px solid transparent;
}
.home-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
  border-radius: 85% 0% 0 0;
  pointer-events: none;
}

.about {
  display: flex;

  justify-content: center;
  align-items: center;
  gap: 4rem;
}
.about-img img {
  width: 60%;
}
.heading {
  font-size: 6.8rem;
  text-align: center;
}

.about-content h2 {
  text-align: left;
  line-height: 1.2;
}
.about-content h3 {
  font-size: 3rem;
}
.about-content p {
  font-size: 2.2rem;
  margin: 2rem 0 3rem;
}
.about-content span {
  color: rgb(32, 11, 64);
}
/* /////// */
.services {
  min-height: auto;
  padding-bottom: 7rem;
  margin-top: 0;
  padding-top: 100px;
}
.services h2 {
  margin-bottom: 50px;
  font-size: 5rem;
}

.services .services-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.services-container .services-box {
  flex: 1 1 30rem;
  background: var(--bg-color);
  padding: 3rem 2rem 4rem;
  border-radius: 2rem;
  box-shadow: 0 0.1rem 0.5rem var(--shadow-color);
  text-align: center;
  /* border-top: .6rem solid var(--main-color); */
  border-bottom: 0.6rem solid var(--main-color);
  transition: 0.5 ease;
  height: 260px;
}

.services-container .services-box:hover {
  box-shadow: 0 0.1rem 2rem var(--shadow-color);
  transform: scale(1.04);
}
.services-box i {
  font-size: 5rem;
  margin-bottom: 30px;
  color: var(--main-color);
}

.services-box h3 {
  font-size: 2.6rem;
  transition: 0.5s ease;
}
.services-box:hover h3 {
  color: var(--main-color);
}
.services-box p {
  font-size: 1.6rem;
  margin: 1rem 0 3rem;
}

.projects {
  min-height: auto;
  padding: 7rem;
  margin-top: 50px;
}
.projects h2 {
  margin-bottom: 50px;
  font-size: 5rem;
}

.projects .services-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.projects .services-container .services-box {
  flex: 1 1 30rem;
  background: var(--bg-color);
  padding: 3rem 2rem 4rem;
  border-radius: 2rem;
  box-shadow: 0 0.1rem 0.5rem var(--shadow-color);
  text-align: center;
  /* border-top: .6rem solid var(--main-color); */
  border-bottom: 0.6rem solid var(--main-color);
  transition: 0.5 ease;
  height: 420px;
}

.projects .services-container .services-box:hover {
  box-shadow: 0 0.1rem 2rem var(--shadow-color);
  transform: scale(1.04);
}
.projects .services-box i {
  font-size: 5rem;
  margin-bottom: 30px;
  color: var(--main-color);
}

.projects .services-box h3 {
  display: inline;
  font-size: 3.6rem;
  transition: 0.5s ease;
}
.projects .services-box:hover h3 {
  color: var(--main-color);
}
.projects .services-box p {
  font-size: 1.8rem;
  margin: 1rem 0 1.5rem;
  text-align: justify;
}

.contact h2 {
  margin-bottom: 3rem;
}
.contact form {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
  margin-bottom: 3rem;
}
.contact form .input-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact form .input-box input,
.contact form textarea {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  color: var(--text-color);
  border-radius: 0.8rem;
  margin: 0.7rem 0;
  box-shadow: 0 0.1rem 0.5rem var(--shadow-color);
}
.contact form .input-box input {
  width: 49%;
}
.contact form textarea {
  resize: none;
}
.contact form .btn {
  margin-top: 2rem;
  cursor: pointer;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 7%;
  background: var(--main-color);
}
.footer img {
  height: 30px;
  width: 30px;
  margin-top: 10px;
  margin-right: 5px;
  border-radius: 50%;
  /* object-fit:inherit; */
}
.footer-text p {
  font-size: 1.6rem;
  color: var(--white-color);
}
.footer-iconTop a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  background: var(--white-color);
  border-radius: 0.8rem;
  border: 0.2rem solid var(--main-color);
  outline: 0.2rem solid transparent;
}
.footer-iconTop a:hover {
  outline-color: var(--white-color);
}
.footer-iconTop a i {
  font-size: 2.4rem;
  color: #333;
}
/* Add this to your CSS file */
/* Add this to your CSS file */

.skills {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.skills .heading {
  /* text-align: center; */
  margin-bottom: 4rem;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.skill {
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.2rem 0.5rem var(--shadow-color);
  transition: 0.3s;
}

.skill:hover {
  transform: translateY(-35px);
}

.skill h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--main-color);
}

.skill p {
  font-size: 2rem;
  color: var(--text-color);
}
