/* About Page Styles */

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

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f0f8f0;
  margin: 0;
  padding: 0;
  /* Add top padding to prevent content from being hidden behind navbar */
  padding-top: 64px;
}

/* Header and Navigation Styles */
header {
  background: #063366;
  padding: 0;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #063366;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  box-sizing: border-box;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.3rem;
  color: #ffd600;
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  width: 40px;
  object-fit: cover;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links a.active, .nav-links a:hover {
  background: #4b5d67;
  color: #ffd600;
}

.nav-links a.active {
  background: #3a5d1c;
  color: #ffd600;
}

/* Admin gear icon styling */
.admin-link {
  margin-left: 10px;
}

.admin-gear {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffd600;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
}

.admin-gear:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffd600;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 214, 0, 0.3);
}

.admin-gear i {
  font-size: 1.1rem;
  animation: spin 3s linear infinite;
}

.admin-gear:hover i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Dropdown styles */
.dropdown {
  position: relative;
  flex-shrink: 0;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #063366;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 6px;
  padding: 8px 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

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

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #4b5d67;
  color: #ffd600;
}

/* Ensure dropdown menu appears above all other content */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #063366;
}

/* Ensure proper stacking context for dropdown */
.dropdown {
  z-index: 1001;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Ensure navigation doesn't overlap with scrollbar */
@media (min-width: 1200px) {
  .navbar {
    padding-right: 60px;
  }
}

/* Prevent text wrapping and ensure proper spacing */
.nav-links li {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Footer Styles */
footer {
  background: #0d407a;
  color: #fff;
  padding: 48px 0 0 0;
  margin-top: 0;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 36px 60px;
  gap: 40px;
  border-radius: 0 0 10px 10px;
}

.footer-about, .footer-links, .footer-social {
  flex: 1 1 0;
  min-width: 220px;
  margin-bottom: 0;
}

.footer-about h3, .footer-links h4, .footer-social h4 {
  color: #ffd600;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-about p, .footer-links ul, .footer-social ul {
  color: #e3eafc;
  font-size: 1.08rem;
  margin: 0 0 10px 0;
  font-weight: 400;
}

.footer-links ul, .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a, .footer-social a {
  color: #ffd600;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color 0.2s;
}

.footer-links a:hover, .footer-social a:hover {
  color: #4caf50;
  text-decoration: underline;
}

.footer-contact-icon {
  margin-right: 8px;
  font-size: 1.15rem;
  vertical-align: middle;
}

.footer-about p {
  margin-bottom: 8px;
}

.footer-bottom {
  background: #063366;
  color: #fff;
  text-align: center;
  padding: 18px 0 10px 0;
  font-size: 1.08rem;
}

.footer-bottom hr {
  border: 0;
  border-top: 2px solid #ffd600;
  margin-bottom: 12px;
  width: 92%;
}

.footer-tagline {
  color: #4caf50;
  font-size: 1.08rem;
  margin-top: 4px;
}

.footer-social-icon {
  margin-right: 8px;
  font-size: 1.15rem;
  vertical-align: middle;
}

/* Responsive footer */
@media (max-width: 1000px) {
  .footer-content {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px 30px 20px;
    gap: 24px;
  }
  .footer-about, .footer-links, .footer-social {
    min-width: unset;
    margin-bottom: 18px;
  }
}

/* Responsive navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-left: auto;
    margin-right: 0;
    z-index: 2001;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .hamburger span {
    height: 3px;
    width: 24px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .hamburger.menu-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.menu-open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.menu-open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .logo {
    justify-content: flex-start;
    flex: 1 1 auto;
    margin-right: 0;
    font-size: 1.1rem;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    background: #063366;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 1999;
    border-radius: 0 0 10px 10px;
    margin: 0;
    padding: 0 0 24px 0;
    flex-direction: column;
    gap: 0;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 1.1rem;
    border-radius: 0;
    text-align: left;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
  }
  
  .nav-links a:hover, .nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #ffd600;
    transform: translateX(8px);
  }
  
  .navbar {
    padding: 0 20px;
  }
  
  /* Admin link styling for mobile */
  .admin-link {
    margin-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .admin-gear {
    width: 100%;
    justify-content: flex-start;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 16px 24px;
    font-size: 1.1rem;
  }
  
  .admin-gear:hover {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    transform: none;
    box-shadow: none;
  }
  
  .admin-gear span {
    display: none;
  }
  
  .admin-gear {
    padding: 8px 12px;
  }
}

/* Additional responsive breakpoints */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 30px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .nav-links a {
    padding: 6px 14px;
    font-size: 0.95rem;
  }
  
  .admin-gear span {
    display: none;
  }
  
  .admin-gear {
    padding: 8px 12px;
  }
}

@media (max-width: 900px) {
  .hamburger {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  
  .hamburger span {
    width: 20px;
    height: 2px;
  }
  
  .nav-links a {
    padding: 14px 20px;
    font-size: 1rem;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 16px;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo img {
    width: 32px;
    height: 32px;
  }
  
  .hamburger {
    width: 32px;
    height: 32px;
    padding: 4px;
  }
  
  .hamburger span {
    width: 18px;
    height: 2px;
  }
  
  .nav-links a {
    padding: 12px 16px;
    font-size: 0.95rem;
    min-height: 44px;
  }
}

.about-hero {
  background: #0a356a;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero p {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

.about-main {
  position: relative;
  background: #f6faff;
  padding: 2.5rem 0 3rem 0;
  text-align: center;
  overflow: hidden;
}

.about-bg-svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.about-bg-svg-left {
  left: -120px;
}

.about-bg-svg-right {
  right: -120px;
}

.about-main-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-main h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 4vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0a356a;
}

.about-main p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  color: #425466;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.about-card {
  background: #fff;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px 0 #0a356a22;
  border: 1.5px solid #e3eaf5;
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 220px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.about-card:hover {
  box-shadow: 0 8px 32px 0 #0a356a33;
  transform: translateY(-6px) scale(1.03);
  border-color: #0a356a;
}

.about-card h3 {
  font-family: 'Playfair Display', serif;
  color: #0a356a;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
  letter-spacing: 0.2px;
}

.about-card p {
  color: #222;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.about-card div[style*="font-size:2rem"] {
  color: #ff9800 !important;
  margin-bottom: 0.5rem;
}

.founder-section {
  background: #f4f8fb;
  padding: 3rem 0;
  text-align: center;
  color: #111;
}

.founder-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

.founder-section p, .founder-section h3 {
  color: #222;
}

.founder-section .founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 2rem auto 0;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px #0001;
}

.founder-section img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0a356a;
  margin-bottom: 1rem;
}

.values-section {
  background: #0a356a;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.values-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 4vw, 2.3rem);
  font-weight: 700;
}

.values-section .values-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.values-section .value-card {
  flex: 1 1 200px;
  max-width: 300px;
}

.values-section h3 {
  font-weight: 700;
}

.team-section {
  background: #d4e6fa;
  padding: 3rem 0;
  text-align: center;
  color: #111;
  font-family: 'Inter', Arial, sans-serif;
  box-shadow: 0 2px 16px 0 #0a356a11;
  border-top: 1.5px solid #b3cbe6;
  border-bottom: 1.5px solid #b3cbe6;
}

.team-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 4vw, 2.3rem);
  font-weight: 700;
  color: #0a356a;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.team-card {
  background: #fff;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px 0 #0a356a22;
  border: 1.5px solid #e3eaf5;
  flex: 1 1 240px;
  max-width: 300px;
  min-width: 220px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}

.team-card:hover {
  box-shadow: 0 8px 32px 0 #0a356a33;
  transform: translateY(-6px) scale(1.03);
  border-color: #0a356a;
}

.team-card img {
  width: 128px;
  height: 128px;
  border-radius: 8px;
  object-fit: cover;
  border: 3px solid #0a356a;
  margin-bottom: 1.2rem;
  display: block;
  background: #e3eaf5;
}

.team-card h3 {
  color: #0a356a;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.3rem;
  margin-top: 0.2rem;
  letter-spacing: 0.2px;
}

.team-card p {
  color: #222;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.team-card p[style*="italic"] {
  color: #3b4a5a;
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  font-style: italic;
  margin-bottom: 0.7rem;
  margin-top: 0.1rem;
}

@media (max-width: 900px) {
  .about-cards, .values-section .values-cards {
    flex-direction: column;
    align-items: center;
  }
  .about-card, .values-section .value-card {
    max-width: 90vw;
  }
  .team-cards {
    flex-direction: column;
    align-items: center;
  }
  .team-card {
    max-width: 90vw;
    min-width: 0;
  }
} 

/* Responsive font sizes for headings and text */
.about-hero h1 {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
}
.about-hero p, .about-main p, .about-card p, .team-card p, .values-section p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}
.about-main h2, .values-section h2, .team-section h2 {
  font-size: clamp(1.3rem, 4vw, 2.3rem);
}
.about-card h3, .team-card h3, .values-section h3 {
  font-size: clamp(1.1rem, 3vw, 1.25rem);
}

/* Responsive buttons */
.btn {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  min-height: 44px;
  padding: 14px 24px;
  border-radius: 10px;
}
@media (max-width: 700px) {
  .btn {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

/* Hero background improvements */
.about-hero {
  background-size: cover !important;
  background-position: center !important;
  min-height: 180px;
  text-align: center;
  padding: 32px 10px 18px 10px;
}
@media (max-width: 700px) {
  .about-hero {
    min-height: 100px;
    padding: 18px 4vw 10px 4vw;
  }
  .about-hero h1 {
    font-size: clamp(1.1rem, 7vw, 2rem);
  }
  .about-hero p {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }
}

/* Section padding/margin for mobile */
@media (max-width: 700px) {
  .about-main, .about-cards, .values-section, .team-section {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

/* Prevent text overflow */
.about-hero, .about-main, .about-cards, .values-section, .team-section {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Ensure all section headings are centered on mobile */
@media (max-width: 700px) {
  h1, h2, h3, h4, h5, h6, .about-hero h1, .about-main h2, .values-section h2, .team-section h2 {
    text-align: center;
  }
}

/* Ensure nav links and buttons are touch-friendly */
@media (max-width: 700px) {
  .nav-links a, .btn {
    min-height: 48px;
    font-size: clamp(1rem, 3vw, 1.15rem);
    padding: 14px 18px;
  }
}

/* Admin Login Modal Styles */
.admin-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.admin-modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.admin-modal-header {
  background: linear-gradient(135deg, #063366 0%, #0056b3 100%);
  color: #fff;
  padding: 25px 30px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.admin-modal-header h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-modal-header h2 i {
  font-size: 1.2rem;
  color: #ffd600;
}

.admin-close {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.admin-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.admin-modal-body {
  padding: 30px;
}

.admin-logo {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.admin-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.admin-logo h3 {
  margin: 0 0 5px 0;
  color: #063366;
  font-size: 1.5rem;
  font-weight: 700;
}

.admin-logo p {
  margin: 0;
  color: #666;
  font-size: 1rem;
}

.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.form-group label i {
  color: #063366;
  width: 16px;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #fafafa;
}

.form-group input:focus {
  outline: none;
  border-color: #063366;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(6, 51, 102, 0.1);
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500 !important;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.checkmark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #f0f0f0;
  border: 2px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #063366;
  border-color: #063366;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.admin-login-btn {
  background: linear-gradient(135deg, #063366 0%, #0056b3 100%);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.admin-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 51, 102, 0.3);
}

.admin-login-btn:active {
  transform: translateY(0);
}

.admin-help {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.admin-help p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.admin-help i {
  color: #063366;
}

/* Responsive design for admin modal */
@media (max-width: 768px) {
  .admin-modal-content {
    width: 95%;
    margin: 10% auto;
  }
  
  .admin-modal-header {
    padding: 20px 25px;
  }
  
  .admin-modal-body {
    padding: 25px;
  }
  
  .admin-logo img {
    width: 70px;
    height: 70px;
  }
  
  .admin-logo h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .admin-modal-content {
    width: 98%;
    margin: 5% auto;
  }
  
  .admin-modal-header {
    padding: 15px 20px;
  }
  
  .admin-modal-body {
    padding: 20px;
  }
  
  .admin-logo img {
    width: 60px;
    height: 60px;
  }
} 