@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
  height: 5px;

}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--theme-color);
  border-radius: 1rem;
  /* border: 2px solid rgb(67, 67, 67); */
}
:root {
    --theme-color: rgb(141, 0, 193);
    --font-family: "Lato", sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: black;
    color: white;
}
.comming{
  height: 100vh;
  background-color: rgb(26, 26, 26);
  display: grid;
  /* align-items: center; */
  place-items: center;
}
.header{
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.whatsapp{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25D366;
  z-index: 9999999;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  padding: 10px;
  border-radius: 50%;
}

img{
  width: 100%;
}
.soon{
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  padding: 1rem;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: rgb(201, 201, 201);
}

.align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sticky{
  width: 100%;
  background-color: white;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.452);
}
.headeranim{
  transform: translateY(0);
}

.logo-span{
  /* background-color: aqua; */
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 600;
}
.sub-heading{
  font-size: 2rem;
  margin: 10px;
}

.mainheader {
  position: relative;
  width: 100%;
}
.main-heading{
    padding: 10px 10%;
    text-transform: capitalize;
}
.btn {
  border: 2px solid white;
  color: white;
    background-color: var(--theme-color);
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;

}
.btn2 {
  border: 2px solid white;
  color: white;
    background-color: var(--theme-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;

}

ul {
    list-style-type: none;
}

a {
  margin-top: 10px;
    text-decoration: none;
    color: rgb(38, 38, 38);
    display: inline-block;
}

h3 {
    text-transform: uppercase;
    font-size: 2rem;
}

.form{
  background-color: rgb(151, 151, 255);
    display: flex;
}
.para{
  margin: 1rem;
  line-height: 150%;
}

.alert {
    position: fixed;
    text-align: center;
    z-index: 9999999999;
    left: 50%;
    transform: translate(-50%);
    top: calc((10vh + 1rem));
    padding: 10px;
    border-radius: 10px;
    transition: 0.5s;
    letter-spacing: 1px;
    font-weight: 600;
    animation: alertAnim 0.5s 1 linear;
  }

  @keyframes alertAnim {
    0% {
      transform: translate(-50%, -1rem);
      opacity: 0;
    }
  
    100% {
      transform: translate(-50%, 0);
      opacity: 1;
    }
  }
  
  .alert-success {
    background-color: rgb(55, 170, 55);
    color: white;
  }
  
  .alert-err {
    background-color: rgb(170, 55, 55);
    color: white;
  }
  
  .sub-header{
    background-color: rgb(202, 202, 202);
    padding: 0 5%;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.left-arrow{
    cursor: pointer;
}
.sticky {
  position: fixed;
  background-color: black;
  z-index: 999;
  top: 0;
  left: 0;
}
.socials{
  padding: 10px;
  display: flex;
  gap: 5px;
}

.page-head{
  height: 30vh;
  background-color: blanchedalmond;
}
.page-heading{
  text-transform: uppercase;
  font-weight: 800;
}
.page-link{
  font-weight: 600;
}
.watermark{
  position: absolute;
  max-width: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.5;
}
.back-to-home{
  margin: 5px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.banner-heading{
  text-transform: capitalize;
  text-shadow: 0 0 5px black;
}

.dialog {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dialog p {
  margin: 0 0 20px;
}
.dialog button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
.dialog .cancel {
  background-color: #e7f3ff;
  color: #007bff;
  margin-right: 10px;
}
.dialog .ok {
  background-color: #d9534f;
  color: white;
}
