
@font-face {
    font-family: 'TitleFont';
    src: url('fonts/title font.ttf') format('truetype');
}

@font-face {
    font-family: 'TextFont';
    src: url('fonts/texte font.otf') format('opentype');
}


html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'TextFont', sans-serif;
}
body{
  background: url('photos/bg.png') repeat;
}
.reset h1,
.reset h2 {
  font-size: 18px;
}

.reset-page {
  height: 70vh;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url('photos/bg.png') center/cover no-repeat, linear-gradient(to bottom,#e9e9df 0%,#0c6e3d 100% );
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.reset-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,#e9e9df 0%,#4f846c 50%,#4f8f72 100% );
  mix-blend-mode: multiply;
  opacity: 0.4;
}

.reset-page * {
  position: relative;
  z-index: 1;
}


.rp-main {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.rp-card {
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.rp-title {
  color: #000000;
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 0.5rem 0;
  font-family: 'TitleFont', 'TextFont', sans-serif;
}

.rp-description {
  color: #053927;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Arabic RTL Text */
.rp-arabic-line {
  font-family: 'Maghribi-Font-2', 'RTL-Maghribi', serif;
  direction: rtl;
  unicode-bidi: isolate;
  font-size: 1.5rem;
  color: #053927;
  margin-bottom: 1rem;
  text-align: center;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.rp-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.rp-input {
  width: 100%;
  max-width: 550px;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  color: #053927;
  font-size: 1.1rem;
  text-align: center;
  outline: none;
  transition: all 0.3s ease;
}

.rp-input:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.rp-button {
  margin-top: 1.5rem;
  padding: 0.6rem 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(5, 57, 39, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #053927;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rp-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(5, 57, 39, 0.5);
}

.rp-button:active {
  transform: scale(0.98);
}

/* Container  */
.custom-navbar {
  background-color: #e9e9df;
  padding: 12px 30px;
}

/* Left section */
.nav-left i {
  font-size: 30px;
  cursor: pointer;
  
}
.nav-btn {
  background: #deded6;
  border: none;
  padding: 20px 20px;
  border-radius: 999px;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s;
}
.nav-btn a {
    text-decoration: none;
    color: #000000;
    display: inline-block; 
}
.nav-btn a:visited {
    color: #000000;
}

.nav-btn a:hover {
    text-decoration: none;
    opacity: 0.8; 
}
.nav-btn:hover {
  background: #cfcfc6;
}

/* Center menu */
.nav-center {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  background: #d8d8cf;
  border-radius: 999px;
}

.nav-center li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  color: #000;
  font-size: 17px;
  border-radius: 999px;
  transition: 0.3s;
}

.nav-center li.active a {
  background: #bfbfb5;
  font-weight: bold;
}

.nav-center li a:hover {
  background: #cfcfc6;
}

.nav-logo img {
  height: 80px;
}


.footer {
    background-color: #0c6e3d;
    padding: 3rem 4rem;
    direction: rtl;
    position: relative;
    z-index: 10;
    border-top: 1px solid #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-logo {
    text-align: center;
    width: 30%
    ;
}

.footer-logo img {
    height: 280px;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 60px;
    height: 65px;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.1);
}

.footer-links {
    text-align: right;
}

.footer-links h3 {
    color: #0e0e0e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    color: #ffff;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    transition: color 0.3s ease;
    gap: 1rem;
}

.link-icon {
    width: 60px;
    height: 65px;
    object-fit: contain;
}

.footer-links a:hover {
    color: #ffff;
    transform: translateX(-5px);
}

.footer-contact {
    text-align: right;
}

.footer-contact h3 {
    color: #0e0e0e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-contact p {
    color: #ffff;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
}

.contact-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* buttom bar footer */


.footer-bottom-bar {
    background-color: #0c6e3d; 
     border-top: 1px solid #fff;
    padding: 20px 0;
    width: 100%;
}

.footer-container {
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; 
    padding: 0 40px;
}

.footer-right {
    display: flex;
    gap: 30px; 
}

.footer-link {
    color: #000000;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    white-space: nowrap; /
}

.footer-link:hover {
    text-decoration: underline;
}
