* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none;
}

body {
  min-height: 100vh;
}

/*********** Scroll button **************/
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 40px;
  border: none;
  outline: none;
  color: #cce4ff;
  cursor: pointer;
  background: none;
}

#myBtn:hover {
  color: #00e6a8;
}

/**************** Heading and HR ************/
.heading {
  font-size: 2.6rem;
  font-weight: 300;
  text-align: center;
  padding: 20px 0 40px 0;
  text-decoration: none;
}

.heading hr {
  border: 0;
  height: 1px;
}

/************* navbar ***************/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
  z-index: -1;
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 2s ease;
}

.header:hover::after {
  left: 100%;
}

.logo {
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  animation: logo 1s ease-in-out infinite alternate;
}

@keyframes logo {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fc00ff,
      0 0 40px #fc00ff, 0 0 50px #fc00ff, 0 0 60px #fc00ff, 0 0 70px #fc00ff;
  }

  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #00dbde, 0 0 40px #00dbde,
      0 0 50px #00dbde, 0 0 60px #00dbde, 0 0 70px #00dbde, 0 0 80px #00dbde;
  }
}

.navbar a {
  font-size: 1.14rem;
  color: #00dbde;
  text-decoration: none;
  font-weight: 400;
  margin-left: 1rem;
}

.navbar i {
  font-size: 1rem;
}

.navbar a:hover {
  color: #fc00ff;
  transition: 0.4s ease;
}

#check {
  display: none;
}

.navIcons {
  position: absolute;
  right: 5%;
  font-size: 2rem;
  color: #00dbde;
  cursor: pointer;
  display: none;
}

.navIcons:hover {
  color: #fc00ff;
}

/***************** Responsiveness *******************/
@media (max-width: 1150px) {
  .header {
    padding: 1rem 5%;
  }
}

@media (max-width: 1216px) {
  .navIcons {
    display: inline-flex;
  }

  #check:checked ~ .navIcons #menu-icon {
    display: none;
  }

  .navIcons #close-icon {
    display: none;
  }

  #check:checked ~ .navIcons #close-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(40px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: scroll;
    transition: 0.8s ease;
  }

  #check:checked ~ .navbar {
    height: 16.5rem;
  }

  .navbar a {
    display: block;
    font-size: 1.1rem;
    margin: 1.6rem 0;
    text-align: center;
    transform: translateY(-50px);
    opacity: 0;
    transition: 2s ease;
  }

  #check:checked ~ .navbar a {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 0.8rem 5%;
  }
}

/****************** Slideshow Banner **************/
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
  background: linear-gradient(90deg, #1cb5e0 0%, #000851 100%);
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 20px;
  margin-top: -22px;
  color: #cce4ff;
  font-size: 4rem;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  color: #00e6a8;
}

.text {
  color: #cce4ff;
  font-size: 3rem;
  padding: 14px;
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.dots {
  text-align: center;
  background: linear-gradient(90deg, #1cb5e0 0%, #000851 100%);
}

.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 0 2px;
  background-color: #cce4ff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #00e6a8;
}

.fade {
  animation-name: fade;
  animation-duration: 1.4s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/************** Responsiveness ****************/
@media only screen and (max-width: 1200px) {
  .slideshow-container {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .prev,
  .next,
  .text {
    font-size: 2.5rem;
  }
}

/************* About Us ***************/
.aboutUs {
  padding: 0 10% 1.4rem 10%;
  background: linear-gradient(90deg, #1cb5e0 0%, #000851 100%);
}

.aboutUs .heading {
  color: #0ffcbe;
}

.aboutUs .heading hr {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(15, 252, 190, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.aboutUs .aboutText {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  text-align: justify;
  color: #cce4ff;
  font-weight: 300;
}

.aboutUs .aboutText strong {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
}

.aboutUs .aboutContent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
}

.aboutUs .aboutImg img {
  width: 500px;
  height: 500px;
  object-fit: cover;
}

/************ Responsiveness ***************/
@media (max-width: 992px) {
  .aboutUs {
    padding: 0 5% 1.4rem 5%;
  }
  .aboutUs .aboutContent {
    flex-wrap: wrap;
  }
  .aboutUs .aboutImg img {
    width: 100%;
  }
}

/************* Catgories ***************/
.catgories {
  padding: 1.4rem 10%;
  background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
}

.catgories .heading {
  color: #610063;
}

.catgories .heading hr {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgb(97, 0, 99, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.catgories .catGroup {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 20px;
}

.catItems {
  width: 350px;
  position: relative;
}

.catImg {
  border-radius: 10%;
  width: 100%;
}

.catItems:hover .catImg {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 50%;
  transition: ease 0.8s;
  filter: grayscale(100%) brightness(50%);
}

.catItemsCaption {
  color: #cce4ff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  display: none;
}

.catItems:hover .catItemsCaption {
  display: block;
}

/************* Responsiveness ***************/
@media (max-width: 992px) {
  .catgories {
    padding: 1.4rem 5%;
  }
}

/************* Products ***************/
.products {
  padding: 1.4rem 10%;
  background: linear-gradient(to right, #ff0084, #33001b);
  position: relative;
}

.products .heading {
  color: #ff90b0;
}

.products .heading hr {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgb(255, 144, 176, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.productLists {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
}

.productLists .productList {
  height: 420px;
  background-color: #fff;
}

.productLists .productList:hover {
  transform: translateY(-10px);
  transition: ease 0.8s;
}

.productLists .productList .productImg {
  height: 300px;
}

.productLists .productList p {
  color: #222;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 300;
}

.productLists .productList span {
  display: block;
  color: #222;
  font-size: 1rem;
  text-align: center;
  font-weight: 300;
}

.productLists .productList .productButton {
  text-align: center;
  margin: 0 60px;
  background-color: #ff0084;
  border: 2px solid #ff0084;
  color: white;
  padding: 10px 32px;
  font-size: 1.1rem;
  cursor: pointer;
}

.productLists .productList .productButton:hover {
  background-color: #fff;
  border-color: #ff0084;
  color: #ff0084;
  transition: ease 0.5s;
}

.productPrev {
  left: 40px;
  cursor: pointer;
  position: absolute;
  top: 54%;
  color: #ff0084;
  background-color: #ffffff;
  font-size: 2.5rem;
  transition: 0.6s ease;
  border-radius: 50%;
  padding: 10px 28px;
  user-select: none;
  z-index: 1;
}

.productNext {
  right: 40px;
  cursor: pointer;
  position: absolute;
  top: 54%;
  color: #ff0084;
  background-color: #ffffff;
  font-size: 2.5rem;
  transition: 0.6s ease;
  border-radius: 50%;
  padding: 10px 28px;
  user-select: none;
  z-index: 1;
}

.productPrev:hover,
.productNext:hover {
  color: #ff0084;
  background-color: #5e0032;
}

/************** Responsiveness **************/
@media (max-width: 992px) {
  .products {
    padding: 1.4rem 5%;
  }

  .productPrev {
    left: 10px;
    font-size: 2rem;
    border-radius: 50%;
    padding: 5px 20px;
  }

  .productNext {
    right: 10px;
    font-size: 2rem;
    border-radius: 50%;
    padding: 5px 20px;
  }
}

/*********** Service Section ****************/
.serviceSection {
  padding: 1.4rem 10%;
  background-image: linear-gradient(135deg, #70f570 10%, #49c628 100%);
}

.serviceSection .heading {
  color: #e6ffdf;
}

.serviceSection .heading hr {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(229, 255, 222, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.serviceSection .services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}

.serviceSection .cardWrapper {
  box-shadow: 0 8px 8px 0 rgba(0, 59, 43, 0.4);
  width: 350px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: white;
  transition: 0.4s;
}

.serviceSection .cardWrapper i {
  font-size: 100px;
  color: #49c628;
}

.serviceSection .cardWrapper:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 59, 43, 0.6);
  transform: translate(0, -10px);
  border-radius: 20px;
}

.serviceSection .cardContainer {
  padding: 2px 16px;
}

.serviceSection .cardContainer p {
  color: #1e8b00;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
}

/************** Responsiveness ***************/
@media only screen and (max-width: 992px) {
  .serviceSection {
    padding: 1.4rem 5%;
  }
  .serviceSection .cardWrapper {
    width: 100%;
  }
}

/*************** Team ****************/
.team {
  padding: 1.4rem 10%;
  background-image: linear-gradient(
    109.6deg,
    rgba(255, 174, 0, 1) 11.2%,
    rgba(255, 0, 0, 1) 100.2%
  );
}

.team .heading {
  color: #fffb8f;
}

.team .heading hr {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(253, 255, 147, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.teamLists {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
}

.teamLists .teamList {
  background-color: #fff;
  width: 400px;
  height: 500px;
  border-radius: 0 40px 0 40px;
  text-align: center;
  padding: 40px;
}

.teamLists .teamList:hover {
  transform: translateY(-10px);
  transition: ease 0.8s;
}

.teamLists .teamList .teamImg {
  width: 100%;
  border-radius: 0 30% 0 30%;
}

.teamLists .teamList p {
  color: #ff5733;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}

.teamLists .teamList span {
  color: #222;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
}

/*************** Responsiveness ****************/
@media (max-width: 992px) {
  .team {
    padding: 1.4rem 5%;
  }

  .teamLists {
    flex-wrap: wrap;
    gap: 40px;
  }
}

/*************** Our Works *****************/
.works {
  background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
  padding: 1.4rem 10%;
}

.works .heading {
  color: #6fffff;
}

.works .heading hr {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgb(111, 255, 255, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.main {
  max-width: 100%;
  margin: auto;
}

.row {
  margin: 10px -16px;
}

.row,
.row > .column {
  padding: 8px;
}

.column {
  float: left;
  width: 33.33%;
  display: none;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.content {
  background-color: #fff;
  padding: 10px;
}

.content p {
  color: #004ac9;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
}

.show {
  display: block;
}

.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  margin: 10px 10px 10px 0;
  background-color: #0ffcbe;
  color: #004ac9;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
}

.btn:hover {
  background-color: #315eff;
  color: #fff;
}

.btn.activeGallery {
  background-color: #315eff;
  color: #fff;
}

/***************** Responsiveness *************/
@media only screen and (max-width: 992px) {
  .works {
    padding: 1.2rem 5%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

/*************** Footer **************/
.footer {
  position: relative;
  background: linear-gradient(to right, #004e92, #000428);
}

.footer .footerContents {
  padding: 1.4rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer #footerContent2 {
  padding: 1.4rem 10%;
}

.footer .h3 {
  padding-top: 40px;
  padding: 1.4rem 10%;
  color: #78c0ff;
  font-size: 2rem;
  font-weight: 300;
  padding-bottom: 20px;
  align-items: left;
}

.footer .hr {
  margin: 0 10%;
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 136, 255, 0.75),
    rgb(120, 192, 255, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.footer .footerContents .footerContent {
  width: 380px;
}

.footer .footerContents .footerContent p {
  padding: 5px 0;
}

#footerContent2 p {
  text-decoration: none;
  color: #78c0ff;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
  cursor: pointer;
}
#footerContent2 a {
  text-decoration: none;
  color: #78c0ff;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
  cursor: pointer;
}

.footer .footerCredit {
  background: linear-gradient(to right, #004e92, #000428);
  padding: 1.4rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .footerCredit .left {
  float: left;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
}

.footer .footerCredit .right {
  float: right;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
}

#social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-bottom: 10px;
}

#social-links a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 43px;
  background: #111;
  border-radius: 50%;
  font-size: 25px;
  color: #f2f2f2;
  transition: 0.5s;
}

#social-links a:hover {
  color: #00dbde;
  box-shadow: 0 0 30px #fc00ff;
  text-shadow: 0 0 100px #00dbde;
}

/**************** Responsiveness *************/
@media screen and (max-width: 600px) {
  .footer .footerContents {
    padding: 1.4rem 5%;
  }
  .footer .h3 {
    padding: 1.4rem 5%;
  }
  .footer .hr {
    margin: 0 5%;
  }
  .footer #footerContent2 {
    padding: 1.4rem 5%;
  }
  .footer .footerCredit {
    justify-content: center;
    text-align: center;
    padding: 1.4rem 5%;
  }
}

/************* Popup Chat Window ***************/
.whatsApp {
  background: linear-gradient(to left, #1bc900 0, #22ff00 100%);
  padding: 30px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 24px;
  left: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.whatsApp i {
  color: white;
  font-size: 40px;
}

.whatsApp:before,
.whatsApp:after {
  content: "";
  position: absolute;
  height: 70%;
  width: 70%;
  background: linear-gradient(to left, #1bc900 0, #22ff00 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}
.whatsApp:before {
  animation: whatsApp 2s ease-out infinite;
}
.whatsApp:after {
  animation: whatsApp 2s 1s ease-out infinite;
}
@keyframes whatsApp {
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/************** Responsiveness *************/
@media screen and (max-width: 600px) {
  .whatsApp {
    padding: 30px;
    left: 15px;
    width: 40px;
    height: 40px;
  }

  .whatsApp i {
    font-size: 30px;
  }
}

/************ Popup Form **************/
.open-button {
  background-color: #00254e;
  color: white;
  padding: 30px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  position: fixed;
  bottom: 124px;
  left: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.open-button i {
  color: white;
  font-size: 35px;
}

.open-button:before,
.open-button:after {
  content: "";
  position: absolute;
  height: 70%;
  width: 70%;
  background: linear-gradient(to left, #00254e 0, #004ea7 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}
.open-button:before {
  animation: open-button 2s ease-out infinite;
}
.open-button:after {
  animation: open-button 2s 1s ease-out infinite;
}
@keyframes open-button {
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/*********** The popup form - hidden by default **************/
.form-popup {
  display: none;
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/********** Add styles to the form container *************/
.form-container {
  width: 100%;
  height: 500px;
  width: 500px;
  overflow-y: scroll;
  padding: 20px;
  background-color: #f0f8ff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 0 2000px #000000b3;
}

.form-container h1 {
  color: #1e2472;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
}
.form-container p {
  color: #222;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 400;
}

/*********** Full-width input fields *************/
.form-container input[type="text"],
.form-container input[type="password"],
.form-container input[type="number"],
.form-container input[type="email"],
.form-container input[type="datetime-local"],
.form-container textarea[type="text"],
.form-container select {
  cursor: pointer;
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  color: #555555;
}

/* When the inputs get focus, do something */
.form-container input[type="text"]:focus,
.form-container input[type="password"]:focus,
.form-container input[type="number"]:focus,
.form-container input[type="email"]:focus,
.form-container textarea[type="text"]:focus,
/* .form-container input[type="datetime-local"], */
.form-container select:focus {
  outline: 1px solid #1e2472;
}

/* Set a style for the submit/login button */
.form-container .btn {
  font-size: 1.1rem;
  background-color: #1e2472;
  color: #fff;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}

/************ Add a red background color to the cancel button *************/
.form-container .cancel {
  background-color: red;
}

/************* Add some hover effects to buttons **********/
.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}

/*************** Responsiveness **************/
@media screen and (max-width: 600px) {
  .open-button {
    padding: 30px;
    left: 15px;
    width: 40px;
    height: 40px;
  }

  .open-button i {
    font-size: 26px;
  }

  .form-container {
    width: 90vw;
  }
}
