/* css// style.css */
html {
  font-synthesis: none;
}

body {
  font-family: 'Cairo', sans-serif;
  font-weight: normal;
  font-style: normal !important;
  font-synthesis: none;
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #0c174d;
  background-size: contain;
  text-align: center;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('../images/background.webp') no-repeat center center;
  background-size: cover;
  z-index: -1;
}

/* ========== 3) Navbar ========== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(12, 23, 77, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 10px 0;
}

.navbar__links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.logo-link img {
  width: 30px;
  height: auto;
}

.logo-link img:hover {
  filter: drop-shadow(0 0 10px #0ff);

}

.navbar__item a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar__item a:hover {
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
}

.main-content {
  padding-top: 80px;
  padding-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== 4) الصفحات الرئيسية ========== */
.main-title {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #0ff;
}

.main-subtitle {
  font-size: 24px;
  margin-bottom: 30px;

}

.intro-section {
  background: rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.3s ease;
  margin: 10px auto;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.intro-section,
.cards-section {
  margin: 40px auto;
  max-width: 1000px;

}

/* الكروت */
.cards-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  width: 300px;
  padding: 20px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 20px #0ff;
}

/* ========== 5) صفحة About ========== */
.about-content {
  text-align: left;
  max-width: 1200px;
  margin: 80px auto 40px;
  padding: 0 20px;
}

.page-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.section-block {
  margin-bottom: 40px;
  direction: rtl;
  text-align: right;
}

.accreditation-section {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
}

.accreditation-section h2 {
  font-size: 2em;
  color: #ffcc00;
  margin-bottom: 20px;
  text-shadow: 0px 0px 8px #ffcc00;
}

.badges-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge {
  width: 150px;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.badge:hover {
  transform: scale(1.1);
  filter: drop-shadow(0px 0px 5px rgba(255, 204, 0, 0.8));
}

/* ========== 6) صفحة Tracks ========== */
.tracks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: 40px auto;
}

.track-container {
  background: rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.3s ease;

  width: 440px;
  padding: 20px;
  border-radius: 10px;

}

.in-track-img {
  width: 20%;
  height: 200px;
  margin: 7px;
  text-align: left;

}

.in-track-title {
  font-size: 30px;
  text-align: center;
  text-shadow: 0 0 8px #0ff;

}

.track-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.track-container:hover {
  box-shadow: 0 0 20px #0ff;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  overflow: hidden;
  transition: .5s all;
}

/* ========== 7) Footer ========== */
.footer {
  background: rgba(12, 23, 77, 0.8);
  padding: 20px;
  text-align: center;
  color: #fff;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer__container p {
  margin: 0;
}

.footer__links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer__links li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer__links li a:hover {
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
}

.awards-intro {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

/* Year / Competition sections */
/* .awards-year {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
} */

/* صندوق الجوائز */
.awards-year {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  padding: 1.2rem;
  margin: 1.2rem 0;
  border-radius: 12px;
  transition: transform .25s;
}

.awards-year:hover {
  transform: scale(1.015);
}

.awards-year h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  text-shadow: 0 0 5px #0ff;
}

/* Awards list */
.awards-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.awards-list li {
  margin: 8px 0;
  line-height: 1.5;
}

.awards-list li strong {
  color: #0ff;
}


.slogan {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #0ff;
  animation: typing-and-caret 3s steps(40, end) forwards;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #0ff;
}

.image-container {
  width: 100%;
}

.white-text-img {
  width: 100%;
  text-align: left;

}

.address-section {
  text-align: center;
  margin: 40px auto;
  max-width: 600px;
}

.address-section h2 {
  margin-bottom: 15px;
  font-size: 28px;
  text-shadow: 0 0 5px #0ff;
}

.address-details {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.map-section {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}

.map-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.map-container {
  overflow: hidden;
  margin: 0 auto;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 8px;
}

.course-section {
  background-color: #0c174d;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.course-title {
  font-size: 2.5em;
  color: #ffcc00;
  text-shadow: 0px 0px 10px #ffcc00;
  margin-bottom: 20px;
}

.course-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.course-details ul {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
  max-width: 600px;
  margin: 20px auto;
}

.course-details li {
  padding: 8px 0;
}

.enroll-section {
  margin-top: 20px;
}

.enroll-btn {
  background-color: #ffcc00;
  color: #0c174d;
  padding: 12px 25px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
}

.enroll-btn:hover {
  background-color: #ffdb4d;
}

.announcement-box {
  background: linear-gradient(135deg, #aed9ef, #d3e4fc);
  color: #0c174d;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0px 0px 15px rgba(255, 204, 0, 0.8);
}

.announcement-box h2 {
  font-size: 2em;
  margin-bottom: 10px;
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.8);
}

.announcement-box p {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.register-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #0c174d;
  background-color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.register-btn:hover {
  background-color: #ffeb99;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.link-primary {
  color: #0ff;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.25s ease;
}

.link-primary:hover {
  opacity: .85;
}

/* ==========  قائمة المسابقات داخل فقرة "من نحن" ========== */
.competitions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  list-style: none;
  margin: 18px auto;
  padding: 0;
  max-width: 700px;
}

.competitions li {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  color: #ffcc00;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.competitions li:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px #0ff;
}



.age-filter-section {
  text-align: center;
  margin: 40px auto;
  max-width: 1100px;
}

.age-btn {
  font-size: 1.25em;
  font-family: 'Cairo';
  background: #ffcc00;
  color: #0c174d;
  font-weight: 700;
  padding: 18px 60px 18px 45px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease;
  padding-inline: 45px 30px;
  position: relative;
  min-width: 320px;

}

.age-btn .arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border: solid #0c174d;
  border-width: 0 3px 3px 0;
  transition: transform .25s ease;
}

.age-btn[aria-expanded="true"] .arrow {
  transform: translateY(-50%) rotate(-135deg);
}

.age-btn:hover {
  background: #ffdb4d;
}

.age-courses {
  display: none;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .4s ease, opacity .4s ease;
}

.age-courses.open {
  max-height: 2000px;
  opacity: 1;
}

/* ====== أرقام تهمك ====== */
.facts-section {
  background: rgba(255, 255, 255, 0.08);
  padding: 50px 20px;
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
}

.facts-title {
  font-size: 32px;
  margin-bottom: 30px;
  text-shadow: 0 0 6px #0ff;
}

.facts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.fact-box {
  background: rgba(12, 23, 77, 0.85);
  border: 2px solid #0ff;
  border-radius: 10px;
  padding: 25px 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fact-box h3 {
  font-size: 2.2em;
  margin: 0 0 10px;
  color: #ffcc00;
  text-shadow: 0 0 8px #ffcc00;
}

.fact-box p {
  margin: 0;
  font-size: 1.1em;
  font-weight: 600;
}

.fact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #0ff;
}


.reviews-slider {
  width: 100%;
  max-width: 900px;
  margin: 25px auto;
}

.reviews-slider .swiper-slide {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 255, 255, .4);
}

.reviews-title {
  font-size: 32px;
  margin-bottom: 10px;
  text-shadow: 0 0 6px #0ff;
}

.reviews-intro {
  font-size: 17px;
  margin-bottom: 20px;
  color: #ffcc00;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* ====== موقعنا ====== */
.location-section {
  background: rgba(255, 255, 255, 0.08);
  margin: 40px auto;
  padding: 50px 20px;
  max-width: 1000px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
}

.location-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-shadow: 0 0 6px #0ff;
}

.location-text {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.location-map {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.location-map:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px #0ff;
}

/* ====== CTA ====== */
.cta-section {
  text-align: center;
  margin: 60px auto;
  padding: 60px 20px;
  background: radial-gradient(circle at center, rgba(0, 255, 255, .15), rgba(12, 23, 77, .9));
  border-radius: 12px;
  max-width: 1000px;
  box-shadow: 0 0 15px rgba(0, 255, 255, .4);
}

.cta-section h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #ffcc00;
  text-shadow: 0 0 8px #ffcc00;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-btn {
  background: #ffcc00;
  color: #0c174d;
  padding: 15px 35px;
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 10px;
  transition: background .25s ease, box-shadow .25s ease;
}

.cta-btn:hover {
  background: #ffdb4d;
  box-shadow: 0 0 10px #ffcc00;
}

.faq-section {
  margin: 50px auto;
  max-width: 900px;
}

.faq-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 0 8px #0ff;
}

.faq-btn {
  font-family: 'Cairo';

  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
  padding: 14px 18px;
  margin: 8px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: background 0.25s;
}

.faq-btn:hover {
  background: rgba(0, 255, 255, 0.15);
}

.faq-btn .arrow {
  font-family: 'Cairo';

  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  border: solid #0ff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 6px;
  transition: transform 0.3s;
  transform-origin: center;
}

.faq-btn[aria-expanded="true"] .arrow {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  font-family: 'Cairo';
  direction: rtl;
  text-align: right;
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 8px 8px;
  padding: 0 18px;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.6;
  transition: max-height 0.35s ease;
}



@media (max-width: 600px) {
  .facts-section {
    padding: 40px 15px;
  }

  .facts-title {
    font-size: 26px;
  }

  .fact-box h3 {
    font-size: 1.8em;
  }
}

@keyframes typing-and-caret {
  from {
    width: 0;
  }

  to {
    width: 100%;
    border-right: transparent;

  }
}

/* ====== مساراتنا التعليمية ====== */
.programs-section {
  margin: 40px auto;
  max-width: 1100px;
  text-align: center;
}

.programs-title {
  font-size: 32px;
  margin-bottom: 30px;
  text-shadow: 0 0 6px #0ff;
}

.programs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  padding: 0 10px;
}

.program-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid #0ff;
  border-radius: 12px;
  padding: 20px 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(4px);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #0ff;
}

.program-img {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto 15px;
}

.program-card h3 {
  margin: 0 0 10px;
  font-size: 1.3em;
  color: #ffcc00;
  text-shadow: 0 0 6px #ffcc00;
}

.program-card p {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.5;
}

.programs-btn {
  display: inline-block;
  margin-top: 30px;
  background: #ffcc00;
  color: #0c174d;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.programs-btn:hover {
  background: #ffdb4d;
}

@media (max-width: 600px) {
  .programs-title {
    font-size: 26px;
  }

  .program-card h3 {
    font-size: 1.15em;
  }
}




@media (max-width: 768px) {
  .video {
    height: 240px;
  }

  .main-video-title {
    font-size: 25px;
  }

  .main-title {
    font-size: 32px;
  }

  .intro-section {
    background: rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease;
    margin: 10px auto;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }

  .main-subtitle {
    font-size: 18px;
  }

  .cards-section,
  .tracks {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .track-container,
  .intro-section {
    width: 80%;
  }

  .in-track-img {
    width: 70px;
    height: 150px;
    margin: auto;
    text-align: left;
  }

  .about-content {
    text-align: left;
    margin: 80px 10px 40px;
  }

  .navbar__item a {
    font-size: 14px;
    font-weight: bold;

  }

  .slogan {
    font-size: 18px;
  }

  .footer__container {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    margin-top: 10px;

  }

  .footer a,
  .footer p,
  .footer__links li a,
  .footer__links {
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

}

.global-highlight {
  position: relative;
  background: linear-gradient(135deg, #0c174d 0%, #1b2670 50%, #26358f 100%);
  color: #fff;
  padding: 28px 22px;
  border-radius: 18px;
  margin: 28px 0 36px;
  box-shadow: 0 12px 28px rgba(12, 23, 77, 0.35);
  text-align: center;
  overflow: hidden;
}

.global-highlight h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
  color: #ffd74d;
}

.global-highlight .highlight-text {
  color: #00ffd0;
  font-weight: 800;
}

.global-highlight .highlight-note {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd74d;
}

.global-highlight .ribbon {
  position: absolute;
  top: 14px;
  left: -32px;
  transform: rotate(-12deg);
  background: #ffd74d;
  color: #0c174d;
  padding: 8px 36px;
  font-weight: 800;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  font-size: 0.95rem;
}

.global-highlight::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.25), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

.awards-summary-box {
  background: linear-gradient(135deg, rgba(12, 23, 77, .95), rgba(30, 45, 120, .9));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 18px 20px;
  max-width: 700px;
  margin: 20px auto 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.awards-summary-box p {
  margin: 8px 0;
  font-size: 18px;
}

.techware-register-form {
  direction: rtl;
  text-align: right;
  max-width: 920px;
  margin: 40px auto;
  padding: 0 14px;
  font-family: 'Cairo', sans-serif;
}

.techware-register-form * {
  box-sizing: border-box;
}

.techware-register-form .register-form-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.35);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.techware-register-form .form-head {
  text-align: center;
  margin-bottom: 24px;
}

.techware-register-form .form-head h2,
.techware-register-form .form-section h3 {
  color: #ffcc00;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.65);
  margin: 0 0 10px;
}

.techware-register-form .form-head p {
  margin: 0;
  color: #fff;
  line-height: 1.7;
}

.techware-register-form .form-section {
  background: rgba(12, 23, 77, 0.58);
  border: 1px solid rgba(0, 255, 255, 0.22);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.techware-register-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.techware-register-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.techware-register-form label {
  font-weight: 700;
  color: #fff;
}

.techware-register-form label span {
  color: #ffcc00;
}

.techware-register-form small {
  color: rgba(255, 255, 255, 0.7);
}

.techware-register-form .form-control {
  width: 100%;
  font-family: 'Cairo', sans-serif;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.45);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.techware-register-form .form-control:focus {
  border-color: #0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.45);
}

.techware-register-form select.form-control {
  color: #fff;
}

.techware-register-form select.form-control option {
  color: #0c174d;
}

.techware-register-form .radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.techware-register-form .radio-row label,
.techware-register-form .policy-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.techware-register-form .info-box,
.techware-register-form .recommendation-box {
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.35);
  border-radius: 12px;
  padding: 12px;
  line-height: 1.8;
}

.techware-register-form .recommendation-box {
  margin-top: 14px;
}

.techware-register-form .recommendation-box strong {
  color: #ffcc00;
}

.techware-register-form .policy-box {
  max-height: 260px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.techware-register-form .policy-box h4 {
  color: #ffcc00;
  margin-top: 0;
}

.techware-register-form .policy-box ol {
  padding-right: 20px;
  margin: 10px 0 0;
}

.techware-register-form .submit-btn {
  width: 100%;
  border: none;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #0c174d;
  background: #ffcc00;
  padding: 14px 22px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.techware-register-form .submit-btn:hover:not(:disabled) {
  background: #ffdb4d;
  box-shadow: 0 0 14px rgba(255, 204, 0, 0.65);
  transform: translateY(-1px);
}

.techware-register-form .submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.techware-register-form .form-message {
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  display: none;
  line-height: 1.7;
  text-align: center;
  font-weight: 700;
}

.techware-register-form .form-message.success {
  display: block;
  color: #0c174d;
  background: rgba(255, 204, 0, 0.95);
}

.techware-register-form .form-message.error {
  display: block;
  color: #fff;
  background: rgba(180, 30, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (min-width: 720px) {
  .techware-register-form .register-form-card {
    padding: 28px;
  }

  .techware-register-form .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}