:root {
  /* Colors */
  --primary-blue: #0A2463;
  --secondary-blue: #1E3A8A;
  --dark-blue: #051433;
  --accent-gold: #D4AF37;
  --bright-gold: #F4D03F;
  --white: #FFFFFF;
  --light-bg: #F8F9FA;
  --text-main: #0A2463;
  --text-muted: #6C757D;

  /* Fonts */
  --font-primary: 'Times New Roman', Times, serif;

  /* Spacing */
  --section-padding: 5rem 0;

  /* Components */
  --card-radius: 16px;
  --transition-fast: 0.3s ease;
}

body {
  font-family: var(--font-primary);
  color: var(--text-main);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: bold;
  color: var(--primary-blue);
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--bright-gold) 100%);
  color: var(--primary-blue);
  border: none;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  color: var(--primary-blue);
}

.btn-gold-cta {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
}

.btn-gold-cta:hover {
  background: var(--accent-gold);
  color: var(--primary-blue);
}

/* LOGIN BUTTON (SQUARE) */
.btn-login-square {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px; /* Square edges */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.btn-login-square:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    border-color: var(--accent-gold);
}

.btn-login-square i {
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
  /* Glassmorphism effect */
  background: rgba(10, 36, 99, 0.95); /* Fallback */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 20, 51, 0.98);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--accent-gold) !important;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9) !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 50%;
  background-color: var(--accent-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 0 auto;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-blue);
}

/* ===================================
   MODERN FOOTER
   =================================== */
.footer-modern {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #020b1c 100%);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 5rem;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 350px;
}

.footer-heading {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-links a i {
  margin-right: 8px;
  font-size: 0.8rem;
  color: var(--accent-gold);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.footer-contact-info i {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-bottom {
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-blue);
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}
