/* Global Styles */

:root {
  --paypal-blue: #003087;
  --paypal-dark-blue: #005ea6;
  --paypal-light-blue: #009cde;
  --paypal-navy: #003087;
  --background-gradient: linear-gradient(135deg, #003087 0%, #003087 100%);
  --text-color-white: #ffffff;
  --text-color-light: #e6f0f9;
  --paypal-light-gray: #f5f7fa;
  --paypal-dark-gray: #4a4a4a;
  --card-bg: rgba(255, 255, 255, 0.15);
  --card-border: rgba(255, 255, 255, 0.2);
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);

  --primary: #003087;
  --primary-light: #4d9de0;
  --accent: #ff5e5e;
  --accent-light: #ff8e8e;
  --bright-1: #ffdd00;
  --bright-2: #00c853;
  --bright-3: #ff4081;
  --bright-4: #536dfe;
  --background: #f8f9fa;
  --text: #2d2d2d;
  --text-muted: #6a6a6a;
  --card-border: rgba(0, 0, 0, 0.1);
  --glow: 0 0 15px rgba(0, 112, 186, 0.3);
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--paypal-dark-gray);
  background-color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  height: 60px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  height: 100px;
}

.logo {
  height: 30px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a,
.nav-links button {
  color: var(--paypal-dark-gray);
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 500;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--paypal-blue);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 10;
  white-space: nowrap;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 400;
}

.nav-links li:hover .dropdown-menu {
  display: block;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn-outline {
  background-color: #fff;
  color: var(--paypal-blue);
  border: 2px solid var(--paypal-blue);
}

.btn-outline:hover {
  background-color: var(--paypal-blue);
  color: #fff;
}

.btn-primary {
  background-color: var(--paypal-blue);
  color: #fff;
  border: 2px solid var(--paypal-blue);
}

.btn-primary:hover {
  background-color: #00225d;
  border-color: #00225d;
}

/* Mobile Nav Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--paypal-dark-gray);
  padding: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .header {
    padding: 1rem 3%;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 1000;
  }

  .nav.active {
    height: auto;
    padding: 1rem 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a,
  .nav-links button {
    display: block;
    padding: 1rem;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
  }

  .nav-links li:hover .dropdown-menu {
    display: none;
  }

  .nav-links li.active .dropdown-menu {
    display: block;
  }

  .auth-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
    margin-top: 1rem;
  }

  .auth-buttons a {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  overflow-x: hidden;
}

/* Hero Section Styles */
#Hero-section .hero-section {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 5%;
  position: relative;
  overflow: hidden;
}

#Hero-section .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(
    135deg,
    var(--paypal-blue) 0%,
    var(--paypal-light-blue) 100%
  );
  border-radius: 0 0 0 80px;
  z-index: 0;
}

#Hero-section .hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-image: url("Assets/Landing-Page/Taxi\ 2.jpg");
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
  border-radius: 0 0 0 80px;
}

#Hero-section .text-content {
  flex: 1;
  padding-right: 2rem;
  position: relative;
  z-index: 2;
  max-width: 600px;
}

#Hero-section .text-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  color: var(--paypal-blue);
}

#changing-text {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: var(--paypal-blue);
  min-height: 3.5rem;
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  white-space: pre-wrap;
}

#changing-text.animate .letter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#Hero-section .text-content h1 span {
  color: var(--paypal-light-blue);
}

#Hero-section .text-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

#Hero-section .features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

#Hero-section .feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

#Hero-section .feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 112, 186, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paypal-light-blue);
}

#Hero-section .feature-text {
  font-size: 0.9rem;
  font-weight: 500;
}

#Hero-section .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

#Hero-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

#Hero-section .btn-primary {
  color: #fff;
  background-color: var(--paypal-blue);
  box-shadow: 0 4px 15px rgba(0, 112, 186, 0.3);
}

#Hero-section .btn-primary:hover {
  background-color: #002366;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 112, 186, 0.4);
}

#Hero-section .btn-secondary {
  color: var(--paypal-blue);
  background-color: transparent;
  border: 2px solid var(--paypal-blue);
}

#Hero-section .btn-secondary:hover {
  background-color: rgba(0, 112, 186, 0.05);
  transform: translateY(-2px);
}

#Hero-section .btn i {
  transition: transform 0.3s ease;
}

#Hero-section .btn:hover i {
  transform: translateX(5px);
}

#Hero-section .stats-container {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

#Hero-section .stat {
  display: flex;
  flex-direction: column;
}

#Hero-section .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--paypal-blue);
  line-height: 1;
}

#Hero-section .stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive design */
@media (max-width: 1200px) {
  #Hero-section .hero-section::before,
  #Hero-section .hero-section::after {
    width: 50%;
  }
}

@media (max-width: 992px) {
  #Hero-section .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 4rem 2rem;
  }

  #Hero-section .hero-section::before {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    border-radius: 80px 0 0 0;
  }

  #Hero-section .hero-section::after {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    background-position: center;
    border-radius: 80px 0 0 0;
  }

  #Hero-section .text-content {
    padding-right: 0;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  #Hero-section .text-content h1 {
    font-size: 2.8rem;
  }

  #Hero-section .text-content p {
    font-size: 1.1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  #Hero-section .features {
    justify-content: center;
  }

  #Hero-section .cta-buttons {
    justify-content: center;
  }

  #Hero-section .stats-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #Hero-section .text-content h1 {
    font-size: 2.3rem;
  }

  #changing-text {
    font-size: 2rem;
  }

  #Hero-section .features {
    flex-direction: column;
    align-items: center;
  }

  #Hero-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  #Hero-section .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  #Hero-section .stats-container {
    flex-wrap: wrap;
  }

  #Hero-section .stats-container {
    color: white;
  }
}

@media (max-width: 480px) {
  #Hero-section .text-content h1 {
    font-size: 2rem;
  }

  #changing-text {
    font-size: 1.7rem;
  }

  #Hero-section .hero-section {
    padding: 2rem 1.5rem;
  }

  #Hero-section .stat-number {
    font-size: 1.7rem;
  }

  #Hero-section .text-content p {
    font-size: 1rem;
  }

  #Hero-section .btn {
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 1075px) {
  #Hero-section .hero-section::before {
    display: none;
  }

  #Hero-section .hero-section::after {
    display: none;
  }
}

/* Why Choose Us Section */

#Why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#Why-choose-us section {
  padding: 100px 0;
  position: relative;
}

#Why-choose-us .section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

#Why-choose-us .section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #003087;
}

#Why-choose-us .section-title p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

#Why-choose-us .why-choose-us {
  position: relative;
}

#Why-choose-us .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

#Why-choose-us .feature-card {
  background-color: white;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 30px;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

#Why-choose-us .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: radial-gradient(
    circle at center,
    #003087 0%,
    #003087 70%,
    white 100%
  );
  transform: scaleX(0);
  transition: var(--transition);
}

#Why-choose-us .feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--glow);
}

#Why-choose-us .feature-card:hover::before {
  transform: scaleX(1);
}

#Why-choose-us .feature-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 10px 20px rgba(0, 112, 186, 0.2);
  transition: var(--transition);
}

#Why-choose-us .feature-card:nth-child(1) .feature-icon {
  background-color: #003087;
}

#Why-choose-us .feature-card:nth-child(2) .feature-icon {
  background-color: #003087;
}

#Why-choose-us .feature-card:nth-child(3) .feature-icon {
  background-color: #003087;
}

#Why-choose-us .feature-card:nth-child(4) .feature-icon {
  background-color: #003087;
}

#Why-choose-us .feature-card:nth-child(5) .feature-icon {
  background-color: #003087;
}

#Why-choose-us .feature-card:nth-child(6) .feature-icon {
  background-color: #003087;
}

#Why-choose-us .feature-card:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
}

#Why-choose-us .feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--text);
}

#Why-choose-us .feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Why Choose Us Section */

/* AD Styles */

#AD {
  width: 100vw;
  background-color: #003087;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center; /* center vertically */
  min-height: 100vh; /* take full screen height for perfect center */
}

#AD .container {
  display: flex;
  align-items: center; /* vertical align inside container */
  justify-content: center; /* center horizontally */
  max-width: 1200px;
  padding: 2rem;
  gap: 4rem;
  margin: 0 auto; /* ensure container stays centered */
}

#AD .visual-section {
  position: relative;
  width: 50%;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#AD .payment-card {
  position: relative;
  width: 320px;
  height: 380px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-medium);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  overflow: hidden;
  color: white;
}

#AD .payment-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(-15deg);
  z-index: -1;
}

#AD .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

#AD .paypal-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-color-white);
  letter-spacing: -0.5px;
}

#AD .verified-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

#AD .payment-details {
  text-align: center;
  margin-bottom: 2rem;
}

#AD .amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#AD .description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

#AD .status {
  display: inline-block;
  background: rgba(76, 175, 80, 0.3);
  color: #4caf50;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

#AD .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#AD .recipient {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

#AD .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

#AD .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#AD .recipient-info {
  font-size: 0.9rem;
}

#AD .recipient-name {
  font-weight: 600;
}

#AD .recipient-title {
  opacity: 0.8;
  font-size: 0.8rem;
}

#AD .payment-date {
  font-size: 0.6rem;
  opacity: 0.8;
}

#AD .floating-element {
  position: absolute;
  background: var(--card-bg);
  backdrop-filter: blur(5px);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1;
  color: white;
}

#AD .element-1 {
  width: 120px;
  height: 120px;
  top: 50px;
  left: 0;
  transform: rotate(-5deg);
}

#AD .element-2 {
  width: 100px;
  height: 100px;
  bottom: 80px;
  left: 30px;
  transform: rotate(3deg);
}

#AD .element-3 {
  width: 110px;
  height: 110px;
  top: 150px;
  right: 30px;
  transform: rotate(8deg);
}

#AD .floating-element i {
  font-size: 2rem;
  opacity: 0.8;
}

#AD .content-section {
  width: 50%;
  padding: 2rem;
}

#AD .content-section h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  background: linear-gradient(to right, #ffffff, #e6f0f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#AD .content-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

#AD .features {
  margin-bottom: 2.5rem;
}

#AD .feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

#AD .feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#AD .feature-icon i {
  font-size: 1.2rem;
  color: #fff;
}

#AD .feature-text {
  font-size: 1rem;
  color: #fff;
}

#AD .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: var(--text-color-white);
  color: var(--paypal-blue);
  box-shadow: var(--shadow-light);
}

#AD .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: #f8f8f8;
}

#AD .btn i {
  transition: transform 0.3s ease;
}

#AD .btn:hover i {
  transform: translateX(5px);
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

#AD .floating-element {
  animation: float 6s ease-in-out infinite;
}

#AD .element-2 {
  animation-delay: 2s;
}

#AD .element-3 {
  animation-delay: 4s;
}

/* Responsive design */
@media (max-width: 992px) {
  #AD .container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  #AD .visual-section,
  #AD .content-section {
    width: 100%;
  }

  #AD .visual-section {
    min-height: 400px;
  }

  #AD .content-section h1 {
    font-size: 2.5rem;
  }

  #AD .content-section p {
    font-size: 1.1rem;
    max-width: 100%;
  }

  #AD .floating-element {
    display: none;
  }

  #AD .payment-card {
    width: 100%;
    max-width: 320px;
  }

  #AD .features {
    text-align: left;
  }
}

@media (max-width: 576px) {
  #AD .container {
    padding: 1.5rem;
  }

  #AD .content-section h1 {
    font-size: 2rem;
  }

  #AD .payment-card {
    height: 350px;
    padding: 1.5rem;
  }

  #AD .amount {
    font-size: 2rem;
  }

  #AD .btn {
    width: 100%;
    justify-content: center;
  }
}

/* AD Styles */

/* Footer Styles */

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.social-icon:hover {
  background-color: #003087;
  transform: translateY(-2px);
  color: white;
}
.footer-link:hover {
  color: #003087;
  transform: translateX(4px);
}
.app-badge {
  transition: all 0.2s ease;
}
.app-badge:hover {
  transform: scale(1.05);
}

footer h3 {
  color: #003087 !important;
}

.footer-bottom-links a:hover {
  color: #003087;
  transition: color 0.2s ease;
}

/* Footer Styles */
