@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primarycolor: #000000;
  --navcolor: #010914;
  --secondarycolor: #ffffff;
  --tertiary: #f9f871;
  --shade: #c6c6c6;
  --mainhighlight: #70facb;
  --color: #00c6cf;
  --highlight: #8685ef;
  --hover_color: #518ff8;
  --maintextcolor: #ffeeca;
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
  font-weight: 400;
  font-style: normal;
}
body {
  height: 100vh;
  width: 100vw;
  background-color: var(--primarycolor);
  color: var(--secondarycolor);
}
.container {
  height: 100vh;
  width: 100%;
  padding-top: 72px;
  padding-inline: 72px;
  box-sizing: border-box;
}
#thirdcontainer{
    height: 100vh;
    width: 100%;
    padding-top: 65px;
    padding-inline: 72px;
    box-sizing: border-box;
}
.secondarea {
  padding-top: 72px;
  padding-inline: 72px;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}
.scndcontainer {
  height: 100vh;
  width: 100%;
  padding-top: 72px;
  padding-inline: 72px;
  box-sizing: border-box;
}
.scndcontainerwrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 105px;
  border-radius: 20px;
  background-color: var(--primarycolor);
}
.scndcontainerwrapperr {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  gap: 30px;
  background-color: var(--primarycolor);
}

.rowwrapper {
  height: 400px;
  width: 100%;
  display: flex;
  gap: 25px;
  box-sizing: border-box;
  padding-inline: 25px;
  justify-content: center;
  align-items: center;
}
.column {
  height: 100%;
  flex: 1;
  z-index: 3;
  border-radius: 16px;
  background-color: white;
  text-align: justify;
  font-size: 18px;
  line-height: 25px;
  position: relative;
}
.effect {
  background-color: var(--navcolor);
  height: 100%;
  width: 100%;
  padding: 25px 10px;
  border-radius: 15px;
  z-index: 4;
  box-sizing: border-box;
}
.containerofportfolio{
    height: 110vh;
    width: 100%;
    padding-top: 72px;
    padding-inline: 72px;
    box-sizing: border-box;
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.column:after,
.column:before {
  position: absolute;
  content: "";
  background-image: conic-gradient(
    from var(--angle),
    transparent 80%,
    var(--color)
  );
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -3;
  animation: rotate 3s linear infinite;
  border-radius: 15px;
  padding: 3px;
}
.column:before {
  filter: blur(1.5rem);
  opacity: 0.6;
}
@keyframes rotate {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

nav {
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  padding-inline: 72px;
  box-sizing: border-box;
  background-color: var(--navcolor);
  z-index: 10;
}
.text {
  height: 100%;
  width: 125px;
  display: flex;
  align-items: center;
  font-weight: 900;
  letter-spacing: 3px;
}
.text h1 {
  font-weight: bolder;
  font-size: 35px;
}
.text img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
  mix-blend-mode: darken;
}
.list {
  height: 100%;
  width: 600px;
  display: flex;
  gap: 35px;
  align-items: center;
}
.list li {
  list-style: none;
  font-size: 18px;
}
.hero span {
  color: var(--color);
}
.hero > .colorchg {
  color: var(--mainhighlight);
  font-weight: bolder;
}

.list ul {
  display: flex;
  gap: 35px;
}
.list ul > li > a:hover {
  color: var(--mainhighlight);
  border-bottom: 4px solid var(--mainhighlight);
}
.list > ul > li > a {
  text-decoration: none;
  color: var(--maintextcolor);
  border-bottom: 0px solid transparent;
  transition: color 1s ease-in-out, border-bottom 1s ease-in-out 0.1s;
}
.box {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  /* background-color: #00c6cf; */
}
.photosection {
  width: 50%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--secondarycolor);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.photosection2 {
  width: 300px;
  height: 90%;
  border-radius: 50%;
  background-color: var(--secondarycolor);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.photosection img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.photosection2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.firstwrapper {
  height: 400px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scndwrapper {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding-left: 15px;
  gap: 25px;
}
.headertext {
  height: 67px;
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  color: var(--mainhighlight);
}
#centerheader {
  text-align: center;
  font-size: 35px;
}
.services {
  font-size: 35px;
  font-weight: bold;
  color: var(--mainhighlight);
  position: relative;
  height: 100%;
  z-index: 1;
}
.services:after {
  content: "";
  z-index: -2;
  background-color: var(--mainhighlight);
  bottom: -3px;
  height: 3px;
  width: 43px;
  position: absolute;
  left: 13%;
}
.my {
  font-size: 35px;
  font-weight: bold;
  color: var(--secondarycolor);
}
.hero {
  height: 40px;
  width: 100%;
  font-size: 25px;
  display: flex;
  align-items: center;
}
.para {
  height: 120px;
  width: 80%;
  text-align: justify;
  font-size: 20px;
  display: flex;
  line-height: 19px;
  margin-top: 10px;
  box-sizing: border-box;
}
.sclmediaicons {
  height: 100px;
  width: 100%;
  display: flex;
  gap: 20px;
}
.bordericn {
  /* flex: 1; */
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  transform: bigger 0.2s ease-in-out;
  border: 2px solid transparent;
  margin-left: 2px;
  box-sizing: border-box;
}

.bordericn > a {
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}
.bordericn:hover {
  transform: scale(1.1);
  cursor: pointer;
  border: 2px solid var(--mainhighlight);
}
.bordericn > a > i {
  font-size: 35px;
  color: var(--primarycolor);
}
#topic {
  color: var(--secondarycolor);
  font-weight: 500;
}
#detail {
  color: var(--maintextcolor);
  margin-left: 55px;
  box-sizing: border-box;
}
.descri {
  height: 230px;
  width: 100%;
  display: grid;
  grid-template-rows: repeat(5, 30px);
  grid-template-columns: 120px 1fr;
  gap: 5px;
  white-space: nowrap;
  font-size: 20px;
  box-sizing: border-box;
  padding-top: 4px;
}
#box2 {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 20px;
}
.col1 {
  height: 100%;
  width: 50%;
  box-sizing: border-box;
  display: flex;
}
.photosection2 {
  height: 100%;
  width: 100%;
}
.btnwrapper {
  margin-top: -30px;
  box-sizing: border-box;
  height: 38px;
  width: 100%;
  text-align: center;
}
.btnwrapper>.button {
  height: 100%;
  width: 240px;
  outline: none;
  border: 1px solid transparent;
  color: var(--primarycolor);
  background-color: var(--mainhighlight);
  border-radius: 10px;
  font-size: 19px;
  transition:background-color .9s ease-in-out;
}
.button>a{
  text-decoration: none;
  font-size: 20px;
}
.btnwrapper .button:hover {
  transform: scale(1.1);
  a{
    color: var(--secondarycolor);
  }

  background-color: var(--highlight);
}
.scndpara {
  height: 120px;
  width: 100%;
  font-size: 20px;
  line-height: 19px;
  text-align: justify;
  margin-top: 5px;
  box-sizing: border-box;
}
.containerwrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 5px;

}
.containerwrapperofport{
    display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 5px; 
}
#secmy {
  color: var(--secondarycolor);
  font-size: 30px;
}
#secservices {
  color: var(--mainhighlight);
  font-size: 30px;
}
.portfoliomainwrapper {
  height: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.heroport {
  height: 20%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}
.herowrapper {
  height: 35px;
  width: 500px;
  display: flex;
  gap: 7px;
}
.item1 {
  flex: 1.8;
  height: 100%;
  background-color: var(--mainhighlight);
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--primarycolor);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.item1:hover {
  background-color: var(--highlight);
  cursor: pointer;
  color: var(--secondarycolor);
}
.item2:hover {
  background-color: var(--highlight);
  cursor: pointer;
  color: var(--secondarycolor);
}
.item3:hover {
  background-color: var(--highlight);
  cursor: pointer;
  color: var(--secondarycolor);
}
.item4:hover {
  background-color: var(--highlight);
  cursor: pointer;
  color: var(--secondarycolor);
}
.item2 {
  flex: 2.2;
  height: 100%;
  background-color: var(--secondarycolor);
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--primarycolor);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.item3 {
  flex: 3;
  height: 100%;
  background-color: var(--secondarycolor);
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--primarycolor);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.item4 {
  flex: 3.6;
  height: 100%;
  background-color: var(--secondarycolor);
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--primarycolor);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.imgsection {
  display: grid;
  height: 80%;
  width: 100%;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.img {
  background-color: var(--highlight);
  border-radius: 10px;
  overflow: hidden;
}
.followers {
  height: 80px;
  width: 100%;
  display: flex;
  gap: 15px;
}
#centerheade {
  font-size: 40px;
  height: 100px;
  text-align: center;
}
#font {
  font-size: 30px;
}
.area {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--secondarycolor);
  box-shadow: 0 0 10px var(--color);
  box-sizing: border-box;
  padding: 8px;
  text-align: center;
  border-radius: 10px;
}
.name {
  height: 60%;
  width: 100%;
  color: var(--color);
  font-size: 20px;
  font-weight: bold;
}
.detail {
  height: 40%;
  width: 100%;
  color: var(--primarycolor);
  font-weight: bold;
  font-size: 17px;
}
.dabbawrapper {
  height: 400px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: var(--navcolor);
  box-sizing: border-box;
  padding: 10px;
}
.dabbaimg {
  height: 55%;
  width: 100%;
}
.dabbaimg img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.dabbabox {
  height: 45%;
  width: 100%;
  gap: 5px;
  box-sizing: border-box;
}
.dabbaname>.colorchg{
    color: var(--maintextcolor);
}
.dabbawrapper:hover {
  .colorchg {
    color: var(--maintextcolor);
  }
  border: 2px solid #677381;
  box-sizing: border-box;
}
.maindabbawrapper {
  height: 450px;
  width: 100%;
  display: flex;
  gap: 15px;
  box-sizing: border-box;
  padding: 10px;
}
.happy {
  height: 50px;
  width: 100%;
  color: var(--maintextcolor);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}
.dabbaheader {
  height: 30px;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}
.dabbaname {
  height: 30px;
  width: 100%;
  font-size: 17px;
  display: flex;
  align-items: center;
}
.colorchg {
  color: var(--primarycolor);
  font-weight: 900;
}
.dabbareview {
  height: 80px;
  width: 100%;
  line-height: 20px;
  text-align: justify;
  font-size: 15px;
  display: flex;
  align-items: center;
}
.knowmore {
  height: 28px;
  width: 100%;
  font-size: 15px;
  color: var(--mainhighlight);
  cursor: pointer;
}
#last {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.inputbox {
  height: 400px;
  width: 100%;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: repeat(2, 1fr);
  padding: 10px;
  box-sizing: border-box;
  gap: 3px;
  background-color: var(--highlight);
}
#input1 input {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
input:focus {
  outline: none;
  border: none;
  border: 3px solid var(--secondarycolor);
}
input::placeholder {
  color: var(--highlight);
  font-size: medium;
}
input {
  padding-inline: 8px;
  font-size: medium;
  border: none;
}
#input2 input {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
#input3 input {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
#input4 input {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
#input1 {
  grid-area: 1/1/2/3;
}
#input2 {
  grid-area: 2/1/3/2;
}
#input4 {
  grid-area: 3/1/5/3;
}
.thirdcontentbtn {
  height: 50px;
  width: 100%;
  text-align: center;
  margin-top: 35px;
}
.thirdcontentbtn button {
  height: 100%;
  width: 120px;
  background-color: var(--mainhighlight);
  color: var(--primarycolor);
  border: 1px solid transparent;
  outline: none;
  border-radius: 7px;
  font-size: medium;
  cursor: pointer;
  font-weight: bold;
}
.thirdcontentbtn button:hover {
  background-color: var(--highlight);
  color: var(--secondarycolor);
}
form {
  height: 100%;
  width: 100%;
}
footer {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.elementss {
  height: 100%;
  width: 500px;
  display: flex;
  white-space: nowrap;
  gap: 5px;
  justify-content: center;
  align-items: center;
  font-size: medium;
}
.whatsapp {
  height: 60px;
  width: 200px;
  display: flex;
  position: fixed;
  bottom: 5px;
  left: 8px;
  z-index: 8;
  align-items: center;
  box-sizing: border-box;
}
.whatsappbtnarea {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: var(--mainhighlight);
  justify-content: center;
}
.whatsappbtnarea > a > .text {
  height: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  text-wrap: nowrap
  ;
  letter-spacing: 0.1px;
}


.whatsappbtnarea:hover {
  background-color: var(--highlight);

  .text {
    color: var(--secondarycolor);
  }
  .icon {
    animation: 0.8s bounce linear infinite;
    color: var(--secondarycolor);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
.whatsappbtnarea > a > .icon {
  font-size: 23px;
  height: 50%;
  width: 50%;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-left: 30%;
}
.whatsappbtnarea > a {
  text-decoration: none;
}
