css @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Navigation Bar */
.navbar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  padding-left: -70px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  gap: 0px;
  flex: 0 0 auto;
  margin-right: 60px;
  margin-left: -60px;
}

.nav-logo span {
  margin: 0;
  padding: 0;
  line-height: 1;
  margin-left: -10px;
}

.nav-logo-img {
  width: 180px;
  /* You can adjust this if needed */
  margin: 0;
  padding: 0;
  display: inline-block;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  margin-right: -30px;
}

.nav-logo span {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.nav-logo i {
  color: #ffd700;
  font-size: 28px;
}

.nav-menu {
  display: none;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 36px;
  white-space: nowrap;
  box-sizing: border-box;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  outline: none;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  flex: 0 0 auto;
  min-height: 44px;
  margin-left: auto;
}

.nav-auth::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.nav-auth:hover::before {
  left: 100%;
}

.nav-auth:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.btn-login,
.btn-register,
.btn-dark-mode {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  background: transparent;
  color: white;
  text-decoration: none;
  min-width: 80px;
  min-height: 36px;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Navbar hover effects for all page types */
.navbar-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 36px;
  white-space: nowrap;
  box-sizing: border-box;
}

.navbar-link:hover,
.navbar-link:focus,
.navbar-link:active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  outline: none;
}

.navbar-link.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Top navbar specific styles */
.top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-navbar .navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-navbar .navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.top-navbar .navbar-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.top-navbar .navbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  min-height: 44px;
}

.top-navbar .navbar-link {
  padding: 10px 16px;
  min-width: 80px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.top-navbar .navbar-link:hover,
.top-navbar .navbar-link:focus,
.top-navbar .navbar-link:active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  outline: none;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
  position: relative;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.footer-brand h3 {
  color: #ffd700;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-section h3 {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  margin-bottom: 0;
  line-height: 1.5;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item i {
  color: #ffd700;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffd700;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: #ffd700;
  color: #2a5298;
  transform: translateY(-2px);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4a 50%, #ffd700 100%);
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-left {
  flex: 2;
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.footer-logo i {
  color: #ffd700;
  font-size: 2rem;
}

.footer-description {
  margin-bottom: 30px;
}

.footer-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-right {
  flex: 1;
  max-width: 350px;
  text-align: left;
}

.footer-right h3 {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 600;
}

.app-store-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

.app-store-btn:hover {
  color: #2a5298;
  background: white;
  border-color: white;
  transform: translateY(-2px);
}

.app-store-btn i {
  font-size: 1.8rem;
}

.app-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.download-text {
  font-size: 0.8rem;
  opacity: 0.9;
}

.store-name {
  font-size: 1rem;
  font-weight: 600;
}

.country-flags {
  margin-top: 20px;
}

.country-flags h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 600;
}

.flags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.flag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.flag-item:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
}

.flag-item i {
  color: #ffd700;
  font-size: 1rem;
}

.flag-item span {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 0 0 30px 0;
}

.footer-bottom {
  padding: 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.footer-legal a:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-left {
    max-width: none;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-description p {
    font-size: 1rem;
  }

  .footer-right {
    max-width: none;
    text-align: center;
  }

  .app-store-buttons {
    justify-content: center;
  }

  .country-flags {
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-legal {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-logo {
    flex-direction: column;
    gap: 10px;
  }

  .footer-description p {
    font-size: 0.9rem;
  }

  .app-store-btn {
    padding: 10px 15px;
  }

  .app-store-btn i {
    font-size: 1.5rem;
  }

  .store-name {
    font-size: 0.9rem;
  }

  .download-text {
    font-size: 0.75rem;
  }

  .flags-container {
    gap: 10px;
  }

  .flag-item {
    padding: 6px 12px;
  }

  .flag-item span {
    font-size: 0.8rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal a {
    font-size: 0.8rem;
  }
}

.btn-login:hover,
.btn-login:focus,
.btn-login:active,
.btn-register:hover,
.btn-register:focus,
.btn-register:active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  outline: none;
}

.btn-dark-mode {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-dark-mode:hover,
.btn-dark-mode:focus,
.btn-dark-mode:active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  outline: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Main Content */
.main-content {
  margin-top: 70px;
  min-height: calc(100vh - 70px - 300px);
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 500px;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
  white-space: nowrap;
  color: #ffd700;
}

.hero-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-mockup {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Clients Section */
.clients-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 60px 0;
  padding: 50px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.clients-container {
  text-align: center;
}

.clients-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}

.clients-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: slide 20s linear infinite;
}

.client-logo {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  min-width: 150px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}

.client-logo:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-color: #ffd700;
}

.logo-img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.client-logo:hover .logo-img {
  filter: grayscale(0%);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-20px);
  }
}

/* Features Section */
.features-section {
  background: #f5f6f7;
  border-radius: 0;
  margin: 60px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 40px 0;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.features-container {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.features-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffd700;
  font-weight: 700;
  text-shadow: none;
  position: relative;
}

.rpo-heading {
  color: #2a5298 !important;
}

.features-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 200px;
  min-height: 200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #ffd700;
  background: rgba(255, 255, 255, 1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  border: 2px solid white;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
  opacity: 1;
}

.feature-icon i {
  font-size: 1.2rem;
  color: #2a5298;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: white;
}

.feature-card h3 {
  font-size: 1rem;
  margin: 15px 0 10px 0;
  color: #1e3c72;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
  flex-shrink: 0;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
  font-size: 0.85rem;
  margin: 0;
  font-weight: 400;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

/* Global Services Section */
.global-services-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 60px -20px 0px -20px;
  padding: 20px 20px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  width: calc(100% + 40px);
}

.global-container h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  color: #ffd700;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.global-container p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.world-map-container {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto 15px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.world-map {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 15px 15px;
  background-position: 0 0, 7.5px 7.5px;
}

.map-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 35% 45%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 8px 8px;
}

.country-marker {
  position: absolute;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.country-marker:hover {
  transform: scale(1.2);
}

.marker-pin {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.marker-pin::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #2a5298;
  border-radius: 50%;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.8);
  }
}

.marker-label {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(42, 82, 152, 0.9);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: all 0.3s ease;
}

.country-marker:hover .marker-label {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Country positions */
.usa {
  top: 40%;
  left: 25%;
}

.canada {
  top: 25%;
  left: 30%;
}

.uk {
  top: 30%;
  left: 52%;
}

.pakistan {
  top: 45%;
  left: 70%;
}

.countries-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.country-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.9);
  padding: 6px 12px;
  border-radius: 18px;
  border: 2px solid #ffd700;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  min-width: 90px;
}

.country-item i {
  color: #2a5298;
  font-size: 0.9rem;
}

.country-item span {
  color: #2a5298;
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-block;
  white-space: nowrap;
}

/* Job Search App Section */
.job-search-app-section {
  padding: 40px 20px;
  margin: 40px 0;
}

.job-search-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 130px;
  min-height: 300px;
}

.job-app-mockup {
  flex: 0 0 auto;
  max-width: 400px;
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

.job-search-text {
  flex: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.job-search-text h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffd700;
}

.job-search-text p {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.job-search-text .app-store-buttons {
  display: flex;
  gap: 20px;
}

.job-search-text .app-store-button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 8px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.job-search-text .app-store-button i {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  font-size: 24px;
}

.job-search-text .app-store-button:hover {
  transform: translateY(-3px);
}

/* Legacy job-app-section styles for compatibility */
.job-app-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 60px 0;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.job-app-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
  max-height: 400px;
}

.job-app-image {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  margin-left: 20px;
  /* optional */
}

.phone-mockup {
  position: relative;
  width: 180px;
  height: 360px;
  animation: float 3s ease-in-out infinite;
}

.phone-frame {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 35px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.app-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

.app-logo img {
  width: 24px;
  height: 24px;
}

.app-content {
  padding: 20px;
  height: calc(100% - 92px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: 'Inter', sans-serif;
}

.job-search-form {
  margin-bottom: 0;
}

.form-field {
  margin-bottom: 16px;
  position: relative;
}

.form-field::before {
  content: "🔍";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.6;
  z-index: 1;
}

.form-field input {
  width: 100%;
  padding: 16px 20px 16px 45px;
  border: 2px solid #e8e9ea;
  border-radius: 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  outline: none;
  transition: all 0.3s ease;
  background: #f8f9fa;
  box-sizing: border-box;
  color: #333;
}

.form-field input:focus {
  border-color: #2a5298;
  background: white;
  box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.form-field input::placeholder {
  color: #888;
  font-weight: 400;
}

.search-btn {
  width: 100%;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  border: none;
  padding: 18px 24px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.35);
  background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
}

.job-listings {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
}

.job-item {
  background: #ffffff;
  border: 1.5px solid #f0f1f2;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
}

.job-item.featured {
  border-left: 4px solid #4CAF50;
  background: #f9fff9;
  border-color: #e8f5e8;
}

.job-item:hover {
  background: #f8fbff;
  border-color: #2a5298;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 82, 152, 0.12);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.job-title {
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #1a365d;
  line-height: 1.4;
  flex: 1;
  margin-right: 12px;
  letter-spacing: -0.01em;
}

.job-salary {
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #2d7738;
  background: #ecfdf5;
  padding: 6px 12px;
  border-radius: 10px;
  white-space: nowrap;
  border: 1px solid #d1fae5;
}

.job-company {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
  line-height: 1.4;
}

.job-bookmark {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-bookmark:hover {
  background: #2a5298;
  border-color: #2a5298;
  color: white;
  transform: scale(1.05);
}

.job-bookmark i {
  font-size: 13px;
  color: #64748b;
  transition: all 0.3s ease;
}

.job-bookmark:hover i {
  color: white;
}

.job-app-content {
  flex: 1;
  color: white;
  max-width: 500px;
}

.job-app-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.job-app-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.5;
}

.app-store-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
}

.job-app-content .app-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  min-width: 160px;
  flex: 0 0 auto;
}

.job-app-content .app-store-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.job-app-content .app-store-btn:hover::before {
  left: 100%;
}

.job-app-content .app-store-btn:hover {
  color: #2a5298;
  background: white;
  border: 1px solid white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.job-app-content .app-store-btn:hover i {
  color: #2a5298;
}

.job-app-content .app-store-btn i {
  font-size: 1.8rem;
  color: white;
}

.job-app-content .app-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.job-app-content .download-text {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 400;
}

.job-app-content .store-name {
  font-size: 1rem;
  font-weight: 600;
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  border-radius: 20px;
  margin: 60px 0;
  padding: 25px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url();
  opacity: 0.3;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.cta-content {
  flex: 1;
  text-align: left;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-btn {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #2a5298;
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-image {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-character {
  position: relative;
  width: 120px;
  height: 120px;
  animation: float 3s ease-in-out infinite;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.mascot-character::before {
  content: '👥';
  font-size: 48px;
  color: #2a5298;
  position: relative;
  z-index: 1;
}

.mascot-character::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
}

.mascot-body {
  display: none;
}

.mascot-eyes {
  display: none;
}

.eye {
  display: none;
}

.mascot-beak {
  display: none;
}

/* Action Section */
.action-section {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  margin-top: 60px;
  margin-bottom: 60px;
  padding-block: 30px;
  padding-inline: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: max-content;
  position: static;
  width: auto;
}

/* Help Section */
.help-section {
  background: #f8f9fa;
  padding: 60px 20px;
  margin: 60px 0;
}

/* Three Card Section */
.three-card-section {
  background: #f5f6f7;
  padding: 60px 0;
  margin: 40px -20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.three-card-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}

.three-card-container h2 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 40px;
  color: #2a5298;
  font-weight: 600;
}

.three-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
  justify-content: center;
}

.three-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.three-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.three-card:hover::before {
  left: 100%;
}

.three-card:hover {
  transform: translateY(-8px);
  border-color: #ffd700;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.25);
  background: rgba(255, 255, 255, 1);
}

.three-card-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  border: 2px solid white;
}

.three-card:hover .three-card-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
  position: relative;
  border: 2px solid white;
}

.three-card-icon::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.three-card:hover .three-card-icon::after {
  opacity: 1;
}

.three-card-icon i {
  font-size: 1.2rem;
  color: #2a5298;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
}

.three-card:hover .three-card-icon i {
  color: white;
}

.three-card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  color: #1e3c72;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.three-card p {
  color: #5a6c7d;
  line-height: 1.5;
  font-size: 0.85rem;
  margin: 0;
  font-weight: 400;
}

.help-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.help-container h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #2a5298;
  font-weight: 600;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.help-card {
  background: white;
  padding: 40px 25px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #e8e9ea;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.help-card:hover {
  transform: translateY(-5px);
  border-color: #2a5298;
  box-shadow: 0 8px 25px rgba(42, 82, 152, 0.15);
}

.help-icon {
  width: 70px;
  height: 70px;
  background: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  border: 3px solid #e8e9ea;
}

.help-card:hover .help-icon {
  background: #2a5298;
  border-color: #2a5298;
  transform: scale(1.1);
}

.help-icon i {
  font-size: 1.8rem;
  color: #2a5298;
  transition: color 0.3s ease;
}

.help-card:hover .help-icon i {
  color: white;
}

.help-card h3 {
  font-size: 1.4rem;
  margin: 0 0 15px 0;
  color: #2a5298;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.help-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
}

.action-container h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: white;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.action-btn {
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.job-btn {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.talent-btn {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.action-btn:hover::before {
  left: 100%;
}

.action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(42, 82, 152, 0.3);
}



/* Responsive Design */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 15px;
    height: 55px;
  }

  .nav-container {
    gap: 20px;
  }

  .nav-logo {
    font-size: 22px;
    margin-right: 10px;
  }

  .nav-auth {
    gap: 15px;
    padding: 8px 15px;
    min-height: 40px;
  }

  .btn-login,
  .btn-register,
  .btn-dark-mode {
    padding: 8px 12px;
    font-size: 13px;
    min-width: 70px;
    min-height: 32px;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 13px;
    min-width: 70px;
    min-height: 32px;
  }

  .navbar-link {
    padding: 8px 12px;
    font-size: 13px;
    min-width: 70px;
    min-height: 32px;
  }

  .top-navbar .navbar-links {
    gap: 15px;
    padding: 6px 12px;
    min-height: 40px;
  }

  .top-navbar .navbar-link {
    padding: 8px 12px;
    min-width: 70px;
    min-height: 32px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 40px 0;
    z-index: 999;
  }

  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-content {
    margin-top: 65px;
    padding: 30px 15px;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    white-space: normal;
  }

  .hero-image {
    margin-top: 30px;
  }

  .mobile-mockup {
    max-height: 350px;
  }

  .clients-section {
    margin: 40px 0;
    padding: 30px 15px;
  }

  .clients-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .clients-slider {
    gap: 20px;
  }

  .client-logo {
    min-width: 120px;
    min-height: 80px;
  }

  .logo-img {
    max-width: 100px;
    max-height: 50px;
  }

  .features-section {
    padding: 30px 0;
    margin: 40px -15px;
  }

  .features-container {
    padding: 0 20px;
  }

  .features-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .features-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .feature-card {
    height: auto;
    min-height: 180px;
    padding: 25px 20px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
    margin: 15px 0 12px 0;
  }

  .global-services-section {
    margin: 40px -15px;
    padding: 20px 15px;
  }

  .global-container h2 {
    font-size: 2rem;
  }

  .global-container p {
    font-size: 1.1rem;
  }

  .world-map-container {
    height: 180px;
  }

  .countries-list {
    gap: 20px;
  }

  .country-item {
    padding: 10px 16px;
    gap: 8px;
  }

  .country-item i {
    font-size: 1.1rem;
  }

  .country-item span {
    font-size: 0.9rem;
  }

  .job-search-app-section {
    padding: 40px 15px;
  }

  .job-search-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    min-height: auto;
  }

  .job-app-mockup {
    max-width: 300px;
    margin: 0 auto;
  }

  .job-search-text {
    text-align: center;
  }

  .job-search-text h2 {
    font-size: 30px;
  }

  .job-search-text p {
    font-size: 16px;
  }

  .job-search-text .app-store-buttons {
    justify-content: center;
  }

  .job-app-section {
    margin: 40px 0;
    padding: 30px 15px;
  }

  .job-app-container {
    flex-direction: column;
    gap: 30px;
    max-height: none;
  }

  .job-app-image {
    margin: 0;
  }

  .phone-mockup {
    width: 150px;
    height: 300px;
  }

  .job-app-content {
    max-width: 100%;
    text-align: center;
  }

  .job-app-content h2 {
    font-size: 2rem;
  }

  .job-app-content p {
    font-size: 1rem;
  }

  .app-store-buttons {
    justify-content: center;
  }

  .cta-section {
    margin: 40px 0;
    padding: 20px 15px;
  }

  .cta-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .cta-content {
    text-align: center;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-image {
    margin-top: 20px;
  }

  .mascot-character {
    width: 120px;
    height: 120px;
  }

  .help-section {
    padding: 40px 15px;
    margin: 40px 0;
  }

  .help-container h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .help-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .help-card {
    padding: 30px 20px;
  }

  .help-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .help-icon i {
    font-size: 1.6rem;
  }

  .help-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .help-card p {
    font-size: 0.95rem;
  }

  .action-section {
    padding: 30px 15px;
  }

  .action-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .action-buttons {
    gap: 20px;
  }

  .action-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    min-width: 160px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-description p {
    font-size: 1rem;
  }

  .footer-right {
    max-width: 100%;
    text-align: center;
  }

  .app-store-buttons {
    justify-content: center;
  }

  .country-flags {
    text-align: center;
  }

  .footer-bottom {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-logo {
    flex-direction: column;
    gap: 10px;
  }

  .footer-description p {
    font-size: 0.9rem;
  }

  .app-store-btn {
    padding: 10px 15px;
  }

  .app-store-btn i {
    font-size: 1.5rem;
  }

  .store-name {
    font-size: 0.9rem;
  }

  .download-text {
    font-size: 0.75rem;
  }

  .flags-container {
    gap: 10px;
  }

  .flag-item {
    padding: 6px 12px;
  }

  .flag-item span {
    font-size: 0.8rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal a {
    font-size: 0.8rem;
  }
}

/* About Us Page Styles */
    .about-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
    }

    .about-container h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #2a5298;
      font-weight: 600;
    }

    .about-content {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .about-image {
      flex: 1;
      max-width: 400px;
    }

    .about-image img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .about-text {
      flex: 1;
      text-align: left;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #555;
    }

    .team-section {
      margin-top: 40px;
    }

    .team-section h3 {
      font-size: 2rem;
      margin-bottom: 30px;
      color: #2a5298;
      font-weight: 600;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .team-member {
      background: white;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .member-image {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 15px;
      overflow: hidden;
    }

    .member-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .member-name {
      font-size: 1.2rem;
      margin: 10px 0 5px 0;
      color: #2a5298;
      font-weight: 600;
    }

    .member-title {
      font-size: 1rem;
      color: #666;
      margin-bottom: 15px;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      background: #2a5298;
      border-radius: 50%;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: #1e3c72;
    }

/* Contact Us Page Styles */
    .contact-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
    }

    .contact-container h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #2a5298;
      font-weight: 600;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      max-width: 500px;
      margin: 0 auto;
    }

    .form-group {
      margin-bottom: 20px;
      text-align: left;
    }

    .form-group label {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: #333;
      font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      font-size: 1rem;
      border: 2px solid #e8e9ea;
      border-radius: 8px;
      outline: none;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #2a5298;
      box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      height: 150px;
    }

    .submit-btn {
      background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
      color: white;
      border: none;
      padding: 15px 30px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(42, 82, 152, 0.3);
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(42, 82, 152, 0.4);
    }

/* Blog Page Styles */
    .blog-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .blog-container h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #2a5298;
      font-weight: 600;
      text-align: center;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .blog-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-image {
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .blog-card:hover .blog-image img {
      transform: scale(1.1);
    }

    .blog-content {
      padding: 25px;
      text-align: left;
    }

    .blog-title {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #2a5298;
      font-weight: 600;
    }

    .blog-text {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }

    .read-more-link {
      display: inline-block;
      margin-top: 15px;
      color: #2a5298;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .read-more-link:hover {
      color: #1e3c72;
    }

/* Portfolio Page Styles */
    .portfolio-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .portfolio-container h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #2a5298;
      font-weight: 600;
      text-align: center;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .portfolio-item {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .portfolio-item:hover {
      transform: translateY(-5px);
    }

    .portfolio-image {
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

    .portfolio-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .portfolio-item:hover .portfolio-image img {
      transform: scale(1.1);
    }

    .portfolio-content {
      padding: 25px;
      text-align: left;
    }

    .portfolio-title {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #2a5298;
      font-weight: 600;
    }

    .portfolio-text {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }

/* Services Page Styles */
    .services-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .services-container h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #2a5298;
      font-weight: 600;
      text-align: center;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      padding: 30px;
      text-align: center;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-icon {
      font-size: 3rem;
      color: #2a5298;
      margin-bottom: 20px;
    }

    .service-title {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #2a5298;
      font-weight: 600;
    }

    .service-text {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }

/* Pricing Page Styles */
    .pricing-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .pricing-container h2 {
      font-size: 2.5rem;
      margin-bottom: 50px;
      color: #2a5298;
      font-weight: 600;
      text-align: center;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .pricing-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      padding: 30px;
      text-align: center;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
    }

    .pricing-title {
      font-size: 1.7rem;
      margin-bottom: 10px;
      color: #2a5298;
      font-weight: 600;
    }

    .pricing-price {
      font-size: 2.5rem;
      color: #2a5298;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .pricing-list {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
    }

    .pricing-list li {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .pricing-button {
      display: inline-block;
      padding: 15px 30px;
      background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .pricing-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(42, 82, 152, 0.4);
    }

/* FAQ Page Styles */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .faq-container h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #2a5298;
      font-weight: 600;
      text-align: center;
    }

    .faq-item {
      margin-bottom: 25px;
      border-bottom: 1px solid #eee;
      padding-bottom: 25px;
    }

    .faq-question {
      font-size: 1.3rem;
      color: #2a5298;
      font-weight: 600;
      margin-bottom: 10px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-answer {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
      display: none;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      color: #2a5298;
      transition: transform 0.3s ease;
    }

    .faq-item.open .faq-question::after {
      content: '-';
      transform: rotate(180deg);
    }

    .faq-item.open .faq-answer {
      display: block;
    }

/* 404 Error Page Styles */
    .error-container {
      max-width: 600px;
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
    }

    .error-container h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #2a5298;
      font-weight: 700;
    }

    .error-container p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 30px;
    }

    .back-home-link {
      display: inline-block;
      padding: 15px 30px;
      background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .back-home-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(42, 82, 152, 0.4);
    }

/* Coming Soon Page Styles */
    .coming-soon-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
    }

    .coming-soon-container h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #2a5298;
      font-weight: 700;
    }

    .coming-soon-container p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 30px;
    }

    .countdown {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 30px;
    }

    .countdown-item {
      text-align: center;
    }

    .countdown-number {
      font-size: 2rem;
      color: #2a5298;
      font-weight: 600;
    }

    .countdown-label {
      font-size: 1.1rem;
      color: #555;
    }

    .subscribe-form {
      display: flex;
      max-width: 400px;
      margin: 0 auto;
    }

    .subscribe-input {
      flex: 1;
      padding: 12px 15px;
      font-size: 1rem;
      border: 2px solid #e8e9ea;
      border-radius: 8px;
      outline: none;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .subscribe-input:focus {
      border-color: #2a5298;
      box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
    }

    .subscribe-button {
      background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
      color: white;
      border: none;
      padding: 12px 25px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .subscribe-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(42, 82, 152, 0.4);
    }

/* Contact Confirmation Page Styles */
    .confirmation-container {
      max-width: 600px;
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
    }

    .confirmation-container h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #2a5298;
      font-weight: 700;
    }

    .confirmation-container p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 30px;
    }

    .confirmation-icon {
      font-size: 5rem;
      color: #4CAF50;
      margin-bottom: 20px;
    }

/* Generic Page Styles */
    .page-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

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

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

/* Search Results Page Styles */
    .search-results-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .search-results-container h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #2a5298;
      font-weight: 600;
      text-align: center;
    }

    .search-results-list {
      list-style: none;
      padding: 0;
    }

    .search-result-item {
      margin-bottom: 25px;
      border-bottom: 1px solid #eee;
      padding-bottom: 25px;
    }

    .search-result-title {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #2a5298;
      font-weight: 600;
    }

    .search-result-text {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }

    .search-result-link {
      display: inline-block;
      margin-top: 15px;
      color: #2a5298;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .search-result-link:hover {
      color: #1e3c72;
    }

/* Terms of Service Page Styles */
    .terms-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .terms-container h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #2a5298;
      font-weight: 600;
      text-align: center;
    }

    .terms-section {
      margin-bottom: 30px;
    }

    .terms-section h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #2a5298;
      font-weight: 600;
    }

    .terms-text {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }

/* Privacy Policy Page Styles */
    .privacy-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .privacy-container h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #2a5298;
      font-weight: 600;
      text-align: center;
    }

    .privacy-section {
      margin-bottom: 30px;
    }

    .privacy-section h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #2a5298;
      font-weight: 600;
    }

    .privacy-text {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }

/* Legal Disclaimer Page Styles */
    .disclaimer-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .disclaimer-container h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #2a5298;
      font-weight: 600;
      text-align: center;
    }

    .disclaimer-section {
      margin-bottom: 30px;
    }

    .disclaimer-section h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #2a5298;
      font-weight: 600;
    }

    .disclaimer-text {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }

/* Under Construction Page Styles */
    .construction-container {
      max-width: 600px;
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
    }

    .construction-container h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #2a5298;
      font-weight: 700;
    }

    .construction-container p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 30px;
    }

    .construction-icon {
      font-size: 5rem;
      color: #FFC107;
      margin-bottom: 20px;
    }

/* Coming Soon Page Styles - Updated */
.coming-soon-updated-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.coming-soon-updated-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2a5298;
    font-weight: 700;
}

.coming-soon-updated-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* Timer Styles */
.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.time-segment {
    text-align: center;
}

.time-number {
    font-size: 2.5rem;
    color: #2a5298;
    font-weight: 700;
    margin-bottom: 5px;
}

.time-label {
    font-size: 1.1rem;
    color: #555;
}

/* Subscribe Form Styles */
.subscribe-updated-form {
    display: flex;
    flex-direction: column; /* Changed to column */
    max-width: 400px;
    margin: 0 auto;
}

.subscribe-updated-input {
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #e8e9ea;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-bottom: 15px; /* Added margin */
}

.subscribe-updated-input:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.subscribe-updated-button {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-updated-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(42, 82, 152, 0.4);
}

/* Add this media query for small screens */
@media (max-width: 576px) {
    .timer {
        flex-wrap: wrap; /* Allows timer items to wrap on smaller screens */
        gap: 10px;
    }

    .time-segment {
        width: 45%; /* Adjust as needed */
    }

    .subscribe-updated-input {
        width: 100%; /* Ensures the input field takes full width */
    }
}

/* General Styles for Other Pages */
.other-pages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Specific Styles for Login Page */
.login-page-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.form-group {
    margin-bottom: 20px;
}

.login-label {
    text-align: left;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.login-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.login-button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #0056b3;
}

.register-link {
    margin-top: 20px;
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
}

.register-link:hover {
    text-decoration: underline;
}

/* Styles for Register Page */
.register-page-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.register-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.register-label {
    text-align: left;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.register-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.register-button {
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.register-button:hover {
    background-color: #1e7e34;
}

.login-link {
    margin-top: 20px;
    font-size: 16px;
    color: #28a745;
    text-decoration: none;
}

.login-link:hover {
    text-decoration: underline;
}

/* General Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    text-align: left;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.form-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.form-button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.form-button:hover {
    background-color: #0056b3;
}

/* Styles for Profile Page */
.profile-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.profile-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.profile-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.profile-info {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* Additional Profile Styles */
.profile-details {
    text-align: left;
}

.detail-label {
    font-weight: bold;
    color: #333;
    margin-right: 10px;
}

.detail-value {
    color: #555;
}

/* Responsive Styles for Profile */
@media (max-width: 768px) {
    .profile-card {
        padding: 15px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    .profile-name {
        font-size: 20px;
    }

    .profile-info {
        font-size: 14px;
    }
}

/* Styles for Dashboard Page */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Dashboard Page Styles */
.dashboard-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2a5298;
    font-weight: 600;
    text-align: center;
}

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

/* Styles for Edit Profile Page */
.edit-profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Edit Profile Page Styles */
.edit-profile-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2a5298;
    font-weight: 600;
    text-align: center;
}

.edit-profile-form {
    display: flex;
    flex-direction: column;
}

.edit-profile-form label {
    text-align: left;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.edit-profile-form input,
.edit-profile-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

.edit-profile-form button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.edit-profile-form button:hover {
    background-color: #0056b3;
}

/* Styles for Settings Page */
.settings-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Settings Page Styles */
.settings-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2a5298;
    font-weight: 600;
    text-align: center;
}

.settings-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.settings-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2a5298;
    font-weight: 600;
}

.settings-form label {
    text-align: left;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.settings-form input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

.settings-form button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.settings-form button:hover {
    background-color: #0056b3;
}

/* Styles for Home Page */
.home-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Add your styles here */

/* Example style for heading */
.home-page-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2a5298;
    font-weight: 600;
    text-align: center;
}

/* Add styles for other elements as needed */

/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust styles for smaller screens */
    .home-page-heading {
        font-size: 2rem;
    }
}



/* General Styles for All Pages */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #2a5298;
    font-weight: bold;
}

/* Styles for Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    color: #fff;
    background-color: #007bff;
    border: none;
}

.btn:hover {
    background-color: #0056b3;
}

/* Styles for Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Styles for Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th,
.table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.table th {
    background-color: #f2f2f2;
}

/* Styles for Lists */
.list {
    list-style-type: none;
    padding: 0;
}

.list li {
    margin-bottom: 10px;
}

/* Styles for Navigation */
.nav {
    background-color: #333;
    padding: 10px;
    text-align: center;
}

.nav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    display: inline-block;
}

.nav a:hover {
    background-color: #ddd;
    color: black;
}

/* Styles for Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}