

a{
    text-decoration: none;
}

:root {
  --primary: #301BF3;
  --secondary: #9128C3;
  --tertiary: #12DDF0;
  --white: #ffffff;
  --bg-dark: #1a1a1a; /* New professional dark background for pre-nav */
  --text-main: #2d2d2d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Updated Pre-Navbar Styling */
.pre-navbar {
  background-color: var(--bg-dark); /* Removed Green */
  padding: 10px 5%;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pre-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-group, .social-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.pre-nav-container a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.pre-nav-container a:hover {
  color: var(--tertiary);
}

.social-group a {
  font-size: 18px;
}

/* Specific Social Colors for attractiveness */
.social-group .fb:hover { color: #1877F2; }
.social-group .ig:hover { color: #E4405F; }
.social-group .yt:hover { color: #FF0000; }

@media (max-width: 768px) {
  .pre-navbar { display: none; }
}


.login-wrapper {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between links */
  font-family: sans-serif;
}

.login-wrapper a {
  text-decoration: none;
  color: var(--white); /* Your Primary Blue */
  font-weight: 600;
  font-size: 15px;
}

.login-wrapper a:hover {
  text-decoration: underline;
}

.login-wrapper span {
  color: #ccc; /* Simple divider color */
}

/* ── Footer (shared across all pages) ── */
.main-footer {
  background-color: #f8f9fa;
  padding: 60px 5% 20px;
  border-top: 1px solid #eee;
  color: #444;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-address img {
  width: 180px;
}

.footer-address h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

.footer-address p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: #555;
}

.footer-links-group {
  display: flex;
  gap: 50px;
}

.footer-links-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul li a {
  font-size: 0.92rem;
  color: #555;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #888;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-links-group {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
}