@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  z-index: 999;
}
.logo {
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 20px;
  font-size: 40px;
  font-weight:bolder;
  color: black;
  font-family: 'Dancing Script', cursive;
}
body {
    font-family: 'Poppins',sans-serif;
    justify-content: center;
    align-items: center;
    padding: 100px;
    /* Gradient from blue to green from top to bottom */
    background: linear-gradient(to bottom, #ffffff, #00f2ff,#ffffff);
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
  background-color: #fff; /* Set background to pure white */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.258);
  border-radius: 40px;
  align-items: center;
  justify-content: center;
}
input[type="number"],
select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  border-radius: 15px;
  resize: none;
  background-color:#ffffff;
  font-family:  'Poppins',sans-serif;
}
input[type="number"]::placeholder {
  font-family: 'Poppins', sans-serif;
}
input[type="number"]:focus,
select:focus {
  border: 2px solid #00c3ff;
  box-shadow: 0 0 20px #4eb7cf;
  outline: none;
}
select option{
  font-family: 'Poppins', sans-serif;
}
.form-group {
  margin-bottom: 20px;
  width:48%;
}
.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.output-submit {
  background-color: black;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 15px;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.output-submit:hover {
  background-color: gray;
}

label {
  display: block;
  font-weight: 500;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

.container h2 {
  font-family: 'Poppins', sans-serif;
  color: black;
  font-size: 30px;
}
input[type="decimal"]{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 3px solid #ccc;
    border-radius: 15px;
    resize: none;
    background-color:#ffffff;
  }
  input[type="decimal"]::placeholder{
    font-family: 'Poppins', sans-serif;
  }
  input[type="decimal"]:focus{
    border: 2px solid #00c3ff;/* set border to green */
    box-shadow: 0 0 20px #4eb7cf;
    outline: none; /* add green shadow */
  }
  .submit-group {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: flex-end;
    padding-top: 20px;
    padding-left: 50px; /* Adjust to align the button to the right */
  }
  /* Reset some default margin and padding */
body, h1, h2, p {
  margin: 0;
  padding: 0;
}
.left-content h2{
  font-size: 50px;
  font-weight: 550;
}
.left-content p{
  font-size: 22px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Define styles for the section-rectangle */
/* Default styles for the section-rectangle */
.section-rectangle {
  padding: 10px; /* Adjustable spacing between the rectangle and content */
  border-radius: 30px; /* Border radius for the rectangle */
  width: 96%; /* Adjustable width of the rectangle */
  margin: 0 auto;
  background-color: #fff; /* Set background to pure white */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.258);
  height: auto; /* Auto height to fit content */
  align-items: center;
  justify-content: space-between;
}

/* Define styles for the section */
.custom-section {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  justify-content: space-between;
  align-items: center;
}

/* Define styles for the left content */
.left-content {
  flex: 1;
  padding-right: 20px;
  padding-left: 30px; /* Adjustable spacing between left and right */
  text-align: center; /* Center text on smaller screens */
  max-width: 100%; /* Full width on smaller screens */
}

/* Define styles for the right image */
.right-image {
  flex: 1;
  max-width: 50%; /* Adjustable image width */
  text-align: center; /* Center image on smaller screens */
  padding: 20px 0; /* Add padding for spacing */
}
.right-image img {
  max-width: 100%; /* Full width for the image */
  height: auto;
  border-radius: 20px;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  /* Adjust styles for smaller screens */
  .section-rectangle {
    padding: 10px; /* Reduced padding */
    border-radius: 15px; /* Smaller border radius */
  }
  .left-content {
    padding-left: 10px; /* Reduced left padding */
    padding-right: 10px; /* Reduced right padding */
    text-align: center; /* Center text on smaller screens */
  }
  .right-image {
    max-width: 100%; /* Full width for the image on smaller screens */
    text-align: center; /* Center image on smaller screens */
    padding: 10px 0;
    flex:1;
    height:auto;
    padding-right: 20px; /* Reduced padding for spacing */
  }
  .right-image img {
    max-width: 100%; /* Full width for the image on smaller screens */
    border-radius: 10px; /* Smaller border radius for the image */
  }
}
.last-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}
.line {
  height: 1px;
  background-color: #000000;
  width: calc(85% - 40px);
  align-items: center;
}
.last-text {
  text-align: center;
}  



.last-section p {
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}
/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  .section-rectangle {
      width: 100%; /* Full width on smaller screens */
  }
  .left-content, .right-image {
      flex: 1;
      min-width: auto; /* Remove minimum width on smaller screens */
      width: 100%; /* Full width on smaller screens */
      padding-right: 0; /* Remove padding on smaller screens */
      margin-bottom: 20px; /* Add space between elements on smaller screens */
  }
}
/* Styles for the floating button */
/* Styles for the floating button */
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007BFF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  transform: translateX(-400%); 
  transition: background-color 0.3s, box-shadow 0.3s;
}

.floating-button a {
  text-decoration: none;
  color: inherit;
}

.floating-button:hover {
  background-color: #009fc3;;
  box-shadow: 0 0 30px #4eb7cf;
}
a{
  text-decoration: none;
}