:root {
  --brand-primary: #00b34f;
  --brand-secondary: #029843;
  --white: #fff;
  --brand-light-hover: #d9f4e5;
  --brand-light: #e8ecf4;
  --neutral-light: #fcfcfc;
  --neutral-dark: #000;
  --gray-300: #d0d5dd;
  --gray-500: #667085;
  --neutral-medium: #d9d9d9;
  --text-secondary: #595959;
  --neutral-border: #bfbfbf;
  --blue-accent: #5783d2;
  --background-dark: #091e43;
  --required-red: #d84226;

  /* FAQ Section Variables */
  --container-max-width: 1200px;
  --faq-max-width: 800px;
  --faq-bg-primary: #ffffff;
  --faq-bg-secondary: #f9fafb;
  --faq-brand-primary: #00b34f;
  --faq-text-primary: #111827;
  --faq-text-secondary: #6b7280;
  --faq-text-tertiary: #9ca3af;
  --faq-icon: #6b7280;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red !important; */
}

body {
  font-family: "Alexandria", "Inter", -apple-system, Roboto, Helvetica,
    sans-serif;
  line-height: 1.6;
  direction: rtl;
}

/* ============================== Navbar Background Shape ================================== */
.navbar-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  overflow: hidden;
}

.navbar-bg-shape img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-width: 100%;
}

/* Responsive adjustments for small screens */
@media (max-width: 768px) {
  .navbar-bg-shape {
    height: 200px;
  }

  .navbar-bg-shape img {
    min-height: 200px;
    object-position: center top;
  }
}

@media (max-width: 480px) {
  .navbar-bg-shape {
    height: 150px;
  }

  .navbar-bg-shape img {
    min-height: 150px;
    transform: scale(1.1);
    object-position: center top;
  }
}

@media (max-width: 320px) {
  .navbar-bg-shape {
    height: 120px;
  }

  .navbar-bg-shape img {
    min-height: 120px;
    transform: scale(1.2);
    object-position: center top;
  }
}

/* Landscape orientation on mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
  .navbar-bg-shape {
    height: 120px;
  }

  .navbar-bg-shape img {
    min-height: 120px;
    transform: scale(1.1);
  }
}

/* ============================== Responsive Navbar Container ================================== */
@media (max-width: 768px) {
  .navbar-container {
    margin-top: 15px !important;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    margin-top: 10px !important;
  }

  .navbar-inner {
    height: 80px !important;
    padding: 8px !important;
  }
}

@media (max-width: 320px) {
  .navbar-container {
    margin-top: 5px !important;
  }

  .navbar-inner {
    height: 70px !important;
    padding: 5px !important;
  }
}

/* ============================== Burger Menu Styles ================================== */
#burger-menu {
  transition: all 0.3s ease;
}

#burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

#burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Menu */
#nav-menu {
  transition: all 0.3s ease;
  transform: translateX(100%);
}

#nav-menu.show {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  #nav-menu {
    transform: none !important;
  }
}

/* Mobile menu specific styles */
@media (max-width: 1023px) {
  #nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #091e43 0%, #1a365d 100%);
    padding: 120px 20px 20px;
    z-index: 40;
    overflow-y: auto;
  }

  #nav-menu .nav-link,
  #nav-menu .nav-link-white {
    font-size: 18px;
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
  }

  #nav-menu > div:first-child {
    gap: 0 !important;
  }

  #nav-menu > div:first-child > div {
    width: 100%;
    justify-content: center !important;
    margin-bottom: 16px;
  }
}

/* ============================== Main Content styles ================================== */
/* ================================================================================= */

/* Success Icon */
.success-icon {
  width: 160px;
  height: 128px;
  object-fit: contain;
}

/* Success Title */
.success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00b34f;
  line-height: 1.6;
  padding: 0 1rem;
}

/* Success Description */
.success-description {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  max-width: 48rem;
  padding: 0 1rem;
}

/* Follow Text */
.follow-text {
  color: #3b3b3b;
  font-size: 1rem;
}

/* Arrow Icon */
.arrow-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #e04f5f;
}

/* LinkedIn Button */
.linkedin-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #0076b2;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  transition: background-color 0.3s ease;
  font-size: 0.875rem;
  width: 100%;
  max-width: 34rem;
  border: none;
  cursor: pointer;
}

.linkedin-button:hover {
  background-color: #1d4ed8;
}

.linkedin-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-right: auto;
}

.linkedin-text {
  font-weight: 500;
}

/* CTA Button Styles */
.cta-button {
  width: 249px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #00b34f;
  background: #00b34f;
}

.cta-text {
  color: #fff;
  font-family: "Alexandria";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
}

/* Navigation Links */
.nav-link {
  color: #e8ecf4;
  text-align: right;
  font-family: "Alexandria";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.nav-link-white {
  color: #fff;
  text-align: right;
  font-family: "Alexandria";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

/* Logo Container */
.logo-container {
  width: 119.657px;
  gap: 4.898px;
}

.logo-text-1 {
  color: #e8ecf4;
  text-align: center;
  font-family: "Alexandria";
  font-size: 12.341px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.809px;
}

.logo-text-2 {
  color: #e8ecf4;
  text-align: center;
  font-family: "Alexandria";
  font-size: 19.745px;
  font-style: normal;
  font-weight: 600;
  line-height: 14.809px;
}

.logo-text-3 {
  color: #00b34f;
  text-align: center;
  font-family: "Alexandria";
  font-size: 19.745px;
  font-style: normal;
  font-weight: 500;
  line-height: 14.809px;
}

.logo-text-4 {
  color: #00b34f;
  text-align: center;
  font-family: "Alexandria";
  font-size: 7.404px;
  font-style: normal;
  font-weight: 500;
  line-height: 14.809px;
}

/* ============================== ANIMATIONS ================================== */

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  43% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(-5px);
  }
}

@keyframes scale {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Success page animations */
.success-icon {
  animation: scale 0.8s ease-out;
  transition: transform 0.3s ease;
}

.success-icon:hover {
  animation: bounce 1s ease-in-out;
}

.success-title {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.success-description {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.follow-text {
  animation: fadeInUp 0.6s ease-out 0.7s both;
}

.linkedin-button {
  animation: fadeInUp 0.6s ease-out 0.9s both;
  transition: all 0.3s ease;
}

.linkedin-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 179, 79, 0.3);
}

/* Main content container animation */
main {
  animation: fadeIn 0.5s ease-out;
}

/* Button hover animations */
.cta-button {
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 179, 79, 0.3);
}

/* Footer links hover animation */
.footer-link {
  transition: all 0.3s ease;
}

.footer-link:hover {
  transform: translateX(-5px);
  color: var(--brand-primary) !important;
}

/* Social icons hover animation */
.social a {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Payment methods hover animation */
.pay_methods-icons span {
  transition: transform 0.3s ease;
}

.pay_methods-icons span:hover {
  transform: translateY(-2px);
}

/* Navbar animation on scroll */
.navbar-container {
  transition: all 0.3s ease;
}

/* Mobile menu animation */
#nav-menu {
  transition: all 0.3s ease;
}

#nav-menu.show {
  animation: fadeIn 0.3s ease-out;
}

/* Burger menu animation */
#burger-menu .burger-line {
  transition: all 0.3s ease;
}

#burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

#burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]),
img[src=""] {
  opacity: 0;
}

/* ============================== END ANIMATIONS ================================== */

/* ============================== footer styles ================================== */
/* =============================================================================== */
.footer {
  background-color: #12397e;
  /* bg-gray-900 equivalent */
}

.footer .brand {
  display: flex;
  justify-content: end;
}

/* center image in small screens */

@media screen and (max-width: 1199px) {
  .footer .brand {
    justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .footer .brand {
    text-align: right;
  }
}

.footer .brand img {
  max-width: 170px;
}

@media screen and (max-width: 1400px) {
  .footer .brand img {
    max-width: 140px;
  }
}

@media screen and (max-width: 1199px) {
  .footer .brand img {
    max-width: 120px;
  }
}

.footer .text {
  color: var(--white);
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .footer .text {
    text-align: right;
  }
}

.footer .text p {
  font-size: 0.85em;
  line-height: 27px;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}

.pay_methods-icons {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

@media screen and (min-width: 1280px) {
  .footer .text p {
    margin-right: 0;
    margin-left: 0;
  }
}

.footer .social {
  display: flex;
  justify-content: flex-start;
}

@media screen and (min-width: 768px) {
  .footer .social {
    justify-content: center;
  }
}

@media screen and (min-width: 1280px) {
  .footer .social {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 1199px) {
  .footer .social {
    margin-bottom: 30px;
  }
}

.footer .social img,
.footer .social svg {
  width: 34px;
  height: auto;
}

.footer .footer-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5em;
  font-size: 1.1em;
}

.footer .footer-link {
  display: block;
  font-size: 0.8em;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-link:hover {
  color: #d1d5db;
  /* text-gray-300 equivalent */
}

.footer .pay_methods {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
