* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans";
}

body {
  min-height: 100vh;
  display: grid;
}

.notification-bar {
  background-color: #004e75;
  position: absolute;
  width: 100%;
}

.notification-bar__text {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  padding: 8px 15px;
  font-family: "Open Sans";
}

header {
  height: 0px;
}

/* Footer Styles */
.footer {
  background: var(--first-color);
  color: #ddd;
  padding: 10px 20px 10px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
}

.footer-bottom p {
  font-family: "Open Sans";
  color: #fff;
  font-size: 16px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #eee;
}

main {
  padding-top: 120px;
}

.main-div {
  padding: 15px 15px 10px 15px;
}

.main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}
.main-container .main-text {
  flex: 1 1 150px;
}
.main-container .main-text h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 15px;
}
.main-container .main-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
  font-weight: 500;
}
.main-container .main-text .btn {
  background-color: #ff5400;
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s ease;
  font-weight: bold;
}
.main-container .main-text .btn:hover {
  background: #555;
}
.main-container .main-image {
  flex: 1 1 200px;
  text-align: center;
}
.main-container .main-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    text-align: center;
    font-family: "Open Sans";
  }
  .main-container .main-text h2 {
    font-size: 1.6rem;
  }
  .main-container .main-text p {
    font-size: 0.95rem;
  }
  .main-container .main-image img {
    max-width: 100%;
  }
}
nav {
  position: relative;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #f5f5f5;
  z-index: 99;
}
nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
nav .navbar .logo {
  margin-right: auto;
  padding-left: 5px;
}
nav .navbar .logo a {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}
nav .navbar .links {
  display: flex;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #22587e;
  font-size: 16px;
  font-family: "Open Sans";
  font-weight: 500;
  font-style: normal;
}
nav .navbar .links li .arrow {
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #22587e;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #f5f5f5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlcss-sub-menu {
  display: block;
}
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .links li .sub-menu a {
  font-size: 16px;
  font-family: "Open Sans";
  font-weight: 500;
  font-style: normal;
}
.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}
.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #22587e;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .bx-menu {
  display: none;
}

.links li:hover .htmlcss-arrow {
  transform: rotate(180deg);
}
.links li:hover .js-arrow {
  transform: rotate(180deg);
}
.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}

.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}

.search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}

@media (max-width: 920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 10px;
  }
  nav .navbar .logo a {
    font-size: 27px;
  }
  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a {
    font-size: 15px;
  }
}
@media (max-width: 800px) {
  .navbar .bx-menu {
    display: block;
    font-size: 25px;
    color: #22587e;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
    display: none;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar .links li .sub-menu .more span {
    display: flex;
    align-items: center;
  }
  .navbar .nav-links.show1 .links .htmlcss-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow {
    transform: rotate(180deg);
  }
  .navbar .nav-links.show3 .links .js-sub-menu {
    display: block;
  }
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: #f5f5f5;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .arrow {
    line-height: 40px;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  nav .navbar .links li:hover .htmlcss-sub-menu {
    display: none;
  }
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }
  .sidebar-logo i {
    font-size: 25px;
    color: #22587e;
  }
  .links li:hover .htmlcss-arrow {
    transform: rotate(0deg);
  }
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}
.auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20vh;
}

.auth-box {
  background: #f5f5f5;
  width: 100%;
  max-width: 380px;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.auth-box h2 {
  font-size: 1.6rem;
  color: #2d3436;
  margin-bottom: 5px;
}
.auth-box p {
  color: #636e72;
  margin-bottom: 15px;
}
.auth-box .login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Regular Input Group */
  /* OTP Input Group (input + button) */
  /* Buttons */
}
.auth-box .login-form.hidden {
  display: none;
}
.auth-box .login-form .input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.auth-box .login-form .input-group i {
  position: absolute;
  left: 12px;
  font-size: 1.2rem;
  color: #636e72;
  pointer-events: none;
}
.auth-box .login-form .input-group input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}
.auth-box .login-form .input-group input:focus {
  border-color: #0984e3;
}
.auth-box .login-form .otp-group {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.auth-box .login-form .otp-group i {
  position: absolute;
  left: 12px;
  font-size: 1.2rem;
  color: #636e72;
  pointer-events: none;
}
.auth-box .login-form .otp-group input {
  flex: 1;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}
.auth-box .login-form .otp-group input:focus {
  border-color: #0984e3;
}
.auth-box .login-form .otp-group .small-btn {
  white-space: nowrap;
  background: #00b894;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.auth-box .login-form .otp-group .small-btn:hover {
  background: #636e72;
}
.auth-box .login-form .btn {
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.auth-box .login-form .btn-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.auth-box .login-form .btn-row a {
  text-decoration: none;
}
.auth-box .login-form .main-btn {
  background: #ff5400;
  color: #fff;
  font-weight: bold;
}
.auth-box .login-form .main-btn:hover {
  background: #aa3900;
}
.auth-box .login-form .alt-btn {
  background: #dfe6e9;
  color: #2d3436;
  font-weight: bold;
}
.auth-box .login-form .alt-btn:hover {
  background: #013a65;
}
.auth-box .login-form .extra-links {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-top: 10px;
}
.auth-box .login-form .extra-links a {
  color: #0984e3;
  text-decoration: none;
  transition: color 0.3s;
}
.auth-box .login-form .extra-links a:hover {
  color: #013a65;
}

/* Search box */
.search-group {
  position: relative;
  margin-bottom: 25px;
}
.search-group input {
  width: 100%;
  padding: 12px 50px 12px 15px; /* space for right icon button */
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}
.search-group input:focus {
  border-color: #ff5400;
}
.search-group .search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #ff5400;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 20%;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.search-group .search-btn i {
  font-size: 1.2rem;
}
.search-group .search-btn:hover {
  background: #aa3900;
  transform: translateY(-50%) scale(1.05);
}

/* Right-aligned button */
.btn-right {
  text-align: right;
  margin-top: 10px;
}
.btn-right .main-btn {
  background: #ff5400;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-right .main-btn:hover {
  background: #aa3900;
}

/* Radio options (radio right side) */
.radio-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.radio-option:hover {
  border-color: #ff5400;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.radio-option .option-text {
  font-size: 1rem;
  color: #2d3436;
  font-weight: 500;
}
.radio-option input[type=radio] {
  display: none;
}
.radio-option .custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 50%;
  position: relative;
  margin-left: 15px;
  flex-shrink: 0;
}
.radio-option .custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background: #ff5400;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.radio-option input:checked + .custom-radio {
  border-color: #ff5400;
}
.radio-option input:checked + .custom-radio::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Radio title */
.radio-group-title {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #181818;
}

/* Radio group layout */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Main radio container */
.custome-radio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 14px;
  background: #fff;
  border-radius: 5px;
  border-bottom: solid 1px #d5d5d5;
  cursor: pointer;
}

.custome-radio input {
  display: none;
}

/* Circle radio */
.radio-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 50%;
  position: relative;
}

/* Selected inner circle */
.radio-mark::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ff5400;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  display: none;
}

/* Text */
.radio-text {
  font-size: 1.05rem;
  color: #181818;
}

/* When selected */
.custome-radio input:checked ~ .radio-mark {
  border-color: #ff5400;
}

.custome-radio input:checked ~ .radio-mark::after {
  display: block;
}

.custome-radio input:checked ~ .radio-text {
  color: #ff5400;
  font-weight: 600;
}

.checkbox-group {
  text-align: left;
  margin-top: 20px;
}
.checkbox-group .group-title {
  font-weight: 600;
  color: #2d3436;
  display: block;
  margin-bottom: 10px;
}
.checkbox-group .checkbox-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 10px;
}
.checkbox-group .checkbox-list label {
  position: relative;
  background: #fff;
  border: 1px solid #ccc;
  padding: 12px 15px;
  border-radius: 10px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}
.checkbox-group .checkbox-list label:hover {
  border-color: #ff5400;
  background: #fdf4ef;
}
.checkbox-group .checkbox-list label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.checkbox-group .checkbox-list label input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 5px;
  top: -1px;
  width: 5px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: all 0.3s ease;
}
.checkbox-group .checkbox-list label input[type=checkbox]:checked {
  background: #ff5400;
  border-color: #ff5400;
  box-shadow: 0 0 5px rgba(255, 84, 0, 0.4);
  animation: pop 0.25s ease;
}
.checkbox-group .checkbox-list label input[type=checkbox]:checked::after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}
.checkbox-group .checkbox-list label span {
  margin-right: 10px;
}

/* Small pop animation when checked */
@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
.button-row {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.container-heading {
  text-align: center;
  margin-bottom: 15px;
}
.container-heading h2 {
  font-weight: 400;
}

input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

.card {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 425px;
  background-color: #F5F5F5;
  border-radius: 10px;
  padding: 15px;
}

.card-image {
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 65%;
  background-image: url("/images/hometutorsite-main-image1.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 5%;
  position: relative;
}

.card-heading {
  position: absolute;
  left: 10%;
  top: 15%;
  right: 10%;
  font-size: 1.75rem;
  font-weight: 700;
  color: #735400;
  line-height: 1.222;
}
.card-heading small {
  display: block;
  font-size: 0.75em;
  font-weight: 400;
  margin-top: 0.25em;
}

.card-form {
  padding: 0.1rem 0rem 0;
}

.input {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  padding-top: 1.5rem;
}
.input + .input {
  margin-top: 10px;
}

.input-label {
  color: #181818;
  position: absolute;
  top: 1.5rem;
  transition: 0.25s ease;
}

.input-field {
  border: 0;
  z-index: 1;
  background-color: transparent;
  border-bottom: 2px solid #eee;
  font: inherit;
  font-size: 1.125rem;
  padding: 0.25rem 0;
}
.input-field:focus, .input-field:valid {
  outline: 0;
  border-bottom-color: #ff5400;
}
.input-field:focus + .input-label, .input-field:valid + .input-label {
  color: #ff5400;
  transform: translateY(-1.5rem);
}

.action {
  margin-top: 2rem;
}

.action-button {
  font: inherit;
  font-size: 1.25rem;
  padding: 0.5em;
  width: 100%;
  font-weight: bold;
  background-color: #ff5400;
  border-radius: 6px;
  color: #FFF;
  border: 0;
}
.action-button:focus {
  outline: 0;
}

.card-info {
  padding: 1rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #8597a3;
}
.card-info a {
  display: block;
  color: #ff5400;
  text-decoration: none;
}

.input {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 0;
  bottom: 6px;
  font-size: 1.3rem;
  color: #999;
  transition: 0.3s ease;
  pointer-events: none;
}

/* When input focuses, also highlight icon */
.input-field:not(:-moz-placeholder) ~ .input-icon {
  color: #999999;
}
.input-field:focus ~ .input-icon,
.input-field:not(:placeholder-shown) ~ .input-icon {
  color: #999999;
}

:root {
  --first-color:#004e75;
}/*# sourceMappingURL=main.css.map */