@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

/* Top Bar */
.top-bar {
  background: #082b53;
  color: #fff;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.top-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item i {
  color: #FFD700;
}

.social-icons a {
  color: #fff;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #FFD700;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 140px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #082b53;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFD700;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold {
  background: #FFD700;
  color: #082b53;
}

.btn-gold:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

.btn-navy {
  background: #082b53;
  color: #fff;
}

.btn-navy:hover {
  background: #0a3d6f;
  color: #FFD700;
  transform: translateY(-2px);
}

/* Hero Section */
#hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 3rem;
  border-radius: 12px;
  max-width: 800px;
}

.hero-overlay h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.4rem;
  color: #eee;
  margin-bottom: 2rem;
}

/* Practice Areas */
#practice-areas {
  padding: 5rem 2rem;
  background: #fff;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.practice-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-5px);
}

.practice-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}


#practice-card h2 {
  font-size: 2.4rem;
  color: #082b53;
  font-weight: 700;
  margin-bottom: 3rem;
}


.practice-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Resources Section */
#resources {
  padding: 6rem 2rem;
  background: #fafafa;
  text-align: center;
}

#resources h2 {
  font-size: 2.4rem;
  color: #082b53;
  font-weight: 700;
  margin-bottom: 3rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

#resources .practice-card {
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#resources .practice-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #FFD700;
}

#resources .practice-card h3 {
  font-size: 1.5rem;
  color: #082b53;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

#resources .practice-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

#resources .practice-card .btn {
  background: #082b53;
  color: #fff;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 25px;
}

#resources .practice-card .btn:hover {
  background: #FFD700;
  color: #082b53;
}

/* Parallax Section */
#parallax {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.parallax-overlay {
  background: rgba(8, 43, 83, 0.85);
  padding: 3rem;
  border-radius: 12px;
  max-width: 800px;
  color: #fff;
}

.parallax-overlay h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.parallax-overlay p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* About Section */
#about {
  padding: 5rem 2rem;
  background: #fafafa;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.values-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  display: inline-block;
}

.values-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.values-list li strong {
  color: #082b53;
}

/* CTA Section */
#cta {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #082b53, #0a3d6f);
  color: #fff;
  text-align: center;
}

#cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

#cta p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* Team */
#team {
    padding: 6rem 1rem;
    background: #f5f5f5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.8rem;
    color: #082b53;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1.1rem;
    color: #FFD700;
    margin-bottom: 0.8rem;
}

.team-bio-short, .team-bio-extended {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: #082b53;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #FFD700;
}

/* Services */
#services {
    padding: 6rem 1rem;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 1.8rem;
    color: #082b53;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Contact */
#contact {
    padding: 6rem 1rem;
    background: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #082b53;
    margin-bottom: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: fit-content;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #082b53;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.contact-info a {
    color: #082b53;
    text-decoration: none;
}

.contact-info a:hover {
    color: #FFD700;
}

.map {
    margin-top: 2rem;
}

/* Whitepaper */
#whitepaper {
    padding: 6rem 1rem;
    background: #fff;
}

.whitepaper-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.whitepaper-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.whitepaper-content h3 {
    font-size: 1.8rem;
    color: #082b53;
    margin-bottom: 1rem;
}

.whitepaper-content h4 {
    font-size: 1.5rem;
    color: #082b53;
    margin-bottom: 0.8rem;
}

.whitepaper-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.whitepaper-content ul li {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.whitepaper-content a {
    color: #082b53;
    text-decoration: none;
}

.whitepaper-content a:hover {
    color: #FFD700;
}

/* CTA */
#cta {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #082b53, #0a3d6f);
    text-align: center;
}

#cta h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

#cta p {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

#cta .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700, #DAA520);
    color: #082b53;
}

.btn-navy {
    background: linear-gradient(135deg, #082b53, #0a3d6f);
    color: #fff;
    border: 2px solid transparent;
}

.btn-navy:hover {
    color: #FFD700;
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, #082b53, #0a3d6f);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: #082b53;
    color: #fff;
    padding: 5rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 1rem;
}

.footer-info p, .footer-links a, .footer-social a {
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.6rem;
    display: block;
    transition: color 0.3s ease;
}

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

.footer-info a:hover, .footer-links a:hover, .footer-social a:hover {
    color: #FFD700;
}

.footer-links h3, .footer-social h3 {
    font-size: 1.6rem;
    color: #FFD700;
    margin-bottom: 1rem;
}


/* Footer */
footer {
  background: #082b53;
  color: #fff;
  padding: 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

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

.footer-links a,
.footer-social a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #FFD700;
}

.footer-copy {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 1.5rem;
    position: absolute;
    top: 80px;
    right: 0;
    box-shadow: 0 8px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #082b53;
  }

  #hero {
    height: auto;
    padding: 5rem 2rem;
  }

  .hero-overlay h1 {
    font-size: 2.2rem;
  }

  .hero-overlay p {
    font-size: 1.1rem;
  }

  .parallax-overlay h2 {
    font-size: 2rem;
  }

  .parallax-overlay p {
    font-size: 1.1rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #resources .practice-card {
    height: 260px;
  }
}