/* /home/marllinu/certifyrights.com/public_html/style.css */
/* === Base === */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}

/* === Container === */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* === Header === ⚡ Updated */
.site-header {
  background: linear-gradient(135deg, #0d47a1, #6a00ff, #ff007c);
  color: #ffffff;
  padding: 0.3rem 1.2rem; /* ultra-compact vertical padding */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}




.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 4px;
  padding-bottom: 4px;
}

/* Logo (image and text) */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00e5ff;
}

.logo img {
  height: 32px;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}


/* Desktop Nav */
.desktop-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}


.desktop-nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #00e5ff;
}

/* Mobile Nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 1.5rem;
  background: #1a237e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* === Login Button === ⚡ Enhanced */
.login-btn,
.logout-btn {
  background: linear-gradient(90deg, #ff007c, #6a00ff);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-left: 1rem;
  transition: background 0.3s ease;
}


.login-btn:hover,
.logout-btn:hover {
  background: linear-gradient(90deg, #00e5ff, #00bcd4);
  color: #111;
}

/* === Hero Section === */
.hero {
  background: white;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* === CTA Button === */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #43a047;
}

/* === Sections === */
.how-it-works,
.why-us {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  background: #e3f2fd;
  padding: 20px;
  border-radius: 8px;
  width: 220px;
}

/* === Why Us List === */
.why-us ul {
  list-style: none;
  padding: 0;
}

.why-us li {
  background: #e8f5e9;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-left: 5px solid #4caf50;
  text-align: left;
}

/* === Footer === */
.site-footer {
  background: #1a237e;
  color: white;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9rem;
}

.site-footer a {
  color: #90caf9;
  margin: 0 10px;
  text-decoration: none;
}

/* === Responsive === */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .login-btn,
  .logout-btn {
    display: none;
  }
}
