@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");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.bulb-wrapper {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  max-width: 100%;
  background-color: #222;
  position: relative;
  z-index: 8;
}
.bulb-wrapper.on {
  background: radial-gradient(#555, #111);
}
.wire {
  position: absolute;
  left: calc(50% - 2px);
  width: 4px;
  height: 30vh;
  margin-top: 0px;
  background: #000;
  z-index: 1;
}
.bulb {
  position: relative;
  width: 80px;
  height: 80px;
  margin-top: 30vh;
  background: #444;
  border-radius: 50px;
  z-index: 2;
  float: left;
  position: relative;
}
.bulb::before {
  content: "";
  position: absolute;
  left: 22.5px;
  top: -50px;
  width: 35px;
  height: 80px;
  background: #444;
  border-top: 30px solid #000;
  border-radius: 10px;
}
.bulb-wrapper.on .bulb::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  filter: blur(40px);
}
.bulb-wrapper.on .bulb {
  background: #fff;
  box-shadow: 0 0 50px #fff, 0 0 100px #fff, 0 0 150px #fff, 0 0 200px #fff,
    0 0 250px #fff, 0 0 300px #fff, 0 0 350px #fff;
}
.bulb-wrapper.on .bulb::before {
  background: #fff;
}
.bulb-wrapper.on .bulbspan:nth-child(1) {
  box-shadow: 20px 20px 0 10px #fff;
}
.bulb-wrapper.on .bulbspan:nth-child(2) {
  box-shadow: -20px 20px 0 10px #fff;
}
.bulbspan:nth-child(1) {
  position: absolute;
  top: -16px;
  left: -4px;
  display: block;
  width: 30px;
  height: 30px;
  background: #222;
  transform: rotate(342deg);
  border-bottom-right-radius: 40px;
  box-shadow: 20px 20px 0 10px #444;
}
.bulbspan:nth-child(2) {
  position: absolute;
  top: -16px;
  left: -4px;
  display: block;
  width: 30px;
  height: 30px;
  background: #222;
  transform: rotate(17deg);
  border-bottom-right-radius: 40px;
  box-shadow: -20px 20px 0 10px #444;
}
.switch {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(#eee, #ccc, #eee);
  border: 3px solid #000;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: gray opx 20px 30px -10px;
}
.switch .btn {
  position: relative;
  width: 25px;
  height: 20px;
  background: linear-gradient(#777, #fff, #777);
  border-radius: 6px;
  border: 2px solid #000;
  cursor: pointer;
}
.switch .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background: linear-gradient(#fff, #fff);
  border-radius: 4px;
}
.on .switch .btn::before {
  top: 15%;
}

/* page1 */
.page1 {
  height: 80vh;
  width: 100%;
  position: absolute;
  z-index: 9;
  top: 8vh;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}
.page1 .left {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 6vw;
}
.page1 .left h1 {
  color: #fff;
  font-weight: 700;
  font-size: 2.6vw;
}
.page1 .left span {
  color: #00c896;
  font-weight: 900;
  font-size: 2.8vw;
}
.page1 .left p {
  color: #fff;
  font-size: 1.5vw;
  font-weight: 200;
}
.page1 .right {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page1 .right img {
  height: 80%;
  width: 80%;
  object-fit: cover;
}
/* page1 ends */

.headings {
  text-align: center;
  padding-bottom: 100px;
  font-size: 4vw;
  line-height: 1.4;
  background-color: #222;
}
.headings h1 {
  position: relative;
  font-weight: 900;
  color: #fff;
  margin-top: 0;
}
.headings h1:before {
  content: "";
  display: block;
  border-top: solid 3px grey;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
}

.headings span {
  background: #222;
  padding: 0 20px;
  position: relative;
}

/* headings section ends */

/* page2 */
.page2 {
  min-height: 100vh;
  width: 100%;
  background-color: #222;
  padding: 100px 6vw;
  color: white;
  margin: auto;
}
.page2content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.page2 .column {
  width: calc(50% - 30px);
}
.column.left h1,
.text h2 {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #00c896;
}
.column.left p,
.text p {
  line-height: 40px;
  font-size: 20px;
  font-weight: 200;
}

.column.left a {
  display: inline-block;
  background: #00c896;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid #00c896;
  transition: all 0.3s ease;
}
.column.left a:hover {
  color: #00c896;
  background: none;
}
.bar {
  color: #fff;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}
.bar .thumb {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 10px;
  background-color: #000;
  border-radius: 60px;
  margin-top: 20px;
}
.bar span {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(to left, #00c896, #00c896);
  border-radius: 50px;
}
.bar:nth-child(1) span {
  width: 100%;
}
.bar:nth-child(2) span {
  width: 80%;
}
.bar:nth-child(3) span {
  width: 70%;
}
.bar:nth-child(4) span {
  width: 90%;
}
.bar:nth-child(5) span {
  width: 100%;
}
.bar:nth-child(6) span {
  width: 80%;
}
.bar:nth-child(7) span {
  width: 40%;
}
.bar:nth-child(8) span {
  width: 90%;
}
.bar:nth-child(9) span {
  width: 50%;
}
.bar:nth-child(10) span {
  width: 100%;
}
.bar abbr {
  width: 50px;
  display: inline-block;
  height: 35px;
  border-radius: 50px;
  text-align: center;
  line-height: 35px;
  position: absolute;
  top: 30px;
  margin-left: -5px;
  z-index: 1;
  background: linear-gradient(to left, #00c896, #00c896);
  box-shadow: 0 5px 30px #00c896, 0 5px 30px #00c896;
}
.bar:nth-child(1) abbr {
  left: 100%;
}
.bar:nth-child(2) abbr {
  left: 80%;
}
.bar:nth-child(3) abbr {
  left: 70%;
}
.bar:nth-child(4) abbr {
  left: 90%;
}
.bar:nth-child(5) abbr {
  left: 100%;
}
.bar:nth-child(6) abbr {
  left: 80%;
}
.bar:nth-child(7) abbr {
  left: 40%;
}
.bar:nth-child(8) abbr {
  left: 90%;
}
.bar:nth-child(9) abbr {
  left: 50%;
}
.bar:nth-child(10) abbr {
  left: 100%;
}
/* page2 ends */

/* page3 */
.page3 {
  min-height: 100vh;
  width: 100%;
  background-color: #222;
  color: #fff;
  padding: 50px 6vw;
}
.projectsection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}

.cards {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper {
  width: 240px;
  height: 320px;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}
.swiper-slide a {
  height: 100%;
  width: 100%;
}
.swiper-slide img,
.swiper-slide video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  background: transparent;
}
.text {
  width: 50%;
}
/* page3 ends */

/* footer*/

footer {
  width: 100%;
  height: 450px;
  background-color: #868686;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
  flex-direction: column;
}
footer section {
  height: 90%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer div {
  width: 33%;
  height: 100%;
}
footer div:nth-child(1) {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
footer div:nth-child(1) h1,
footer div:nth-child(3) h1 {
  font-size: 40px;
  color: #00c896;
  font-weight: 900;
}
footer div:nth-child(1) p {
  font-size: 19px;
  font-weight: 400;
  color: #fff;
}
footer div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-icons {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #868686;
}
ul {
  position: relative;
  transform: skewY(-25deg);
}
ul li {
  position: absolute;
  top: 0;
  transform: translate(calc(var(--i) * 30px), calc(var(--i) * 30px));
  width: 96px;
  padding: 15px;
  list-style: none;
  background-color: #383838;
  transition: 0.5s;
}
ul li:hover {
  top: -54px;
  background: var(--clr);
}
ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 40px;
  height: 100%;
  background-color: #2f2f30;
  transform-origin: right;
  transform: skewY(45deg);
  transition: 0.5s;
}
ul li:hover::before {
  background: var(--clr);
  filter: brightness(0.8);
}
ul li::after {
  content: attr(data-text);
  position: absolute;
  top: -39px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #3e3e3e;
  transform-origin: bottom;
  transform: skewX(45deg);
  box-shadow: -120px 120px 20px rgba(0, 0, 0, 0.25);
  transition: 0.5s;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  left: 0.05em;
  padding-left: 15px;
  box-sizing: border-box;
  color: var(--clr);
  font-size: 13px;
}
ul li:hover::after {
  filter: brightness(0.9);
  background-color: var(--clr);
  box-shadow: -170px 170px 20px rgba(0, 0, 0, 0.25);
  color: #fff;
}
ul li a {
  text-decoration: none;
  color: transparent;
  display: block;
  text-transform: uppercase;
  transition: 0.5s;
  font-size: 13px;
}
ul li:hover a {
  color: #fff;
}
ul li a span {
  position: absolute;
  top: 0;
  left: -40px;
  width: 40px;
  text-align: center;
  height: 100%;
  color: var(--clr);
  transform-origin: right;
  transform: skewY(45deg);
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
ul li:hover a span {
  color: #fff;
}
footer div:nth-child(3) {
  display: flex;
  justify-content: end;
  align-items: center;
}
footer div:nth-child(3) form {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer div:nth-child(3) form input {
  width: 100%;
  height: 20px;
  padding: 10px 0;
  border: none;
  border-bottom: 2px solid #222;
  background: none;
  outline: none;
}
footer div:nth-child(3) form textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  resize: none;
  border-bottom: 2px solid #222;
  background: none;
  outline: none;
}
footer div:nth-child(3) form button {
  width: 100px;
  padding: 5px 15px;
  border: none;
  border-radius: 4px;
  background-color: #00c896;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  outline: none;
}
footer div:nth-child(3) form input::placeholder {
  color: rgb(77, 77, 77);
  font-weight: 500;
}
footer div:nth-child(3) form textarea::placeholder {
  color: rgb(77, 77, 77);
  font-weight: 500;
}
/* footer end */

/* for tablet */
@media (max-width: 800px) {
  .wire {
    height: 20vh;
  }
  .bulb {
    margin-top: 20vh;
  }
  .page1 {
    top: 27vh;
    height: 65vh;
    display: block;
  }
  .page1 .left {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .page1 .left h1 {
    color: #fff;
    font-weight: 700;
    font-size: 2.8vw;
  }
  .page1 .left span {
    color: #00c896;
    font-weight: 900;
    font-size: 3vw;
  }
  .page1 .left p {
    text-align: justify;
  }
  .page1 .right {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .page1 .right img {
    width: 50%;
    height: 110%;
    object-fit: cover;
    margin-top: -5vh;
  }
  .page2 {
    padding: 100px 6vw;
  }
  .page2content {
    flex-direction: column;
  }
  .page2content .column,
  .text {
    width: 100%;
    margin-bottom: 30px;
  }
  .column.right {
    width: 80%;
  }
  .column.left h1,
  .text h2 {
    font-size: 25px;
  }
  .column.left p,
  .text p {
    font-size: 18px;
  }
  .projectsection {
    width: 100%;
    display: block;
    margin-bottom: 100px;
  }
  .cards {
    width: 100%;
    margin-bottom: 70px;
  }
  .swiper {
    width: 210px;
    height: 290px;
  }
  footer {
    height: 115vh;
  }
  footer section {
    flex-direction: column;
  }
  footer div {
    width: 100%;
    height: 30vh;
  }
  footer div:nth-child(1) h1,
  footer div:nth-child(3) h1 {
    font-size: 30px;
  }
  footer div:nth-child(3) {
    justify-content: center;
  }
}
/*for mobile*/
@media (max-width: 500px) {
  .wire {
    height: 20vh;
  }
  .bulb {
    margin-top: 20vh;
  }
  .page1 {
    display: block;
    top: 32vh;
    height: 65vh;
  }
  .page1 .left {
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: end;
    flex-direction: column;
  }
  .page1 .left h1 {
    color: #fff;
    font-weight: 700;
    font-size: 4.2vw;
  }
  .page1 .left span {
    color: #00c896;
    font-weight: 900;
    font-size: 4.5vw;
  }
  .page1 .left p {
    color: #fff;
    font-size: 3vw;
    font-weight: 200;
    text-align: justify;
    line-height: 1.3;
  }
  .page1 .right {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: end;
    align-items: start;
  }
  .page1 .right img {
    width: 60%;
    height: 130%;
    object-fit: cover;
    margin-top: -5vh;
  }
  .page2 {
    padding: 100px 6vw;
  }
  .page2content {
    flex-direction: column;
  }
  .page2content .column {
    width: 100%;
    margin-bottom: 30px;
  }
  .column.right {
    padding-right: 8vw;
  }
  .column.left h1 {
    font-size: 25px;
  }
}
/* for small mobile */
@media (max-width: 370px) {
  .page1 {
    height: 55vh;
  }
  .page1 .right img {
    width: 50%;
    height: 100%;
    margin-top: -5vh;
  }
  .page1 .left {
    height: 50%;
    margin-top: -7vh;
  }
  .page1 .left h1 {
    font-size: 3.8vw;
  }
  .page1 .left span {
    font-size: 4vw;
  }
  .page1 .left p {
    font-size: 3.5vw;
  }
  .column.right {
    width: 80%;
  }
  .swiper {
    width: 130px;
    height: 200px;
  }
  footer {
    height: 150vh;
  }
  footer div {
    width: 100%;
    height: 40vh;
  }
}
