@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", sans-serif;
  overflow-x: hidden;
}

/*start navbar section*/
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 99999;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .navbar-toggle {
  width: 40px;
  cursor: pointer;
}
.navbar .navbar-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 8px 0;
  background-color: #23ABD5; /* Changed from #f06292 */
}
.navbar .main-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .main-menu ul {
  flex-direction: row;
}
.navbar .main-menu ul li {
  padding: 0 15px;
}
.navbar .main-menu ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .main-menu ul li a:hover {
  color: #AD40FD; /* Changed from #672a65 */
}
.navbar .menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background-color: #23ABD5; /* Changed from #f06292 */
  color: #fff;
  padding: 50px 30px;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .menu i.fa-xmark {
  font-size: 18px;
  margin: 20px;
  cursor: pointer;
}
.navbar .menu .navbar-nav a {
  color: #fff;
  margin: 15px 20px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .menu .navbar-nav a:hover {
  color: #AD40FD; /* Changed from #672a65 */
}
.navbar .menu .media a {
  display: block;
  margin: 40px 15px;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .menu .media a:hover {
  color: #AD40FD; /* Changed from #672a65 */
}
.navbar .menu p {
  direction: ltr;
  text-align: center;
}
.navbar .menu p a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar .menu p a:hover {
  color: #AD40FD; /* Changed from #672a65 */
}
.navbar .menu.show {
  left: 0;
}

.navbar.nav-scroll {
  background-color: #fff;
  box-shadow: 0px 0px 6px 1px #e9e9e9;
}
.navbar.nav-scroll .main-menu ul li a {
  color: #AD40FD; /* Changed from #672a65 */
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar.nav-scroll .main-menu ul li a:hover {
  color: #23ABD5; /* Changed from #f06292 */
}

.navbar.nav-scroll-a {
  background-color: #fff;
  box-shadow: 0px 0px 6px 1px #e9e9e9;
}
.navbar.nav-scroll-a .main-menu ul li a {
  color: #AD40FD; /* Changed from #672a65 */
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-fvout;
  -o-transition: all 0.3s ease-in-out;
}
.navbar.nav-scroll-a .main-menu ul li a:hover {
  color: #23ABD5; /* Changed from #f06292 */
}

/*end navbar section*/
/*start main section*/
.home {
  background: url(../imgs/bg-2.jpg) no-repeat center fixed;
  background-size: cover;
  height: 100vh;
  position: relative;
}
.home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.home .overlay .main-content p {
  color: #23ABD5; /* Changed from #f06292 */
  font-size: 25px;
  margin-top: 50px;
}
.home .overlay .main-content h1 {
  color: #fff;
  font-weight: 700;
  font-size: 45px;
  line-height: 80px;
}
.home .overlay .main-content a {
  width: 140px;
  margin-top: 20px;
}
.home .overlay .links {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home .overlay .links ul li {
  direction: ltr;
  text-align: left;
}
.home .overlay .links ul li a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.home .overlay .links ul li a i {
  color: #fff;
  font-size: 17px;
  margin: 10px 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  text-align: center;
}
.home .overlay .links ul li a:hover span {
  display: inline-block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.home .overlay .links ul li span {
  color: #23ABD5; /* Changed from #f06292 */
  margin: 0 10px;
  display: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

@media (max-width: 991.5px) {
  .home .overlay .main-content h1 {
    font-size: 35px;
    line-height: 60px;
  }
}
/*end main section*/
/*start about section*/
.about {
  padding-top: 100px;
}
.about h2 {
  color: #AD40FD; /* Changed from #672a65 */
  margin: 20px 0;
}
.about p {
  color: #707070;
  letter-spacing: 1.5px;
  line-height: 2;
}

/*end about section*/
/*start steps section*/
.steps {
  padding: 100px 0;
}
.steps .steps-card {
  box-shadow: 0px 0px 5px 1px #efefef;
  position: relative;
  padding: 40px 5px;
  border-radius: 10px;
}
.steps .steps-card img {
  width: 110px;
  height: 110px;
}
.steps h2 {
  color: #AD40FD; /* Changed from #672a65 */
  margin-bottom: 80px;
}
.steps ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.steps ul li {
  margin: 20px 0;
}
.steps ul li span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #23ABD5; /* Changed from #f06292 */
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: -26px;
  left: 37%;
}
.steps ul li p {
  color: #707070;
  letter-spacing: 1.5px;
  margin: 15px 0;
}

/*end steps section*/
/*start footer section*/
.footer {
  background-color: #23ABD5; /* Changed from #f06292 */
  padding: 30px 0;
  color: #fff;
}
.footer .upper h3 {
  border-bottom: 4px solid #fff;
  padding: 20px 0;
  width: 40%;
  text-transform: uppercase;
  margin: 20px 0;
}
.footer .upper ul li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.footer .upper ul li a:hover {
  color: #AD40FD; /* Changed from #672a65 */
}
.footer .upper .sitemap {
  font-size: 18px;
  font-weight: 600;
}
.footer .upper .contact p {
  font-size: 20px;
}
.footer .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2509803922);
  padding: 20px 0;
}
.footer .foot a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.footer .foot a:hover {
  color: #AD40FD; /* Changed from #672a65 */
}
.footer .foot ul li {
  display: inline-block;
  margin: 0 10px;
}

@media (min-width: 768px) and (max-width: 991.5px) {
  .footer .upper h3 {
    width: 60%;
  }
}
@media (max-width: 450px) {
  .footer .upper h3 {
    width: 60%;
  }
}
/*end footer section*/
/*start support page*/
.support {
  padding: 200px 0 150px;
}
.support .myform {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: 0 auto;
  box-shadow: 0px 0px 6px 1px #e6e6e6;
  padding: 50px;
  border-radius: 10px;
}
.support .myform label {
  color: #23ABD5; /* Changed from #f06292 */
  margin: 20px 0;
  font-size: 18px;
  font-weight: 600;
}
.support .myform input {
  border: none;
  box-shadow: 0px 0px 4px 1px #dedede;
  border-radius: 5px;
  height: 38px;
  padding: 20px;
}
.support .myform input:focus {
  border: none;
  outline: none;
  box-shadow: 0px 0px 1px 2px #23ABD5; /* Changed from #f06292 */
}
.support .myform textarea {
  border: none;
  box-shadow: 0px 0px 4px 1px #dedede;
  border-radius: 5px;
  padding: 20px;
}
.support .myform textarea:focus {
  border: none;
  outline: none;
  box-shadow: 0px 0px 1px 2px #23ABD5; /* Changed from #f06292 */
}
.support .enterlabel {
  color: #23ABD5; /* Changed from #f06292 */
  margin: 20px 0;
  font-size: 18px;
  font-weight: 600;
  width: 50%;
    text-align: left;
}
.support .enter {
  margin: 40px auto;
  border: none;
  padding: 10px 40px;
  border-radius: 5px;
  background-color: #23ABD5; /* Changed from #f06292 */
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.support .myform button {
  display: block;
  margin: 40px auto;
  border: none;
  padding: 10px 40px;
  border-radius: 5px;
  background-color: #23ABD5; /* Changed from #f06292 */
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.support .myform button:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #23ABD5; /* Changed from #f06292 */
  border: 1px solid #23ABD5; /* Changed from #f06292 */
}

@media (max-width: 767.5px) {
  .support .myform {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .support .myform {
    padding: 20px;
  }
}
/*end support page*/
/*start policy page*/
.policy {
  padding: 200px 0 150px;
}
.policy h2 {
  margin: 50px 0;
  text-align: center;
}
.policy p {
  color: #707070;
}
.policy ul {
  margin: 20px 40px;
}
.policy ul li {
  padding: 5px 0;
}

/*end policy page*/
/*start to-top section*/
.btn-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.btn-top i {
  font-size: 20px;
  background-color: #AD40FD; /* Changed from #672a65 */
  color: #fff;
  padding: 7px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btn-top i:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #AD40FD; /* Changed from #672a65 */
  border: 1px solid #AD40FD; /* Changed from #672a65 */
  cursor: pointer;
}

/*end to-top section*/
::selection {
  background-color: #AD40FD; /* Changed from #672a65 */
  color: #fff;
}

/*# sourceMappingURL=style.css.map */

.gradient-bg {
    /* Replace these colors with your desired gradient */
    background: linear-gradient(to right, #f06292, #ec407a); 
    padding: 40px 0; /* Add necessary vertical padding */
}

/* Define the base gradient colors and button styles */
.btn-gradient {
    /* Set your desired gradient colors here */
    background: linear-gradient(to right, #f06292, #ec407a); 
    
    color: #ffffff; /* White text for contrast */
    text-decoration: none;
    
    padding: 8px 20px;
    border-radius: 25px; /* Adjust for desired roundness */
    font-weight: bold;
    
    /* Optional: Add shadow for depth and "perfection" */
    box-shadow: 0 4px 10px rgba(236, 64, 122, 0.4);
    
    /* Optional: Smooth transition for hover effects */
    transition: all 0.3s ease;
    
    /* Ensure it behaves like a button in layout */
    display: inline-block;
    text-align: center;
}

/* Hover effect for interaction */
.btn-gradient:hover {
    /* Slightly adjust the gradient or shadow on hover */
    background: linear-gradient(to right, #ec407a, #f06292); 
    box-shadow: 0 6px 15px rgba(236, 64, 122, 0.6);
    transform: translateY(-1px); /* Little lift effect */
    color: #ffffff; /* Keep text white */
}

/* Ensure the main container justifies content (if using Bootstrap flex utilities) */
.main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

/* ---------------------------------- */
/* 1. VISUAL GRADIENT & BASE STYLES */
/* ---------------------------------- */
.visually-appealing-footer {
    /* Example Rich Gradient (Use colors that match your brand) */
    background: linear-gradient(135deg, #1f2746 0%, #303d72 100%); /* Dark Blue/Purple Gradient */
    color: #ffffff; /* Universal white text */
    padding: 60px 0; /* Generous padding for visual comfort */
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.15); /* Subtle shadow lift */
}

/* Ensure all links and text are white and readable */
.footer a, .footer p, .footer span {
    color: #f0f0f0; /* Off-white for softer look */
    text-decoration: none; /* Remove underline by default */
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffc107; /* Highlight color on hover (e.g., gold) */
    text-decoration: underline;
}

/* ---------------------------------- */
/* 2. TYPOGRAPHY & HEADINGS */
/* ---------------------------------- */
.footer-heading {
    color: #ffc107; /* Use highlight color for the heading */
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    /* Add a subtle underline decoration */
    display: inline-block;
    padding-bottom: 5px;
}
.footer-heading::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background-color: #ffc107;
    position: absolute;
    right: 0; /* Right-align the underline */
    bottom: 0;
}

/* ---------------------------------- */
/* 3. CONTACT DETAILS & ICONS */
/* ---------------------------------- */
.contact-item {
    display: flex; /* Use flexbox for icon-text alignment */
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: right;
    direction: rtl; /* Ensure proper RTL layout */
    padding-right: 0; /* Remove default list padding */
}

.contact-icon {
    font-size: 1.25rem;
    color: #ffc107; /* Highlight color for icons */
    margin-left: 10px; /* Space between icon and text (RTL) */
    position: relative;
    top: 2px;
}

/* Ensure text inside list flows correctly */
.contact-details span {
    font-weight: 600;
    margin-left: 5px;
}

/* ---------------------------------- */
/* 4. DIVIDER & COPYRIGHT */
/* ---------------------------------- */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Very subtle divider */
    margin: 40px 0; /* More space around the divider */
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6); /* Slightly faded for secondary text */
}

/* ---------------------------------- */
/* 5. BACK TO TOP BUTTON */
/* ---------------------------------- */
.btn-top {
    /* Use the same colors as the gradient for coherence */
    background-color: #ec407a; 
    color: #ffffff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 20px; /* Position on the left for standard placement */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s;
}
.btn-top:hover {
    background-color: #f06292;
}

/* ==================================================== */
/* 1. GRADIENT BACKGROUND & BASE STYLES (CRUCIAL)       */
/* ==================================================== */
.visually-appealing-footer {
    /* ---------------------------------------------------- */
    /* KEY: Define a rich, high-contrast gradient */
    /* Dark Blue/Purple Gradient Example */
    background: linear-gradient(135deg, #1f2746 0%, #303d72 100%); 
    /* Feel free to replace with your brand colors, e.g., pink to red: */
    /* background: linear-gradient(135deg, #F06292 0%, #EC407A 100%); */
    /* ---------------------------------------------------- */
    
    color: #ffffff; /* Universal white text color */
    padding: 60px 0; /* Generous padding for visual comfort */
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.15); /* Subtle shadow lift */
    direction: rtl; /* Ensure global right-to-left layout */
    text-align: right;
}

/* Ensure all links and text are white/off-white and readable */
.footer a, .footer p, .footer span, .footer h3 {
    color: #f0f0f0; /* Off-white for softer contrast */
}

.footer a {
    text-decoration: none; /* Remove default underline */
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffc107; /* Highlight color on hover (e.g., gold/yellow) */
    text-decoration: underline;
}

/* ---------------------------------------------------- */
/* 2. TYPOGRAPHY & HEADING STYLE                        */
/* ---------------------------------------------------- */
.footer-heading {
    color: #ffc107; /* Use highlight color for the main heading */
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    text-align: right;
}
.footer-heading::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background-color: #ffc107;
    position: absolute;
    right: 0; /* Align the underline to the right (RTL) */
    bottom: 0;
}

/* ---------------------------------------------------- */
/* 3. CONTACT DETAILS, ICONS, AND SPACING               */
/* ---------------------------------------------------- */
.contact-item {
    display: flex; 
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-right: 0; 
}

.contact-icon {
    font-size: 1.25rem;
    color: #ffc107; /* Highlight color for icons */
    margin-left: 10px; /* Space between icon and text (RTL) */
    position: relative;
    top: 2px;
}

/* Ensure text labels (البريد الالكتروني) stand out */
.contact-details span {
    font-weight: 600;
    margin-left: 5px;
}

/* ---------------------------------------------------- */
/* 4. DIVIDER & COPYRIGHT                               */
/* ---------------------------------------------------- */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Subtle white divider */
    margin: 40px 0; 
    width: 100%; /* Ensure it spans the full container */
}

.footer-copy {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7); /* Slightly faded for secondary text */
}

/* ---------------------------------------------------- */
/* 5. BACK TO TOP BUTTON (Example)                      */
/* ---------------------------------------------------- */
.btn-top {
    /* Uses accent color for coherence */
    background: linear-gradient(45deg, #ffc107, #ffd700); /* A subtle gradient on the button itself */
    color: #1f2746; /* Dark text on bright button */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 20px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}
.btn-top:hover {
    transform: scale(1.1);
}