* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.error {
  width: 100%;
  color: red;
  padding: 0.5rem 0;
}

html, body {
  height: 100%;
  margin: 0;
}

#gradient {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  z-index: 999999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  align-items: center;
  justify-content: center;
}
#gradient div.message {
  width: 500px;
  max-width: 90%;
  height: 200px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#gradient div.message h5 {
  font-weight: 700;
  color: #17637b;
  font-size: 0.95rem;
  text-align: center;
  line-height: 2rem;
  margin: 0;
  text-shadow: none;
  animation: none;
}
#gradient div.message a {
  position: relative;
  display: inline-block;
  margin: 15px;
  padding: 10px 10px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: #17637b;
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid #17637b;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0 #17637b;
  font-weight: 700;
}
#gradient div.message a:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 #17637b;
}
#gradient div.message a:active {
  transform: scale(0.9);
}

.loader {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  z-index: 999999;
  display: none;
  justify-content: center;
  align-items: center;
}
.loader .lds-ripple,
.loader .lds-ripple div {
  box-sizing: border-box;
}
.loader .lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader .lds-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loader .lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

.divider {
  border-style: solid;
  border-width: 1px;
  -o-border-image: linear-gradient(to left, transparent 1%, rgb(255, 255, 255) 50%, transparent 100%) 100% 0 100% 0/3px 0 3px 0 stretch;
  border-image: linear-gradient(to left, transparent 1%, rgb(255, 255, 255) 50%, transparent 100%) 100% 0 100% 0/3px 0 3px 0 stretch;
  height: 0px;
  line-height: 0px;
  background-color: transparent;
  color: white;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  margin: 30px 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0a0a0f;
  color: #fff;
  overflow-x: hidden;
  background: linear-gradient(90deg, #034052 0%, #0b5b73 80%, #117b80 100%);
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

header {
  height: 80px;
  width: 100%;
  max-height: 100px;
  position: fixed;
  z-index: 999;
}
@media (max-width: 600px) {
  header {
    height: 100px;
  }
}
header.internal-page {
  position: relative;
}
header section {
  padding: 0 !important;
  max-width: 1200px !important;
  height: 100%;
}
header .header-main {
  display: flex;
  height: 100%;
  position: relative;
}
header .header-main .header-child {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  header .header-main .header-child {
    justify-content: left;
  }
}
@media (max-width: 600px) {
  header .header-main .header-child {
    flex-wrap: wrap;
    justify-content: center;
  }
}
header .header-main .header-child a {
  padding: 0 1rem;
}
@media (max-width: 800px) {
  header .header-main .header-child a {
    padding: 0 0.2rem;
  }
}
header .header-main .header-child img {
  padding-left: 1rem;
  max-height: 65px;
}
@media (max-width: 800px) {
  header .header-main .header-child img {
    max-height: 50px;
  }
}
@media (max-width: 600px) {
  header .header-main .header-child img {
    max-height: 45px;
  }
}
header .header-main .header-child.right {
  justify-content: end;
}
header .header-main .hamb-menu {
  position: absolute;
  right: 20px;
  top: 15px;
}
@media (max-width: 600px) {
  header .header-main .hamb-menu {
    right: 5px;
    top: 20px;
  }
}

.container {
  position: relative;
}

.hamburger {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .hamburger {
    width: 40px;
    height: 40px;
  }
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.line {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu {
  position: absolute;
  top: 70px;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 20px;
  min-width: 300px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-item {
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  display: block;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #17637b 0%, #39aaaf 100%);
  transition: width 0.3s ease;
  z-index: -1;
}

.menu-item:hover {
  color: white;
  transform: translateX(10px);
}

.menu-item:hover::before {
  width: 100%;
}

.menu-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #ddd, transparent);
  margin: 10px 0;
}

.glass-card {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("../img/main-3.jpg?v=323232");
  background-size: cover;
  background-position: center center;
}
@media (max-width: 650px) {
  .hero {
    background-position: left center;
  }
}
.hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}
.hero .gradient {
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 2rem;
  z-index: 99;
  animation: fade-up 1s ease-out;
}
.hero-content .hc-main {
  display: flex;
}
@media (max-width: 650px) {
  .hero-content .hc-main {
    flex-direction: column;
  }
}
.hero-content .hc-main .hc-single {
  width: 50%;
  padding: 0 2%;
}
@media (max-width: 650px) {
  .hero-content .hc-main .hc-single {
    width: 100%;
    text-align: center !important;
  }
}
.hero-content .hc-main .hc-single.left {
  text-align: end;
}
.hero-content .hc-main .hc-single.right {
  text-align: start;
  padding-top: 20px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 1px 2px 5px rgb(0, 0, 0);
}

.subheadline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 3rem;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 1px 2px 5px rgb(0, 0, 0);
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #17637b, #9b9b9b, #39aaaf);
  color: white;
  box-shadow: 0 10px 30px rgba(32, 157, 186, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(32, 157, 186, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #a0a0c0;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.why-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}
.why-card.eti {
  background-image: url("../img/ai.jpg");
}
.why-card.lhs {
  background-image: url("../img/lhs.jpg");
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.1), rgba(236, 72, 153, 0.3));
  opacity: 1;
  transition: opacity 0.4s ease;
}
.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(126, 34, 206, 0.5);
}
.why-card:hover::before {
  opacity: 1;
}
.why-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 1px 2px 5px rgb(0, 0, 0);
}
.why-card p {
  color: #ffffff;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  text-shadow: 1px 2px 5px rgb(0, 0, 0);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(126, 34, 206, 0.3);
}

.feature-icon {
  width: 100%;
  height: 100%;
  max-height: 300px;
  background: linear-gradient(135deg, #7e22ce, #ec4899);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.feature-icon p {
  color: #b0b0c0;
  line-height: 1.7;
}
.feature-icon img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-text {
  padding: 0 1rem 1rem 1rem;
}
.feature-text h3 {
  padding-bottom: 1rem;
}
.feature-text p {
  line-height: 1.5rem;
}

.who-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 650px) {
  .who-content {
    padding: 1rem;
  }
}

.who-list {
  list-style: none;
  margin-top: 2rem;
}
.who-list li {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(5, 66, 85, 0.3);
  border-radius: 10px;
  border-left: 4px solid #9b9b9b;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.who-list li:hover {
  transform: translateX(10px);
  background: rgba(5, 66, 85, 0.5);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.pricing-card {
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.4s ease;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(17, 113, 143, 0.4);
}
.pricing-card p {
  margin: 1rem 0;
  color: #9b9b9b;
  line-height: 1.7rem;
}
.pricing-card p.date {
  color: white;
  font-weight: 600;
  font-size: 1.3rem;
}
.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 1.5rem 0;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}
.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #c0c0d0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  padding: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.faq-question:hover {
  background: rgba(5, 66, 85, 0.4);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #b0b0c0;
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.final-cta {
  padding: 6rem 2rem;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

footer {
  background: #050508;
  padding: 3rem 2rem;
  text-align: center;
  color: #808090;
}

.timeline {
  position: relative;
  padding: 20px 0 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 650px) {
  .timeline {
    padding: 20px 0 20px 50px;
  }
}

.timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8));
  border-radius: 2px;
}
@media (max-width: 650px) {
  .timeline::before {
    left: 8px;
  }
}

.step {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInRight 0.6s ease forwards;
}

.step:nth-child(1) {
  animation-delay: 0.2s;
}

.step:nth-child(2) {
  animation-delay: 0.4s;
}

.step:nth-child(3) {
  animation-delay: 0.6s;
}

.step:nth-child(4) {
  animation-delay: 0.8s;
}

.step:nth-child(5) {
  animation-delay: 1s;
}

.step-number {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #17637b 0%, #39aaaf 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 5px solid rgba(255, 255, 255, 0.4);
  z-index: 2;
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.step-content {
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(135deg, #9b9b9b 0%, #c7c6c6 100%);
  transition: width 0.3s ease;
}

.step-content:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.step-content:hover::before {
  width: 12px;
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-title {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
}

.step-description {
  font-size: 1.1rem;
  color: #9b9b9b;
  line-height: 1.7;
}

.services {
  display: grid;
  gap: 25px;
  margin-bottom: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  border-left: 5px solid #9b9b9b;
  box-shadow: 0 0 10px rgba(17, 113, 143, 0.3);
}

.service-card:hover {
  transform: translateX(10px);
  box-shadow: 0 0 15px rgba(17, 113, 143, 0.5);
}

.icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  font-weight: bold;
}

.service-content h3 {
  color: #fff;
  font-size: 1.3em;
  margin-bottom: 8px;
}

.service-content p {
  color: #9b9b9b;
  line-height: 1.6;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.register .register-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.register .register-container .form-card {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.register .register-container .form-card .reg-header {
  text-align: center;
  margin-bottom: 40px;
}
.register .register-container .form-card .reg-header .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}
.register .register-container .form-card .reg-header .icon-wrapper svg {
  width: 35px;
  height: 35px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}
.register .register-container .form-card .reg-header h1 {
  color: white;
  font-size: 2.5em;
  margin-bottom: 10px;
}
.register .register-container .form-card .fs-section {
  transition: all 0.3s ease;
  width: 100%;
}
.register .register-container .form-card .fs-section.fs-show {
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  display: block !important;
}
.register .register-container .form-card .fs-section.fs-hide {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.register .register-container .form-card .input-group {
  position: relative;
  margin: 3rem 0;
}
.register .register-container .form-card .input-group .input-field {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}
.register .register-container .form-card .input-group .input-field::-moz-placeholder {
  color: transparent;
}
.register .register-container .form-card .input-group .input-field::placeholder {
  color: transparent;
}
.register .register-container .form-card .input-group .input-field:focus {
  border-color: white;
  background: rgba(255, 255, 255, 0.25);
}
.register .register-container .form-card .input-group .input-label {
  position: absolute;
  left: 15px;
  top: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
}
.register .register-container .form-card .input-group .input-field:focus ~ .input-label,
.register .register-container .form-card .input-group .input-field.filled ~ .input-label {
  top: -25px;
  left: 0;
  font-size: 14px;
  color: white;
  font-weight: 600;
}
.register .register-container .form-card .input-group .underline {
  height: 2px;
  background: white;
  border-radius: 2px;
  width: 0;
  transition: width 0.3s ease;
  margin-top: 5px;
}
.register .register-container .form-card .input-group .input-field:focus ~ .underline {
  width: 100%;
}
.register .register-container .form-card .input-group .act-con {
  width: 100%;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.register .register-container .form-card .input-group .act-con a {
  display: block;
  padding: 1rem 2rem;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  text-decoration: none;
}
.register .register-container .form-card .input-group .act-con a:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.register .register-container .form-card .institute-section {
  margin-bottom: 30px;
}
.register .register-container .form-card .institute-section .section-label {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}
.register .register-container .form-card .institute-section .section-label svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}
.register .register-container .form-card .institute-section .button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1rem;
}
.register .register-container .form-card .institute-section .button-grid .radio-button {
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.register .register-container .form-card .institute-section .button-grid .radio-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}
.register .register-container .form-card .institute-section .button-grid .radio-button.active {
  background: white;
  color: #667eea;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}
.register .register-container .form-card .institute-section .text-box {
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  min-height: 300px;
}
.register .register-container .form-card .institute-section .checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1rem;
}
.register .register-container .form-card .institute-section .checkbox-group .checkbox-btn {
  position: relative;
}
.register .register-container .form-card .institute-section .checkbox-group .checkbox-btn input[type=checkbox] {
  display: none;
}
.register .register-container .form-card .institute-section .checkbox-group .checkbox-btn label {
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  display: inline-block;
}
.register .register-container .form-card .institute-section .checkbox-group .checkbox-btn input[type=checkbox]:hover ~ label {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}
.register .register-container .form-card .institute-section .checkbox-group .checkbox-btn input[type=checkbox]:checked ~ label {
  background: white;
  color: #667eea;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}
.register .register-container .form-card .other-field {
  display: none;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}
.register .register-container .form-card .other-field.show {
  display: block;
  opacity: 1;
}
.register .submit-btn {
  width: 100%;
  padding: 18px;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.register .submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.register .submit-btn.success {
  background: #10b981;
  color: white;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  z-index: 9999;
}
.modal .modal-content {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  margin: auto;
  padding: 10px 30px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.4s ease;
}
.modal .close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.modal .close:hover {
  color: #000;
}
.modal form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  margin: 3rem 0;
}
.modal form .input-group {
  position: relative;
  margin: 1rem 0;
}
.modal form .input-group .input-field {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}
.modal form .input-group .input-field::-moz-placeholder {
  color: transparent;
}
.modal form .input-group .input-field::placeholder {
  color: transparent;
}
.modal form .input-group .input-field:focus {
  border-color: white;
  background: rgba(255, 255, 255, 0.25);
}
.modal form .input-group .input-label {
  position: absolute;
  left: 15px;
  top: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
}
.modal form .input-group .input-field:focus ~ .input-label,
.modal form .input-group .input-field.filled ~ .input-label {
  top: -25px;
  left: 0;
  font-size: 14px;
  color: white;
  font-weight: 600;
}
.modal form .input-group .underline {
  height: 2px;
  background: white;
  border-radius: 2px;
  width: 0;
  transition: width 0.3s ease;
  margin-top: 5px;
}
.modal form .input-group .input-field:focus ~ .underline {
  width: 100%;
}
.modal form .input-group .act-con {
  width: 100%;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.modal form .input-group .act-con a {
  display: block;
  padding: 1rem 2rem;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  text-decoration: none;
}
.modal form .input-group .act-con a:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.modal form .button-field {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal form .button-field .btn-primary {
  border: none;
  padding: 12px;
  border-radius: 1rem;
  min-width: 100px;
  cursor: pointer;
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */