.mbq-bottom-nav {
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* nav item */
.mbq-nav-item {
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* link fix */
.mbq-nav-item a {
  text-decoration: none;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* icon */
.mbq-nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}

/* hover */
.mbq-nav-item:hover a {
  color: #4f46e5;
}

/* active */
.mbq-nav-item.active a {
  color: #4f46e5;
  font-weight: 600;
}

.mbq-nav-item.active i {
  transform: scale(1.15);
}

/*----------------------- Modern Header Design ------------------*/

/* Company Details Section */
.company-details {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.company-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.company-details .section-title {
  margin-bottom: 60px;
}

.company-details .section-title .tag {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.company-details .section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 15px;
  position: relative;
}

.company-details .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
}

.company-details .section-title p {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.company-details h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  position: relative;
}

.company-details .lead-text {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 40px;
}

.features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-item i {
  font-size: 24px;
  color: #667eea;
  margin-right: 20px;
  margin-top: 5px;
  min-width: 40px;
  text-align: center;
}

.feature-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-card i {
  font-size: 32px;
  color: #667eea;
  margin-bottom: 15px;
  display: block;
}

.info-card h6 {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-card p {
  font-size: 20px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.companyWebsite {
  text-align: center;
  margin-top: 50px;
}

.companyWebsite a {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.companyWebsite a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
  .company-details {
    padding: 60px 0;
  }

  .company-details .section-title h2 {
    font-size: 32px;
  }

  .company-details h3 {
    font-size: 26px;
  }

  .feature-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .info-card {
    padding: 25px;
  }
}

@media only screen and (max-width: 575px) {
  .company-details {
    padding: 40px 0;
  }

  .company-details .section-title h2 {
    font-size: 28px;
  }

  .company-details h3 {
    font-size: 24px;
  }

  .company-details .lead-text {
    font-size: 16px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .feature-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .info-card {
    padding: 20px;
  }

  .info-card i {
    font-size: 28px;
  }

  .info-card p {
    font-size: 18px;
  }

  .companyWebsite a {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* Main Header Styles */
.modern-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.modern-navbar {
  padding: 15px 0;
  background: transparent;
}

/* Brand Styles */
.modern-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.modern-brand:hover {
  transform: scale(1.05);
}

.modern-brand img {
  height: 40px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brand-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation Styles */
.modern-nav {
  gap: 10px;
}

.modern-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 10px 15px !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.modern-nav .nav-link::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.5s ease;
}

.modern-nav .nav-link:hover::before {
  left: 100%;
}

.modern-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-nav .nav-link.is-active {
  background: rgba(255, 255, 255, 0.2);
  color: white !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-nav .nav-link i {
  font-size: 16px;
}

/* Join Button */
.modern-join {
  margin-left: 20px;
}

.modern-join-btn {
  background: linear-gradient(45deg, #25d366, #128c7e) !important;
  color: white !important;
  padding: 12px 25px !important;
  border-radius: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.modern-join-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.modern-join-btn:hover::before {
  left: 100%;
}

.modern-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.join-text {
  font-weight: 600;
}

/* App Dropdown */
.modern-app-dropdown .dropdown-menu {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin-top: 10px;
}

.modern-app-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.modern-app-btn .app-badge {
  background: #ff4757;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 5px;
}

.modern-app-item {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  padding: 15px;
  margin: 5px 0;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.modern-app-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.modern-app-item i {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.modern-app-item.android i {
  background: #3ddc84;
  color: white;
}

.modern-app-item.ios i {
  background: #007aff;
  color: white;
}

.app-info {
  flex: 1;
}

.app-info strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.app-info small {
  opacity: 0.8;
  font-size: 12px;
}

/* User Dropdown */
.modern-user-dropdown .dropdown-menu {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-top: 10px;
  min-width: 200px;
}

.modern-user-menu .dropdown-item {
  color: #333;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modern-user-menu .dropdown-item:hover {
  background: #f8f9fa;
  color: #667eea;
}

.modern-user-menu .dropdown-item i {
  width: 20px;
  text-align: center;
}

.modern-user-menu .dropdown-divider {
  margin: 10px 0;
  border-color: #e9ecef;
}

.logout-item {
  color: #dc3545 !important;
}

.logout-item:hover {
  background: #fff5f5 !important;
  color: #dc3545 !important;
}

/* Login Button */
.login-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
}

/* Social Bar */
.modern-social-bar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-link:hover {
  background: #25d366;
}

.instagram-link:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook-link:hover {
  background: #1877f2;
}

.youtube-link:hover {
  background: #ff0000;
}

.linkedin-link:hover {
  background: #0077b5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-navbar {
    padding: 10px 0;
  }

  .brand-text {
    display: none;
  }

  .modern-nav .nav-link span {
    display: none;
  }

  .modern-nav .nav-link {
    padding: 8px 12px !important;
  }

  .modern-join {
    margin-left: 10px;
  }

  .modern-join-btn .join-text {
    display: none;
  }

  .social-links {
    gap: 10px;
  }

  .social-link span {
    display: none;
  }

  .social-link {
    padding: 8px 12px;
  }
}

/* Ping Animation */
.ping {
  position: absolute;
  top: 0;
  right: 0;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #25d366;
  animation: ping 1.5s infinite;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/*----------------------- Archivement History ------------------ */

.section-title {
  text-align: center;
  font-size: 42px;
  color: #4f46e5;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 40px;
  font-weight: 400;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 50px auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, #4f46e5, #8b5cf6);
  transform: translateX(-50%);
}

/* ===== ITEMS ===== */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* DOT */
.timeline-dot {
  position: absolute;
  top: 25px;
  width: 18px;
  height: 18px;
  background: #4f46e5;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
  z-index: 1;
}

.timeline-item.left .timeline-dot {
  right: -9px;
}

.timeline-item.right .timeline-dot {
  left: -9px;
}

/* ===== CONTENT BOX ===== */
.timeline-content {
  position: relative;
  color: #fff;
  padding: 25px 25px 25px 70px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* ICON */
.timeline-content .icon {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* HOVER */
.timeline-item:hover .timeline-content {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
}

/* TEXT */
.timeline-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.timeline-content span {
  font-size: 13px;
  opacity: 0.9;
}

.timeline-content p {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.95;
}

/* ===== COLOR THEMES ===== */
.gold {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.silver {
  background: linear-gradient(135deg, #e5e7eb, #9ca3af);
  color: #111;
}

.bronze {
  background: linear-gradient(135deg, #cd7f32, #92400e);
}

.platinum {
  background: linear-gradient(135deg, #67e8f9, #0ea5e9);
}

.promotion {
  background: linear-gradient(135deg, #8b5cf6, #4f46e5);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 60px;
    padding-right: 20px;
    margin-bottom: 30px;
  }

  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 20px;
    top: 25px;
  }

  /* .social_icon{
     display: none; 
    } */
}

/* Desktop (min-width: 992px)*/
@media (min-width: 992px) {
  .mbq-bottom-nav {
    display: none;
  }

  /* .social_icon{
     display: none; 
    }*/
}

.leader-profile-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.profile-header h4 {
  margin: 0;
  color: #4f46e5;
  font-size: 20px;
  font-weight: 600;
}

.achievement-badge {
  display: inline-block;
  background: gold;
  color: #fff;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 5px;
}

.achievement-badge1 {
  display: inline-block;
  background: rgb(211, 180, 5);
  color: #fff;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: -30px;
}

.profile-body p {
  color: #555;
  margin: 10px 0;
  font-size: 14px;
}

.achievements-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.achievements-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.achievements-list img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.read-more-btn {
  display: inline-block;
  background: #4f46e5;
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
}

.read-more-btn:hover {
  background: #3730a3;
}


/* ***************************** Header Menu section ********************************* */

/* Hover open */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 12px;
}

/* Get App Button */
.get-app-btn {
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-badge {
  background: linear-gradient(135deg, #ff512f, #dd2476);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
}

/* Dropdown box */
.app-dropdown {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99999 !important;
  background: white;
  min-width: 260px;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Ensure parent has proper positioning */
.get-app-dropdown {
  position: relative;
  z-index: 9998;
}

/* Dropdown hover functionality */
.get-app-dropdown:hover .app-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Desktop dropdown positioning */
@media (min-width: 769px) {
  .get-app-dropdown-desk .app-dropdown {
    position: fixed !important;
    top: 60px !important;
    right: 15px !important;
    z-index: 99999 !important;
    margin-left: 750px !important;
    margin-right: 250px !important;
    min-width: 260px !important;

  }
}

/* App item */
.app-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Icons */
.app-item i {
  font-size: 26px;
}

/* Text */
.app-item span {
  display: flex;
  flex-direction: column;
}

.app-item small {
  font-size: 12px;
  color: #777;
}

/* Hover effects */
.app-item:hover {
  background: #f9f9f9;
  transform: translateX(4px);
}

/* Platform colors */
.app-item.android i {
  color: #3ddc84;
}

.app-item.ios i {
  color: #000;
}

.app-dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

.get-app-dropdown-mobile {
  display: none;
}

@media (max-width: 768px) {
  .get-app-dropdown-mobile {
    display: block;
  }

  .app-dropdown {
    position: fixed !important;
    top: 60px !important;
    right: 25px !important;
    left: 25px !important;
    z-index: 99999 !important;
    min-width: 260px;
    padding: 8px;
    background: #fff;
    box-shadow: 0 0 12px 0 #e9eefc;
    border-radius: 8px;
    max-height: 80vh;
    overflow-y: auto;
  }
}

@media (max-width: 1400px) {
  #mobileSize {
    display: none;
  }
}

@media (max-width: 1200px) {
  #mobileSize {
    display: none;
  }
}

@media (max-width: 756px) {
  #mobileSize {
    display: block;
  }
}





/* ***************************** Company Details section ********************************* */

.premium-company {
  padding: 100px 0;
  background: linear-gradient(180deg, #6586c9, #ffffff);
}

.section-title .tag {
  display: inline-block;
  padding: 5px 14px;
  background: #eaf1ff;
  color: #0066ff;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

.section-title h2 {
  font-weight: 800;
  margin-bottom: 10px;
}

.lead-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item i {
  font-size: 24px;
  color: #0066ff;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-card i {
  font-size: 30px;
  color: #0066ff;
  margin-bottom: 10px;
}

.info-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.companyWebsite {
  text-align: center;
  margin-top: 15px;

}

.companyWebsite a {
  background-color: #fca61f;
  padding: 15px 30px;
  text-decoration: none;
  color: wheat;
  border-radius: 50px;
  font-weight: 600;

}

.companyWebsite a:hover {
  background-color: #bd7502;


}


/* ********************************************** Join Us Bracking News ********************************** */



.join-wrap {
  position: relative;
}

.join-badge {
  position: relative;
  padding: 5px 22px;
  background: linear-gradient(45deg, #ff512f, #f09819);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.5px;
  animation: float 2.5s ease-in-out infinite,
    shake 4s infinite;
  box-shadow: 0 0 15px rgba(255, 81, 47, 0.6);
}

.join-badge-mobile {
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  display: none;
}


.join-wrap a {
  color: white !important;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes shake {

  0%,
  90%,
  100% {
    transform: translateX(0);
  }

  92% {
    transform: translateX(-2px);
  }

  94% {
    transform: translateX(2px);
  }

  96% {
    transform: translateX(-2px);
  }

  98% {
    transform: translateX(2px);
  }
}

.join-badge .ping {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 12px;
  height: 12px;
  background: red;
  border-radius: 50%;
  animation: ping 1.5s infinite;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.join-badge:hover {
  box-shadow: 0 0 25px rgba(255, 81, 47, 0.9);
  transform: scale(1.15);
  transition: 0.3s;
}


@media (max-width: 768px) {
  .join-badge-mobile {
    display: block;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }

}


/* ********************************************* Income Section ************************************ */
.income-section {
  background-image: linear-gradient(to right, rgb(252, 224, 224), rgb(110, 110, 238));
}

.app-notice {
  display: inline-block;
  margin-left: 6px;
  animation: moveArrow 1s infinite alternate;
  font-size: 18px;
}

@keyframes moveArrow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(6px);
  }
}

/* ********************************************* Footer Section ************************************ */



/* .footerBg1{
    background: linear-gradient(135deg, #fdf1f1, #eef1ff);
} */
.footerBg {
  background: linear-gradient(135deg, #f8eded, #b9c6fa);
  padding: 70px 0 25px;
}

.footer-custom {
  padding: 0 70px;
}

.footer-card {
  /* background: #fff; */
  border-radius: 20px;
  /* padding: 40px 30px; */
  /* box-shadow: 0 15px 40px rgba(0,0,0,0.08); */
}

/* .footer-col{
  margin-bottom: 30px;
} */

.footer-logo {
  max-width: 170px;
  margin-bottom: 12px;
}

.lead-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #5a5cff;
  display: block;
  margin-top: 6px;
  border-radius: 10px;
}

.footer-links {
  padding-left: 0;
}

.footer-links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-links li a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #5a5cff;
  padding-left: 6px;
}

.footer-address {
  padding-left: 0;
}

.footer-address li {
  list-style: none;
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.footer-address i {
  color: #5a5cff;
  margin-right: 8px;
}

.footer-map iframe {
  width: 100%;
  height: 160px;
  border: 0;
  border-radius: 12px;
  margin-top: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.copy-right-content {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.copy-right-content p {
  font-size: 13px;
  color: #666;
}

.copy-right-content a {
  color: #5a5cff;
  text-decoration: none;
}

/* Mobile Responsive */
@media(max-width:768px) {
  .footer-custom {
    padding: 0 20px;
  }

  .footer-card {
    padding: 30px 20px;
  }
}


.map-address {
  font-size: 13px;
  color: #444;
  margin-top: 8px;
  text-align: center;
}

.map-address i {
  color: #5a5cff;
  margin-right: 6px;
}
}