:root {
  /* الألوان الأساسية */
  --primary-light-blue: #10b7b1;
  --primary-navy-blue: #16cfd6;

  /* تدرجات الأزرق الفاتح */
  --blue-50: #e1f5fe;
  --blue-100: #b3e5fc;
  --blue-200: #81d4fa;
  --blue-300: #4fc3f7;
  --blue-400: #29b6f6;
  --blue-500: #03a9f4;

  /* تدرجات الكحلي */
  --navy-600: #1e88e5;
  --navy-700: #1976d2;
  --navy-800: #1565c0;
  --navy-900: #0d47a1;

  /* تدرجات الرمادي للتكست والخلفيات */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;

  /* ألوان تكميلية */
  --accent-cyan: #00bcd4;
  --accent-purple: #7e57c2;
  --accent-orange: #ffa726;

  /* للتنبيهات */
  --success: #4caf50;
  --warning: #ffc107;
  --error: #f44336;
}
button {
  background-color: var(--primary-light-blue);
  color: white;
  border: 0;
  outline: 0;
}

body {
  background-color: var(--gray-50);
  color: var(--gray-900);
}
@import url("https://fonts.googleapis.com/css2?family=Readex+Pro:wght@160..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Special+Gothic+Condensed+One&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  transition: 0.3s ease-in-out;
}
.container {
  width: 80%;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: var(--gray-900);
}
img {
  width: 100%;
}
.sec_title {
  margin: 20px 0;
  font-size: 33px;
  color: var(--primary-navy-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 50px;
}
.sec_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 1px;
  background-color: var(--primary-navy-blue);
}
section {
  margin-top: 60px;
}
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: white;
  padding: 10px;
  z-index: 2;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .logo {
  width: 60px;
  min-width: 60px;
}
header .container nav {
  display: flex;
  gap: 20px;
}
header .container nav a {
  text-transform: capitalize;
}
header .container nav a:hover {
  color: var(--primary-navy-blue);
  transform: translateY(-2px);
}
header .container .loginBtn button {
  cursor: pointer;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 50px;
  background-color: var(--primary-navy-blue);
}
header .container .loginBtn button:hover {
  background-color: var(--primary-light-blue);
}
header .right {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* --hero */
.hero {
  height: 60vh;
  background-size: cover;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero .content {
  margin-left: 20px;
  display: flex;
  flex-direction: column;

  width: 500px;
}
.hero .content h1 {
  font-size: 32px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.hero .content h1 span {
  color: var(--primary-navy-blue);
  font-weight: bold;
  font-size: 38px;
}
.hero .content p {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.5;
}
.hero .content a {
  background-color: var(--primary-navy-blue);
  color: white;
  width: 200px;
  text-align: center;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 20px;
  transition: 0;
}
.hero .content a:hover {
  background-color: var(--primary-light-blue);
}
.hero .container .img {
  width: 200px;
}
/* --about */
.about_us h2 {
  font-weight: blo;
}
.about_us p {
  margin-top: 10px;
}
/* --our services */
.our_services .cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.our_services .cards .card {
  width: 100%;
  box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
  
}
.our_services .cards .card:hover {
  box-shadow: none;
}
.our_services .cards .card h1 {
  font-weight: 500;
  margin-bottom: 10px;
}
/* --teachers */
.teachers .cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.teachers .cards .card {
  width: 300px;
  border-radius: 10px;

  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.teachers .content{
  padding: 20px;
}
.teachers .cards .card img {
  height: 300px;
  width: 100%;
}
.teachers .cards .card p {
  bottom: 0;
  position: absolute;
  right: 0;
}
/* --featured */
.featured .cards {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 20px;
}
.featured .cards .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  background-color: var(--primary-navy-blue);
  color: var(--gray-100);
  padding: 20px;
  border-radius: 2px;
  gap: 17px;
  border-radius: 20px;
}
.featured .cards .card i {
  font-size: 32px;
}
.open_menu {
  /* --media */
  font-size: 28px;
  color: var(--primary-navy-blue);
  cursor: pointer;
  display: none;
}
.close_menu {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 33px;
  display: none;
}
@media (max-width: 900px) {
  video{
    width: 100%;
  }
  .open_menu,
  .close_menu {
    display: block;
    cursor: pointer;
  }
    header .container {
      flex-direction: column;
    }
  header .container nav {
    position: fixed;
    top: -500px;
    right: 0;
    left: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
  }
   header .container .logo{
    width: 80px;
   }
  .hero .container {
    flex-direction: column-reverse;
    gap: 20px;
    justify-content: center;
  }
  .hero .content {
    width: 100%;
  }
  .hero .content h1 {
    width: 100%;
    font-size: 22px;
  }
  .hero {
    height: 80vh;
  }
  .hero .content a {
    width: 100%;
  }
  .sec_title {
    font-size: 22px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  footer .container a {
    margin-top: 20px;
  }
  .register,
  .loginBtn {
    background-color: var(--primary-navy-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 15px;
    text-align: center;
  }

  .loginBtn span {
    display: none;
  }
  .contact .text .question{
    font-size: 12px;
  
  }
  .contact .text .question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size:10px;
    
  }
}
/* =====[page:sign up]========= */
.sign_up {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
.sign_up form {
  box-shadow: 0px 0px 10px var(--gray-300);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sign_up form h1 {
  text-align: center;
  text-transform: capitalize;
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--primary-navy-blue);
  font-weight: bold;
}
.sign_up form .input {
  display: flex;
  flex-direction: column;
}
.sign_up form .input label {
  opacity: 0.4;
}
.sign_up form .input input {
  padding: 10px;
  border: 0;
  outline: 0;
  background-color: var(--gray-200);
  border-radius: 2px;
}
.sign_up form .input button {
  padding: 10px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}
.sign_up form .input button:hover {
  background-color: var(--primary-navy-blue);
}
.sign_up form p a {
  color: rgb(90, 90, 246);
  text-decoration: underline;
}
/* ====new page[footer] */
footer {
  margin-top: 10px;
  background-color: rgba(255, 255, 255, 0.533);
  padding: 20px;
}
footer a {
  color: var(--gray-500);
}
footer img {
  width: 100px;
}
footer .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
footer .icons {
  display: flex;
  gap: 10px;
}
footer .icons a {
  background-color: var(--primary-navy-blue);
  color: white;
  padding: 10px 20px;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
footer .icons a:hover {
  background-color: var(--primary-light-blue);
}
footer .pagesNave {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .emails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer a:hover {
  color: var(--gray-100);
}
footer p {
  margin-top: 20px;
  text-align: center;
  color: var(--gray-600);
}
/* --veryfyPass */
.veryfyPass {
  box-shadow: 0px 0px 10px var(--gray-400);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.veryfyPass h3 {
  font-size: 20px;
}
.veryfyPass input {
  border: 0;
  outline: 0;
  background-color: var(--gray-50);
  padding: 10px;
}
.veryfyPass button {
  padding: 5px;
  width: 200px;
  cursor: pointer;
  width: 80%;
}
.veryfyPass a:hover {
}
.veryfyPass button:hover {
  background-color: var(--primary-navy-blue);
}
.veryfyPass p {
  font-size: 12px;
  color: var(--accent-orange);
}
.veryfyPass a {
  margin-top: 30px;
  background-color: var(--primary-light-blue);
  color: white;
  padding: 5px;
  width: 150px;
  font-size: 10px;
  text-align: center;
}
.register,
.loginBtn {
  background-color: var(--primary-navy-blue);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;

  text-align: center;
}
/* new page :[register] */
.register_sec {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register_sec .container {
  background-color: var(--gray-200);
  padding: 10px;
}
.register_sec .container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.register_sec .container form .input {
  display: flex;
  flex-direction: column;
}
.register_sec .container form .input label {
  margin-bottom: 2px;
  opacity: 0.6;
}
.register_sec .container form .input input {
  padding: 10px;
  border: 0;
  background-color: var(--gray-300);

  border-radius: 3px;
}
.register_sec .container form button {
  padding: 10px;
  border-radius: 5px;
}
/* ==new page */
.contact {
  margin-top: 150px;
}
.contact .text {
  width: 100%;
  border-bottom: 1px solid var(--gray-300);
  margin-bottom: 10px;
  padding: 10px;
}
.contact .text .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-size: 20px;
}
.contact .text form {
  display: flex;
  width: 100%;
  border: 1px solid var(--gray-400);
  border-radius: 5px;
overflow: hidden;
}
.contact .text form input {
  width: 100%;
  border: 0;
}
.contact .text form button {
  display: flex;
outline: 0;
  text-align: center;
  padding: 10px;
  gap: 10px;
  font-size: 20px;
  align-items: center;
  text-transform: capitalize;
}
.rate{
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.477);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  
}
.rate form{
  background-color: var(--gray-100);
  padding: 20px;
display: flex;
flex-direction: column;
gap: 20px;
width: 300px;
border-radius: 30px;

}
.rate form h3{
  font-size: 33px;
}
.rate form .inputs{
  display: flex;
  gap: 10px;
justify-content: center;
}
.rate form .inputs .input{
  display: flex;
  flex-direction: column;
  text-align: center;
}
.rate form .inputs .input input{
  font-size: 33px;
  cursor: pointer;
}
.rate form .buttons{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.rate form .buttons button{
  width: 100%;
  padding: 10px;
  cursor: pointer;
  border-radius: 20px;
}
.rate form .buttons button:last-child{
  background-color: var(--gray-400);
  color: black;
}
.rate form .buttons button:hover{
  opacity: 0.9;
}
.reveal{
  opacity: 0;
  transform: translateY(30px);
}
.reveal.active{
  opacity: 1;
  transform: translateY(0);
}

.video .videoo{

  display: flex;
  justify-content: center;
}
video{
  width: 200px;
  box-shadow: 2px 2px 10px var(--gray-50);
}
/* register button */
/* From Uiverse.io by AlimurtuzaCodes */ 
.btn {
  border: none;

padding: 8px 10px;
  border-radius: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #1C1A1C;
  cursor: pointer;
  transition: all 450ms ease-in-out;
  background-color: var(--primary-navy-blue);
  color: white;
}

.sparkle {

  transition: all 800ms ease;
}

.text {
  font-weight: 600;

  font-size: medium;
}

.btn:hover {
  background: linear-gradient(0deg,#A47CF3,#683FEA);
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4),
  inset 0px -4px 0px 0px rgba(0, 0, 0, 0.2),
  0px 0px 0px 4px rgba(255, 255, 255, 0.2),
  0px 0px 180px 0px #9917FF;
  transform: translateY(-2px);
}

.btn:hover .text {
  color: white;
}

.btn:hover .sparkle {
  fill: white;
  transform: scale(1.2);
} 
.register{
  background-color: transparent;
}