/* Basic CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  overflow: visible;
}

/* ==============================================
   HEADER STYLES - Fresh & Clean Design
   ============================================== */

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #048bcc 0%, #05aaf4 100%);
  color: #ffffff;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.brochure-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  border: none;
}

.brochure-btn:hover {
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.brochure-btn i {
  font-size: 14px;
}

.site-header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

/* Features Alert Bar */
.features-alert-bar {
  background: #ffffff;
  color: #1f2937;
  padding: 12px 0;
  overflow-x: auto;
  border-top: 1px solid #e5e7eb;
}

.features-alert-content {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.alert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  color: #374151;
}

.alert-item i {
  font-size: 14px;
  color: #048bcc;
  width: 16px;
  text-align: center;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 30px;
}

/* Logo Styles */
.header-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

/* Desktop Navigation */
.desktop-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
  padding-top: 8px;
  overflow: visible;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 18px 20px;
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  position: relative;
}

.nav-link:hover {
  color: #05aaf4;
  border-bottom-color: #05aaf4;
  background: transparent;
}

.nav-link.active {
  color: #05aaf4;
  border-bottom-color: #05aaf4;
  background: transparent;
  font-weight: 600;
}

.nav-link i {
  font-size: 10px;
  margin-left: 2px;
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
  overflow: visible;
}

.nav-dropdown .nav-link:hover {
  border-bottom-color: transparent;
}

.dropdown-menu {
  position: fixed;
  top: auto;
  left: auto;
  min-width: 260px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border-top: 3px solid #05aaf4;
  z-index: 1000;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  margin: 0;
  border-bottom: 1px solid #f3f4f6;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 14px 20px;
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown-menu a:hover {
  color: #05aaf4;
  background: #f9fafb;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0px;
  flex-shrink: 0;
}

.action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #334155;
  text-decoration: none;
  font-size: 18px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: #05aaf4;
  color: #ffffff;
  border-color: #05aaf4;
}

.action-btn[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #334155;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.action-btn[title]:hover::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #334155;
  z-index: 1000;
}

.action-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #10b981;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #334155;
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-toggle:hover {
  background: #f8fafc;
  color: #05aaf4;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}

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

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav-list {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: #f8fafc;
  color: #05aaf4;
  padding-left: 32px;
}

.logout-btn {
  font-family: inherit;
}

.mobile-dropdown {
  display: none;
  list-style: none;
  background: #f8fafc;
  padding: 0;
  margin: 0;
}

.mobile-dropdown.active {
  display: block;
}

.mobile-dropdown a {
  display: block;
  padding: 14px 24px 14px 44px;
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.mobile-dropdown a:hover {
  background: #ffffff;
  color: #05aaf4;
  padding-left: 52px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .action-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .logo-img {
    height: 45px;
  }

  .header-wrapper {
    padding: 16px 0;
  }

  .top-bar {
    padding: 8px 0;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .container {

  .top-bar-text {
    font-size: 13px;
  }

  .brochure-btn {
    font-size: 12px;
    padding: 7px 16px;
  }
    padding: 0 20px;
  }

  .header-actions {
    gap: 8px;
  }

  .action-btn:nth-child(2) {
    display: none;
  }

  .logo-img {
    height: 40px;
  }
}

/* ==============================================
   END HEADER STYLES
   ============================================== */

/* Image Carousel */
.carousel-container {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(-50vw + 50%);
  padding: 0;
  background: #f3f4f6;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  padding-bottom: 30%;
  background: #e5e7eb;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  padding: 16px 20px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
  border-radius: 4px;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
  background: #ffffff;
  border-color: #05aaf4;
}

/* We Work With (Continuous Logo Marquee) */
.we-work-with {
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(-50vw + 50%);
  padding: 20px 0 25px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
}

.we-work-with-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.we-work-with-kicker {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #048bcc;
}

.we-work-with-viewport {
  margin-top: 18px;
  width: 100%;
  overflow: hidden;
}

.we-work-with-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: weWorkWithMarquee var(--we-work-with-duration, 28s) linear infinite;
}

.we-work-with-group {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 10px 30px;
}

.we-work-with-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.we-work-with-box {
  height: 65px;
  min-width: 130px;
  padding: 0;
  border-radius: 10px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.we-work-with-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.we-work-with-logo {
  height: 55px;
  width: 130px;
  display: block;
  object-fit: contain;
}

.we-work-with-fallback {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  padding: 0;
  border: none;
  background: transparent;
  white-space: nowrap;
}

@keyframes weWorkWithMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--we-work-with-group-width, 50%)));
  }
}

/* Content Section */
.content-section {
  padding: 60px 0;
  background: #ffffff;
}

/* Footer visibility - hide on desktop, show on mobile */
.mobile-only-footer {
  display: none;
}

/* Mobile Responsive Carousel */
@media (max-width: 768px) {
  .mobile-only-footer {
    display: block;
  }

  .carousel {
    padding-bottom: 50%;
  }

  .carousel-btn {
    padding: 12px 16px;
    font-size: 16px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-indicators {
    bottom: 15px;
    gap: 8px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .content-section {
    padding: 40px 20px;
  }

  .we-work-with {
    padding: 20px 0 25px;
  }

  .we-work-with-inner {
    padding: 0 20px;
  }

  .we-work-with-kicker {
    font-size: 12px;
  }

  .we-work-with-viewport {
    margin-top: 15px;
  }

  .we-work-with-track {
    animation-duration: var(--we-work-with-duration, 22s);
  }

  .we-work-with-group {
    gap: 30px;
    padding: 10px 20px;
  }

  .we-work-with-logo {
    height: 45px;
    width: 100px;
  }

  .we-work-with-box {
    height: 55px;
    min-width: 100px;
    padding: 0;
  }

  .features-alert-content {
    gap: 20px;
    padding: 0 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .features-alert-content::-webkit-scrollbar {
    height: 0;
    display: none;
  }

  .features-alert-content {
    scrollbar-width: none;
  }

  .alert-item {
    font-size: 11px;
    flex-shrink: 0;
  }

  .alert-item i {
    font-size: 13px;
  }
}

/* ==============================================
   ANNOUNCEMENT BAR STYLES
.announcement-bar {
  background: #048bcc;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
}

.announcement-bar .container {
  display: block;
  text-align: center;
  max-width: 100%;
  padding: 0 10px;
}

.announcement-text {
  margin: 0;
  font-weight: 500;
  text-align: center;
  font-style: italic;
}

/* Header Styles */
.header {
  background: white;
  color: #1a202c;
  padding: 25px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo Section */
.logo-section {
  flex: 1;
  display: flex;
  align-items: center;
  margin-left: 22px;
}

.logo {
  display: block;
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 0 0 auto;
}

.circular-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.circular-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: #05aaf4;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid #05aaf4;
  font-size: 16px;
}

.circular-btn:hover {
  background: #05aaf4;
  color: white;
  transform: translateY(-2px);
}

.circular-btn[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #374151;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #64748b;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #f7fafc;
}

/* Main Navigation */
.main-nav {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link:hover {
  color: #05aaf4;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #1a202c;
  text-decoration: none;
  transition: background 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.dropdown-menu li a:hover {
  background: #f7fafc;
  color: #374151;
}

/* CTA Button Styling */
.nav-cta {
  margin-left: auto;
}

.nav-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #05aaf4 0%, #0486d1 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: linear-gradient(135deg, #0486d1 0%, #0369a1 100%);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(5, 170, 244, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .header-top {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .logo-section {
    order: 1;
    flex: 1;
  }
  
  .header-actions {
    order: 2;
    flex-shrink: 0;
  }
  
  .logo-image {
    height: 35px;
  }
  
  .circular-actions {
    gap: 6px;
  }
  
  .circular-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .header-top {
    gap: 10px;
  }
  
  .circular-actions {
    gap: 4px;
  }
  
  .circular-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-overlay.active .mobile-nav-container {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.mobile-nav-header h3 {
  color: #1a202c;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #64748b;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  color: #1a202c;
  background: #e2e8f0;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu > li {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  color: #1a202c;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: #f8fafc;
  color: #05aaf4;
}

.mobile-dropdown-toggle {
  cursor: pointer;
}

.mobile-dropdown {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f8fafc;
}

.mobile-dropdown.active {
  display: block;
}

.mobile-dropdown li a {
  padding: 12px 40px;
  color: #64748b;
  font-weight: 400;
  font-size: 14px;
}

.mobile-dropdown li a:hover {
  color: #05aaf4;
  background: #f1f5f9;
}

.mobile-nav-actions {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: #05aaf4;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.mobile-cta-btn:hover {
  background: #0486d1;
}

.mobile-contact-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.mobile-circular-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-circular-btn:hover {
  background: #05aaf4;
  color: white;
}

@media (max-width: 480px) {
  .mobile-nav-container {
    width: 280px;
  }
}

/* Footer Styles */
.footer {
  background: #1a202c;
  color: white;
  padding: 20px 0;
  text-align: center;
  margin-top: 50px;
}

.footer p {
  margin: 0;
}

/* Register Button in Navigation */
.nav-item a[style*="background"] {
  margin-left: 10px;
  transition: all 0.3s ease;
}

.nav-item a[style*="background"]:hover {
  background: #0486d1 !important;
  transform: translateY(-1px);
}

/* User Dropdown Styling */
.nav-item.dropdown form {
  margin: 0;
}

.nav-item.dropdown form a {
  width: 100%;
  text-align: left;
}
