@import url('https://fonts.googleapis.com/css?family=Arima+Madurai:300');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

/***
  Waves: Yusuke Nakaya
  Shapes: Rishabh Mishra
  Ocean: Dudley Storey ***/

#chartdiv {
  width: 100%;
  height: 500px;
max-width:100%;
  background-color:black;
}

.oct{
  position: absolute;	
  left: 40px;
  bottom: 40px;
  width: 40px;
  position: fixed;
  height: auto;
  animation: flyAcross 25s linear forwards infinite;
}

.octmirror{
  position: absolute;	
  right: 40px;
  bottom: 40px;
  width: 40px;
  position: fixed;
  height: auto;
  animation: flyAcrossMirror 25s linear forwards infinite;
}

@keyframes flyAcross {
  from {
    left: 0%;
    bottom: 0%;
  }
  to {
    left: 100%;
    bottom: 100%;
  }
}

@keyframes flyAcrossMirror {
  from {
    left: 100%;
    bottom: 0%;
  }
  to {
    left: 0%;
    bottom: 100%;
  }
}

.page {
  color: rgba(24, 68, 241, 0.664); /* Change this to your desired color */
  font-family: 'Lobster', cursive;
  font-size: 48px; /* Adjust the font size as needed */
  position: absolute;
  z-index: 60; 
  top: 2000px;
  left: 0px;
  animation: float 3s ease-in-out infinite, shimmer 3s ease-in-out infinite;
}

.page span {
  display: inline-block;
  animation: float 3s ease-in-out infinite, shimmer 3s ease-in-out infinite;
  z-index: 60; 
}

.page span:nth-child(1) { animation-delay: 0s; }
.page span:nth-child(2) { animation-delay: 0.3s; }
.page span:nth-child(3) { animation-delay: 0.6s; }
.page span:nth-child(4) { animation-delay: 0.9s; }
.page span:nth-child(5) { animation-delay: 1.2s; }
.page span:nth-child(6) { animation-delay: 1.5s; }
.page span:nth-child(7) { animation-delay: 1.8s; }
.page span:nth-child(8) { animation-delay: 2.1s; }
.page span:nth-child(8) { animation-delay: 2.3s; }
.page span:nth-child(8) { animation-delay: 2.5s; }

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2), 0 0 10px rgba(255, 255, 255, 0.2), 0 0 15px rgba(255, 255, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.6);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2), 0 0 10px rgba(255, 255, 255, 0.2), 0 0 15px rgba(255, 255, 255, 0.2);
  }
}

/*==================== VARIABLES CSS ====================*/
:root {
  /*========== Colors ==========*/
  --text-color: #000000;
  --bg-color: #222222;

  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.938rem;
}

@media screen and (min-width: 968px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*==================== BASE ====================*/
*,
*:after,
*:before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-size: var(--normal-font-size);
  background-color: var(--bg-color);
  color: var(--text-color);
  font-weight: 400;
  font-family: var(--body-font);
  transition: all 0.2s ease;
}

/*==================== REUSABLE CSS CLASSES ====================*/
.container {
  max-width: 2140px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

/*==================== SERVICE CARD ====================*/
.card__container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  width: 100%;
  max-width: 90%;
  margin: auto;
  padding: 60px 0;
  opacity: 0.8;
}

.card__bx {
  --dark-color: #2e2e2e;
  --dark-alt-color: #777777;
  --white-color: #ffffff;
  --button-color: #333333;
  --transition: 0.5s ease-in-out;

  font-family: inherit;
  height: 350px;
  width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark-color);
  transition: var(--transition);
}
.card__bx::before,
.card__bx::after {
  content: "";
  position: absolute;
  z-index: 3;
  transition: var(--transition);
}
.card__bx::before {
  inset: -10px 50px;
  border-top: 4px solid var(--clr);
  transform: skewY(15deg);
  border-bottom: 4px solid var(--clr);
}
.card__bx:hover::before {
  inset: -10px 40px;
  transform: skewY(0deg);
}
.card__bx::after {
  inset: 60px -10px;
  border-left: 4px solid var(--clr);
  transform: skew(15deg);
  border-right: 4px solid var(--clr);
}
.card__bx:hover::after {
  inset: 40px -10px;
  transform: skew(0deg);
}
.card__bx .card__data {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  padding: 0 20px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 4;
}
.card__bx .card__data .card__icon {
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: var(--text-color);
  background-color: var(--dark-color);
  transition: var(--transition);
}
.card__bx .card__data .card__icon {
  color: var(--clr);
  box-shadow: 0 0 0 4px var(--dark-color), 0 0 0 6px var(--clr);
}
.card__bx:hover .card__data .card__icon {
  color: var(--dark-color);
  background-color: var(--clr);
  box-shadow: 0 0 0 4px var(--dark-color), 0 0 0 300px var(--clr);
}
.card__bx .card__data .card__content {
  display: block;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.card__bx .card__data h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white-color);
  transition: var(--transition);
}
.card__bx:hover .card__data h3 {
  color: var(--dark-color);
  transition: var(--transition);
}
.card__bx .card__data p {
  font-size: 0.9rem;
  color: var(--dark-alt-color);
  transition: var(--transition);
}
.card__bx:hover .card__data p {
  color: var(--dark-color);
  transition: var(--transition);
}
.card__bx .card__data a {
  position: relative;
  display: inline-flex;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  border: 2px solid var(--clr);
  color: var(--dark-color);
  background-color: var(--clr);
  transition: var(--transition);
}
.card__bx:hover .card__data a {
  color: var(--clr);
  background-color: var(--dark-color);
}
.card__bx:hover .card__data a:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
  background-color: var(--clr);
}

.date {
  display:block;
  color: #303030;
  margin:10px;
  font-size: 20px;
}

.title{
  color: #1377BD;
  font-size: 16px;
  margin: 4px;
  font-weight:500;
}

.title:hover {
  text-decoration: none !important;
}

.content{
  display:block;
  color: #303030;
  margin:4px;
  font-weight:300;
}

.container{
  max-width:100%;
  height: auto;
}

.icon-title{
    display: flex;
    align-items: center;
}

.list {
  list-style-type:none;
}

.item {
    margin-top:10px;
    margin-bottom:10px;
}

html {
  height: 100%;
}

body {
  margin:0;
  padding:0;
  font-family: sans-serif;
  background: linear-gradient(#141e30, #243b55);
}

.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  padding: 40px;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.5);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
  border-color:#141;
}

.login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #fff;
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 500%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #03e9f4;
  font-size: 12px;
}

.login-box form a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #03e9f4;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}

.login-box a:hover {
  background: #03e9f4;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #03e9f4,
              0 0 25px #03e9f4,
              0 0 50px #03e9f4,
              0 0 100px #03e9f4;
}

.login-box a span {
  position: absolute;
  display: block;
}

.login-box a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -150%;
  }
  50%,100% {
    left: 100%;
  }
}

.login-box a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

.login-box a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

.login-box a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}
.h3{
  margin: 0 0 30px;
  padding: 0;
  color: #FB3004;
  text-align: center;
}

.waterCanvas {
  background-color: transparent;   
  border: 1px solid #000; 
  display: block;
}

.head-img {
  width: 7%;
  float: right;
  position: fixed;
  right: 10px;
  animation: moveUpsideDown 20s linear infinite, continuous-rotate 10s alternate infinite;
  z-index: 3;
}

.head-img1 {
  width: 7%;
  float: left;
  position: fixed;
  animation: moveUpsideDown 20s linear infinite, continuous-rotate 10s alternate infinite;
  z-index: 3;
}

.head-img2 {
  width: 7%;
  position: fixed;
  top: 20%;
  animation: moveRightToLeft 30s linear infinite ; 
  z-index: 3;
}

.head-img3 {
  width: 7%;
  position: fixed;
  top: 30%;
  right: -10%;
  animation: moveRightToLeft 30s linear infinite 15s; 
  z-index: 2;
}

/* Keyframes for the horizontal movement and flipping at the right edge */
@keyframes moveRightToLeft {
  0% {
    left: 100%;  /* Start from the left */
    transform: scaleX(1);  /* Normal orientation */
  }
  
  49% {
    left: 1%;  /* Start from the left */
    transform: scaleX(1);  /* Normal orientation */
  }

  50% {
    left: 0%;  /* Move to the right */
    transform: scaleX(-1);  /* Normal orientation */
  }

  99% {
    left: 99%;  /* Start from the left */
    transform: scaleX(-1);  /* Normal orientation */
  }
  
  100% {
    left: 100%;  /* Move to the right */
    transform: scaleX(1);  /* Flip horizontally when reaching the right */
  }
}

.submarine {
  height: 80px;
  width: 40%;
  float: right;
  position: fixed;
  animation: moveUpsideDown 20s linear infinite;
  animation-direction: linear;
  z-index: 5;
}

@keyframes continuous-rotate {
  from {
      transform: rotate(390deg);
  }
  to {
      transform: rotate(0deg);
  }
}

@keyframes moveUpsideDown {
  0% {
    top: 100%;
    transform: rotate(0deg);
  }
  100% {
    top: 0%;
    transform: rotate(10deg);
  }
}


@keyframes move {
  0% {
    transform: rotate(0deg);
    left: 100%;
    opacity: 1;
    transform: translateX(10vw) scaleX(1);
  }
  10% {
    left: 80%;
    opacity: 0.8;
    transform: translateX(10vw) scaleX(1);
  }
   20% {
    left: 60%;
    opacity: 0.5;
    transform: translateX(10vw) scaleX(1);
  }
   30% {
    left: 40%;
    opacity: 0.5;
    transform: translateX(10vw) scaleX(1);
  }
   40% {
    left: 20%;
    opacity: 0.8;
    transform: translateX(10vw) scaleX(1);
  }
  50% {
    left: 0%;
    opacity: 1;
    transform: translateX(10vw) scaleX(1);
  }
  60% {
    left: 20%;
    opacity: 0.8;
    transform: translateX(10vw) scaleX(-1);
  }
  70% {
    left: 40%;
    opacity: 0.5;
    transform: translateX(10vw) scaleX(-1);
  }
  80% {
    left: 60%;
    opacity: 0.5;
    transform: translateX(10vw) scaleX(-1);
  }
  90% {
    left: 80%;
    opacity: 0.8;
    transform: translateX(10vw) scaleX(-1);
  }
  0% {
      left: 100%;
      opacity: 1;
      transform: translateX(0) scaleX(-1);
    }
}

.top-right {
  position: absolute;
  top: 0;
  left: 10;
  z-index: -1;
}

.top-right img {
  max-width: 20%;
  height: auto;
}

#success_message{ display: none;}

.container{
	z-index: 0;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	min-height: 35rem;
	background-image: linear-gradient(to bottom,  rgba(255,168,76,0.6) 0%,rgba(255,123,13,0.6) 100%), url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExd2Mzbmk5bzZ0dnczcWxrcms1YzU4ejZuNW5paGc3bDZ6bzJ1aXdmNiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/BnVe8D9FlcpXFBToZn/giphy.webp');
	background-blend-mode: soft-light;
	background-size: cover;
	background-position: center center;
	padding: 2rem;

}
.whale-cont{
  text-align: center;
  animation: spin 40s linear infinite;
}
.whale {
  width: 7%;
  float: left;
  position: absolute;
}
.whalemr {
  width: 7%;
  float: left;
  position: absolute;
} 

@keyframes spin { 
  100% { 
      -webkit-transform: rotate(360deg); 
      transform:rotate(360deg); 
  } 
}

@keyframes rotate {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

.myCanvas {
  display:block;
  margin:auto;
  background:#49547921;
}
