@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
        @import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");

      h2 {
            font-family: "Poppins", sans-serif;
    margin: 0;
    display: block;
    margin-block-start: 0; /* Override browser default */
    margin-block-end: 0; /* Override browser default */
    margin-inline-start: 0; /* Override browser default */
    margin-inline-end: 0; /* Override browser default */
    font-weight: bold;
    text-align: right;
    right: 10px;

}

.content span, .content2 span, .content3 span {
            font-family: "Poppins", sans-serif;
    font-size: 28px;
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px #000;
  margin-bottom:0px;
  z-index:1;


}

.content span::before, .content2 span::before, .content3 span::before {
            font-family: "Poppins", sans-serif;
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #03A8F5;
    -webkit-text-stroke: 0;
    z-index: -1;
    overflow: hidden;
margin-bottom:0px;

  
    /* Set a static clip-path for the wavy style */
    clip-path: polygon(
        0% 45%, 
        16% 44%, 
        33% 50%, 
        54% 60%, 
        70% 61%, 
        84% 59%, 
        100% 52%, 
        100% 100%, 
        0% 100%
    );
}
      .subscript {
        position:absolute;
    font-size: 0.75em; /* Smaller font size for subscript */
    color: #000; /* Optional: Change the color if needed */
        z-index:1001;
right:10px;
margin-top:-25px;
        padding:15px 15px 15px 15px;
}
.waves-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 15vh; /* Adjust based on the height you want for the waves */
  z-index: -1; /* Ensure it stays behind other content */
  overflow: hidden;
}
#dataForm{  margin-top: 60px;
margin-bottom:100px;
}
.waves {
  width: 100%;
  height: 100%;
  margin-bottom: -7px; /* Fix for Safari gap */
}


/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
  animation-iteration-count: 2.42857143;
  animation-fill-mode: forwards; /* Keeps the animation at its final state */
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
  animation-iteration-count: 2.2;
  animation-fill-mode: forwards; /* Keeps the animation at its final state */
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
  animation-iteration-count: 1.61538;
  animation-fill-mode: forwards; /* Keeps the animation at its final state */
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards; /* Keeps the animation at its final state */
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}

@keyframes moveWaves {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: 1600px bottom;
  }
}

body {
    font-family: 'Roboto', sans-serif;
    background-image: linear-gradient(180deg,#2f6ed3 5%,#5095e4 20%,#5095e4 60%,#2f6ed3 95%);
    background-attachment: fixed;


}
html, body {
    margin: 0;
    padding: 0;
}

        .navbar {
            background-color: #fff;
            top: 0;
            width: 100%;
            z-index: 1000;
			position:fixed;
        }
        .navbar a {
            float: left;
            display: block;
            color: black;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }
        .dropdown {
            float: left;
            overflow: hidden;
        }
        .dropdown .dropbtn {
            cursor: pointer;
            font-size: 16px;    
            border: none;
            outline: none;
            color: black;
            padding: 14px 16px;
            background-color: inherit;
            font-family: inherit;
            margin: 0;
        }
.navbar a, .dropdown .dropbtn {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.navbar a::after, .dropdown .dropbtn::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 1px; /* Thickness of the underline */
    background-color: #000; /* Color of the underline */
    transition: all 0.3s;
    transform: translateX(-50%);
}

.navbar a:hover::after, .dropdown:hover .dropbtn::after {
    width: 75%;
    left: 12.5%; /* Adjust this value to center the 75% width line */
    transform: translateX(0%);
}



        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
        }
        .dropdown-content a {
            float: none;
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
        }
        .dropdown-content a:hover {
            background-color: #ddd;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h3 {
    margin-bottom: 5px;
    margin-top: 0px;
}
p {
    margin-top: 0; /* Remove top margin of paragraph */
}
form {
    max-width: 600px;
    margin: 10px auto;
    padding: 4px;
background: rgba( 255, 255, 255, 0.7 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.form-group {
    margin-bottom: 5px;
    clear: both;
}

.form-group label {
    display: inline-block;
    width: 180px;
    text-align: right;
    margin-right: 10px;
    vertical-align: center;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select {
    width: 200px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form-group input[type="submit"] {
    width: auto;
    background-color: #0056b3;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
	box-sizing: border-box;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group input[type="submit"]:hover {
    background-color: #004494;
}

#skipButton, #nextButton {
    margin: 0px 0 0;
    padding: 7px 16px 7px;
    color: #1f3958;
    background-color: #80afe7;
    border: none;
    border-radius: 4px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer
}

/* Custom styles for disabled fields */
input:disabled {
    background-color: #e9ecef;
    color: #495057;
}

/* Styles for custom water color when visible */
#custom_water_color {
    display: none;
    margin-top: 5px;
}
#custom_water_color.visible {
    display: block;
}
.data-form .form-row {
    display: flex;
    align-items: center; /* Align label and input vertically */
}

.data-form .form-row label {
    flex-basis: 30%; /* Adjust label width */
    text-align: right; /* Align text to right */
    margin-right: 10px; /* Space between label and input */
}

.data-form .form-row input {
    flex-basis: 70%; /* Adjust input width */
    max-width: 70%; /* Limit maximum width */
    box-sizing: border-box; /* Include padding and border in width */
}


/* Responsive design for smaller screens */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .form-group label, 
    .form-group input[type="text"],
    .form-group input[type="date"],
    .form-group input[type="time"],
    .form-group select,
    .form-group input[type="submit"] {
        display: block;
        width: calc(100% - 20px);
        margin-right: 0;
        margin-bottom: 10px;
        text-align: left;
    }
    
    .form-group label {
        width: 100%;
        margin-bottom: 5px;
    }

    form {
        padding: 10px;
    }

    #skipButton, #nextButton {
        width: 25%;
        margin-bottom: 10px;
    }



   #skipButton {
        width: 30%;
        margin-bottom: 10px;
		float:right;
    }

}
