* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: white;
  background-color: #000;
}

.navbar {
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  border-radius: 10px;
  z-index: 10;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #90e0ef;
}

.cta-button {
  background-color: #90e0ef;
  padding: 8px 16px;
  border-radius: 6px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #48cae4;
}

.hero {
  height: 100vh;
  background-image: url('DODO.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  padding: 10px 24px;
  background-color: #caf0f8;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn:hover {
  background-color: #ade8f4;
  transform: scale(1.05);
}

.btn.active {
  background-color: #00b4d8;
  color: white;
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 32px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: white;
  background-color: #000;
}

.navbar {
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  border-radius: 10px;
  z-index: 10;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #90e0ef;
}

.cta-button {
  background-color: #90e0ef;
  padding: 8px 16px;
  border-radius: 6px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #48cae4;
}

.hero {
  height: 100vh;
  background-image: url('background.jpg'); 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  padding: 10px 24px;
  background-color: #caf0f8;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn:hover {
  background-color: #ade8f4;
  transform: scale(1.05);
}

.btn.active {
  background-color: #00b4d8;
  color: white;
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 32px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}


.btn:hover {
  background-color: #00b4d8;
  color: #fff;
  box-shadow: 0 0 10px #00b4d8, 0 0 20px #00b4d8;
}


.hero-content h2 {
  overflow: hidden;
  border-right: .15em solid #00b4d8;
  white-space: nowrap;
  animation: typing 3s steps(30, end), blink .75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent }
}
.logo img {
  width: 100px; 
  height: auto;
}
body {
  background-image: url('QQ.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.hero-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column; 
  gap: 20px; 
  align-items: flex-start;
}

.btn {
  padding: 15px 30px;
  width: 250px; 
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
  background-color: #333;
  color: #fff;
}

.btn.active {
  background-color: #333;
  color: #fff;
}


.hero-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.btn {
  padding: 15px 30px;
  width: 350px; 
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}


.hero-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.btn {
  padding: 15px 30px;
  width: 350px;
  background-color: #FFD700; /* لون أصفر */
  border: 2px solid #FFD700;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.btn.active {
  background-color: #FFD700;
  color: #333;
  border-color: #FFD700;
}

.btn:hover,
.btn:active {
  background-color: #ffffff; /* الأبيض */
  color: #000000;
  border-color: #ffffff;
}
