body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #ffffff;
}

/* Language Switcher Styles */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.lang-dropdown {
  position: relative;
}

.lang-btn {
  background-color: #1e1e1e;
  border: 2px solid #4ed6cf;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 120px;
}

.lang-btn:hover {
  background-color: #4ed6cf;
  color: #121212;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(78, 214, 207, 0.3);
}

.lang-flag {
  font-size: 16px;
}

.lang-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.lang-dropdown:hover .lang-arrow {
  transform: rotate(180deg);
}

.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #1e1e1e;
  border: 2px solid #4ed6cf;
  border-radius: 10px;
  padding: 8px 0;
  margin-top: 5px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lang-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.lang-option:hover {
  background-color: #2a2a2a;
  color: #4ed6cf;
}

.lang-option:first-child {
  border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
  border-radius: 0 0 8px 8px;
}

/* RTL Support for Arabic */
.rtl {
  direction: rtl;
  text-align: right;
}

.rtl .language-switcher {
  left: auto;
  right: 20px;
}

.rtl .lang-options {
  right: 0;
  left: auto;
}

.rtl .image-box {
  flex-direction: row-reverse;
}

.rtl .image-box[style*="flex-direction: row-reverse"] {
  flex-direction: row !important;
}

.rtl .footer-links a {
  margin: 0 0.5rem;
}

/* Mobile Responsive for Language Switcher */
@media (max-width: 768px) {
  .language-switcher {
    top: 10px;
    right: 10px;
  }
  
  .rtl .language-switcher {
    left: auto;
    right: 10px;
  }
  
  .lang-btn {
    padding: 8px 12px;
    min-width: 100px;
    font-size: 12px;
  }
  
  .lang-options {
    min-width: 120px;
  }
  
  .lang-option {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .footer-sections {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-section {
    text-align: center;
    min-width: auto;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .content-container {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .content-section h2 {
    font-size: 1.3rem;
  }
  
  .content-section h3 {
    font-size: 1.1rem;
  }
  
  .content-section p,
  .content-section ul {
    font-size: 1rem;
  }
}

header {
  position: relative;
  text-align: center;
  padding: 4rem 1rem;
  background: url('assets/images/agencyCover.png') center/cover no-repeat;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

header * {
  position: relative;
  z-index: 1;
}

.logo {
  width: 400px;
  height: auto;
}

header h1 {
  font-size: 5rem;
  margin-bottom: 0.5rem;
  font-weight: lighter;
}

header p#typing-text {
  font-size: 2.5rem;
  color: #4ed6cf;
  white-space: nowrap;
  overflow: hidden;
  border-right: 0.15em solid #4ed6cf;
  width: 0;
  animation: typing 4s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #4ed6cf; }
}

/* About Section Styles */
.about-section {
  margin: 2rem 1rem;
  padding: 3rem 2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  animation: float 20s infinite linear;
  z-index: 0;
}

@keyframes float {
  0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

.about-section > * {
  position: relative;
  z-index: 1;
}

.about-section h2 {
  color: #4ed6cf;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(78, 214, 207, 0.5);
  position: relative;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4ed6cf, #2a9d8f);
  border-radius: 2px;
}

.about-section h3 {
  color: #4ed6cf;
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-section h3:hover {
  transform: translateX(10px);
  text-shadow: 0 0 15px rgba(78, 214, 207, 0.7);
}

.about-section p {
  color: white;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-section a {
  color: #4ed6cf;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.about-section a:hover {
  color: white;
  text-shadow: 0 0 10px rgba(78, 214, 207, 0.8);
  transform: translateY(-1px);
}

.about-section ul {
  list-style: none;
  padding-left: 0;
  margin-left: 2rem;
}

.about-section li {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  transition: all 0.3s ease;
}



.about-section li::before {
  content: '▶';
  color: #4ed6cf;
  padding: 3px;
  font-size: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.about-section::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 214, 207, 0.1) 0%, transparent 70%);
  animation: rotate 15s infinite linear;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile Responsive for About Section */
@media (max-width: 768px) {
  .about-section {
    margin: 1rem;
    padding: 2rem 1rem;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
  }
  
  .about-section p,
  .about-section li {
    font-size: 1.1rem;
  }
  
  .about-section ul {
    margin-left: 1rem;
  }
  
  .about-section li {
    padding-left: 1.5rem;
  }
}

.images-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 2rem 1rem;
}

.image-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: transform 0.3s ease;
}

.image-box img {
  width: 400px;
  max-width: 100%;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(0, 209, 178, 0.2);
  transition: all 0.3s ease;
}

.image-box:hover img {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 209, 178, 0.3);
}

.image-box-content {
  max-width: 600px;
  transition: transform 0.3s ease;
}

.image-box:hover .image-box-content {
  transform: translateY(-5px);
}

.image-box-content h3 {
  color: #4ed6cf;
  margin-bottom: 0.5rem;
}

.image-box-content p {
  color: #cccccc;
  font-size: 1.5rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.download-btn {
  text-decoration: none;
  color: white;
  background-color: #4ed6cf;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 160px;
  text-align: center;
}

.download-section {
  text-align: center;
  margin: 3rem 1rem;
}


.download-btn:hover {
  background-color: #4ed6cf;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 209, 178, 0.2);
}

.platform-icon {
  width: 30px;
  height: 30px;
  color: #121212;
  transition: transform 0.3s ease;
}

.download-btn:hover .platform-icon {
  transform: scale(1.5);
}

.download-btn span {
  font-weight: 500;
  font-size: large;
  color: #121212;
}
footer {
  text-align: center;
  padding: 2rem;
  background-color: #1e1e1e;
  color: #666;
  font-size: 0.9rem;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-section h4 {
  color: #4ed6cf;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0;
  position: relative;
  transition: color 0.3s;
  padding: 0.25rem 0;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #4ed6cf;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #4ed6cf;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.business-info {
  margin: 1.5rem 0;
  line-height: 1.6;
}

.business-info p {
  margin: 0.5rem 0;
}

.business-info a {
  color: #4ed6cf;
  text-decoration: none;
  transition: color 0.3s;
}

.business-info a:hover {
  color: #ffffff;
}

.copyright {
  margin-top: 1.5rem;
  color: #666;
}




/* Content Page Styles */
.content-page {
  min-height: 60vh;
  padding: 2rem 1rem;
  background-color: #121212;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #1e1e1e;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-title {
  color: #4ed6cf;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.content-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #333;
}

.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.content-section h2 {
  color: #4ed6cf;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.content-section h3 {
  color: #4ed6cf;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.content-section p {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content-section ul {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

.content-section a {
  color: #4ed6cf;
  text-decoration: none;
  transition: color 0.3s;
}

.content-section a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.content-section strong {
  color: #ffffff;
  font-weight: 600;
}

/* Home Button */
.home-button {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #4ed6cf, #2a9d8f);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(78, 214, 207, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.home-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(78, 214, 207, 0.4);
  background: linear-gradient(135deg, #2a9d8f, #4ed6cf);
}

.home-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #4ed6cf, #2a9d8f, #4ed6cf);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-button:hover::before {
  opacity: 1;
}

.home-icon {
  width: 24px;
  height: 24px;
  fill: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .home-button {
    left: 15px;
    top: 15px;
    width: 45px;
    height: 45px;
  }
  
  .home-icon {
    width: 20px;
    height: 20px;
  }
}

/* Social Media Section */
.social-media-section {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid #333;
}

.social-media-section p {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.social-icons img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

/* Policy Pages Styles */
.policy-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #1e1e1e;
  border-radius: 8px;
}
.policy-content h1 {
  color: #4ed6cf;
  margin-bottom: 2rem;
}

.policy-content h2 {
  color: #4ed6cf;
  margin: 2rem 0 1rem;
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #cccccc;
}

.home-button {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #4ed6cf, #2a9d8f);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(78, 214, 207, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.home-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 209, 178, 0.4);
}

.home-icon {
  width: 24px;
  height: 24px;
  fill: white;
}

.effective-date {
  color: #4ed6cf;
  font-style: italic;
  margin-bottom: 2rem;
}

.responsibility-list {
  list-style-type: none;
  padding-left: 1rem;
}

.responsibility-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.responsibility-list li::before {
  content: "•";
  color: #4ed6cf;
  position: absolute;
  left: 0;
}

.refund-list {
  list-style-type: none;
  padding-left: 1rem;
}

.refund-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.refund-list li::before {
  content: "•";
  color: #4ed6cf;
  position: absolute;
  left: 0;
}

.refund-type {
  font-weight: bold;
  color: #4ed6cf;
}

/* Registration Page Styles */
.video-section {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #1e1e1e;
  border-radius: 0.5rem;
  border: 1px solid #333;
}

.video-section h2 {
  color: #4ed6cf;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 1rem;
  border-radius: 0.25rem;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 315px;
  border: none;
  display: block;
}

.video-description {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.video-description a {
  color: #4ed6cf;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.video-description a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(78, 214, 207, 0.6);
  transform: translateY(-1px);
}

.registration-steps {
  margin-bottom: 3rem;
}

.step {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #1e1e1e;
  border-radius: 0.5rem;
  border-left: 1px solid #4ed6cf;
}
.step:hover{

  border-left: 3px solid #4ed6cf;
}
.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.step-number {
  background-color: #4ed6cf;
  color: #121212;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}

.step-header h2 {
  color: #4ed6cf;
  font-size: 1.4rem;
  margin: 0;
}

.step-content {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.step-content p {
  margin-bottom: 1rem;
}

.step-content h3 {
  color: #4ed6cf;
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem;
  font-weight: 600;
}

.account-methods {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.account-methods li {
  background-color: #2a2a2a;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.account-methods strong {
  color: #4ed6cf;
}

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

.field-item {
  background-color: #2a2a2a;
  padding: 0.75rem;
  border-radius: 0.25rem;
}

.field-item strong {
  color: #4ed6cf;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.tips-section {
  background-color: #1e1e1e;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #333;
  margin-bottom: 2rem;
}

.tips-section h2 {
  color: #4ed6cf;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.tips-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.tips-list li {
  background-color: #2a2a2a;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
  color: #cccccc;
}

.cta-section {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: #1e1e1e;
  border-radius: 0.5rem;
}

.cta-section h2 {
  color: #4ed6cf;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Mobile Responsive for Registration Page */
@media (max-width: 768px) {
  .video-container {
    max-width: 100%;
  }
  
  .video-container iframe {
    height: 250px;
  }
  
  .step {
    padding: 1rem;
  }
  
  .step-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .step-header h2 {
    font-size: 1.2rem;
  }
  
  .fields-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .cta-section {
    padding: 1.5rem 1rem;
  }
  
  .cta-section h2 {
    font-size: 1.4rem;
  }
}

/* Download Section Styles */
.download-section {
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}



