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

html {
  scroll-behavior: smooth;
}

:root {
  --main-bg-color: #f2efe7;
  --secondary-bg-color: rgb(255, 216, 11);
  --font-color:#333333;
  --font-color-dark:#222222;

  --font-family-1: "Inter", sans-serif;
  --font-family-2: "Work Sans", sans-serif;
  --font-family-3: "Raleway", sans-serif;
}

img {
  max-width: 100%;
}

body {
  background-color: var(--main-bg-color);
}

.container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  align-items: center;
  max-width: 95%;
}

a {
  text-decoration: none;
}

.navBar {
  /* border: 2px solid red; */
  padding: 1rem 6rem;

  border-bottom: 1.6px solid var(--font-color);

  /* position: fixed;
  width: 100vw;
  background-color: var(--main-bg-color); */
}

.navBar-section-1 {
  font-family: var(--font-family-1);
  font-size: 2.4rem;
  font-weight: bolder;
  color: var(--font-color);
}

.navBar-section-2 {
  display: flex;
  font-family: var(--font-family-2);
  font-size: 1.4em;
  font-weight: bold;
}

.navBar-section-2 a {
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 1.6rem 1.6rem;
  color: var(--font-color);
  transition: border-color 0.1s;
}

.navBar-section-2 a:hover {
  border-color: var(--font-color); 
}

.navBar-section-3 {
  font-family: var(--font-family-3);
  font-size: 1.3em;
  background-color: var(--secondary-bg-color);
  padding: 1rem 2.6rem;
  border-radius: 400px;
  color: var(--font-color);
  font-weight: bold;
  transition: all 0.3s;
}

.navBar-section-3:hover {
  background-color: #333333;
  color: var(--main-bg-color);
}

/* ------ SECTION 1 ------ */
.section-1 {
  /* border: 2px solid teal; */
  font-family: var(--font-family-2);
  /* height: calc(100vh - 6.8em); */

  padding: 2em 5em;
  padding: calc((90vh)/4.1) 5em;

}

.section-1 .container {
  /* border: 2px solid red; */
}

.shreya-image {
  width: 44%;
  border-radius: 20px;
  /* filter: sepia(0.3) brightness(1.1) contrast(1.2); */
}

.section-1-intro {
  font-weight: 400;
  font-size: 3em;
  color: var(--font-color);
}

.section-1-1 {
  /* border: 2px solid palevioletred; */
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.section-1-1-buttons {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 1em;
}

.section-1-1 .button-1 {
  background-color: transparent;
  color: var(--font-color);
  border: 3px solid var(--font-color);
  margin-right: 1em;
}

.section-1-1 .button-1:hover {
  background-color: var(--font-color);
  color: var(--main-bg-color);
}

.section-1-1 .button-2 {
  border: 3px solid var(--secondary-bg-color);
}

.section-1-1 .button-2:hover {
  border-color: var(--font-color);
}

/* ------ DIVIDER ------ */
.divider {
  background-color: var(--font-color);
  display: flex;
  /* padding: 0em 0.5em; */
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-family-2);
  padding: 0em 5rem;
  font-size: 1.3em;
  gap: 1em;
}

.divider-property{
  color: var(--main-bg-color);
}

.divider-star {
  margin: 15px 0 0;
  font-size: 2em;
  color: var(--secondary-bg-color);
}

/* ------ SECTION 2 ------ */
.section-2 {
  /* padding: 10em 5em; */
  font-family: var(--font-family-2);

  /* border: 2px solid red; */
}

.section-2 .container {
  flex-direction: column;
  margin: 7rem auto;
}

.section-desc {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
  justify-content: center;

  /* border: 2px solid red; */

  margin-bottom: 5em;
}

.section-name {
  font-size: 40px;
}

.section-name::after {
  content: "";
  height: 10px;
  width: 3em;
  display: block;
  background-color: rgb(255, 214, 11);
  margin: -14px auto auto;
}

.section-desc p {
  font-size: 20px;
  font-weight: 700;
  margin-top: -0.5rem;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 90%;

  /* border: 2px solid red; */

  /* margin-top: 6rem; */
}

.service {
  margin: 1em;
  background-color: #d9d9d9;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;

  padding: 2.5em 2em;
  padding: 2.5em 2em;

  transition: all 0.3s;

  width: 300px;
}

.service:hover {
  transform: translateY(-15px);
}

.service span {
  margin: 0px 3em 0px 1em;
  font-size: 19px;
  font-weight: 550;
}

.service i {
  margin: auto 1em;
}

/* ------ SECTION 3 ------ */
.section-3 {
  border: 1px solid transparent;
  margin-top: -3em;
}

.section-3 .container {
  flex-direction: column;
  font-family: var(--font-family-2);
  margin: 7rem 5em;
}

.section-3 .section-name::after {
  width: 4.2em;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
}

.project {
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 460px;
  
  border: 2.5px solid black;
  border-radius: 5px;

  justify-content: space-between;
  padding: 1.5em;

  transition: all 0.3s;
}

.project a {
  color: var(--font-color-dark);
}

.project:hover {
  transform: translateY(-15px);
  cursor: pointer;
}

.project i {
  /* border: 2px solid red; */
  margin: 1em 0 0 -4px;
}

.project-desc {
  height: 60%;

  /* border: 2px solid red; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-desc h1 {
  padding-bottom: 1em;
}

.project-desc p {
  height: 60%;
  overflow: scroll;
  overflow-x: hidden;
}

/* ------ CONTACT ------ */
.last {
  background-color: #222222;
  display: flex;
  color: #d9d9d9;
  justify-content: space-between;
  padding: 2em 5em;
  font-family: "Work Sans", sans-serif;
}

.contact {
  /* border: 2px solid red; */

  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  align-items: center;
  /* width: 32%; */
  font-size: 20px;

  font-size: 3vmin;
}

.sm a {
  color: #d9d9d9;
  text-decoration: none;
}

.sm i {
  /* margin-right: 0.5em;
  margin-bottom: 1em; */
}

.sm {
  margin: 0;
  padding: 5px 2em;
}

.llogo {
  font-family: "Inter", sans-serif;
  align-self: center;
  font-size: 100px;
  font-weight: 890;

  font-size: 10vmin;
}

#text3head::after {
  content: "";
  height: 10px;
  width: 5em;
  margin: auto;
  margin-top: -15px;
  display: block;
  background-color: #ffd60b;
}

#text2head::after {
  content: "";
  height: 10px;
  width: 4.5em;
  margin: auto;
  margin-top: -14px;
  display: block;
  background-color: #ffd60b;
}

#text4head::after {
  content: "";
  height: 10px;
  width: 6.4em;
  margin: auto;
  margin-top: -15px;
  display: block;
  background-color: #ffd60b;
}

.name::after {
  content: "";
  height: 5px;
  width: 5em;
  margin: auto;
  margin-top: -22px;
  display: block;
  background-color: #ffd60b;
}

/* ------ MEDIA QUERIES ------ */
@media (width <= 1140px) {
  .container {
    flex-direction: column;
  }

  .section-1 {
    padding: 10vh 3em;
  }

  .section-1 .container {
    align-items: flex-start;
    gap: 4em;
  }

  .shreya-image {
    width: 100%;
  }

  .navBar .container {
    flex-direction: row;
  }

  .last {
    flex-direction: column;
    gap: 3em;
  }

  .projects {
    justify-content: center;
  }
}

@media (width <= 900px) {
  .navBar .navBar-section-3 {
    display: none;
  }

  .navBar-section-2 {
    display: none;
  }

  .navBar .container {
    justify-content: center;
  }
}

@media (width <= 650px) {
  .section-1 {
    /* border: 2px solid red; */
  }

  .section-1-1 {
    font-size: 0.9em;
    /* border: 2px solid yellowgreen; */
  }

  .divider {
    font-size: 0.7em;
    gap: 0rem;
    padding: 0;
    margin: 0;
  }

  .divider-star {
    margin: 10px 0 0;
  }

  .service {
    width: 330px;
    padding: 2rem 0;
  }

  .project {
    width: 340px;
  }
}

@media (width <= 560px) {
  .last .contact {
    flex-wrap: wrap;
    gap: 2em;
    /* border: 2px solid red; */
    font-size: 1em;
  }

  .last .sm {
    padding: 0;
  }
}

@media (width <= 400px) {
  .section-1 .container {
    /* gap: 1em; */
  }

  .section-1-intro {
    font-size: 2.3em;
  }

  .section-1-1-buttons {
    font-size: 0.7em;
  }

  .service span {
    margin: 0;
  }

  .project {
    width: 280px;
  }
}