
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}


.top-bar {
  background-color: #003366;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

header {
  background-color: #f8f8f8;
  border-bottom: 1px solid #ddd;
  height: 80px;
  overflow: hidden;
  top: 0;
  z-index: 999;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 100px;
  position: relative;
  top: -22px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  position: relative;
  top: -20px;
}

.nav-links li a {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #0077b6;
}

/* Home Section */
.home-section {
  background: url('background1.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.home-hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
   text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.home-hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
   text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}


.cta-button {
  background-color: #0077b6;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
 margin-top: 25px; /* pushes it down */
  display: inline-block;
}

.cta-button:hover {
  background-color: #023e8a;
}.about-preview {
  background-color: #f4f4f4;
  padding: 80px 20px;
  text-align: center;
}

.home-previews {
  padding: 40px 20px;
  background-color: #f2f2f2;
  margin-top: -40px;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.preview-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.preview-card:hover {
  transform: translateY(-5px);
}

.preview-card i {
  font-size: 40px;
  color: #0077b6;
  margin-bottom: 15px;
}

.preview-card h3 {
  margin-bottom: 10px;
  font-size: 1.3em;
  color: #003366;
}

.preview-card p {
  font-size: 1em;
  color: #444;
  margin-bottom: 15px;
}

.preview-card a {
  text-decoration: none;
  color: #0077b6;
  font-weight: 600;
  transition: color 0.3s;
}

.preview-card a:hover {
  color: #023e8a;
}
.logo-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-contact img {
  height: 80px; 
}

.contact-info {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #333;
}

.contact-info i {
  margin-right: 5px;
  color: #0077b6;
}
.about-section {
  background-image: url('pexels-sora-shimazaki-5668481.jpg');
  padding: 100px 20px;
  color: #333;
  background-attachment: fixed;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h2 {
  font-size: 3em;
  color: #003366;
}

.about-header .tagline {
  font-size: 1.3em;
  color: #0077b6;
  margin-top: 10px;
  font-weight: 500;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 55%;
  font-size: 1.1em;
  line-height: 1.8;
}

.about-text .highlight-title {
  color: #0057a0;
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 10px;
  background-color: #e6f0fa;
  padding: 8px 12px;
  border-left: 5px solid #003366;
  border-radius: 4px;
  display: inline-block;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
 .practice-section {
  background-image: url('pexels-sora-shimazaki-5668481.jpg');
  padding: 100px 20px;
  color: #222;
  background-attachment: fixed;
}

.practice-container {
  max-width: 1200px;
  margin: 0 auto;
}

.practice-header {
  text-align: center;
  margin-bottom: 60px;
}

.practice-header h2 {
  font-size: 3em;
  color: #003366;
}

.practice-header .tagline {
  font-size: 1.2em;
  color: #0077b6;
  margin-top: 10px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.practice-card {
  background: #ffffff;
  border-left: 5px solid #0077b6;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.practice-card h3 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.practice-card p {
  font-size: 1em;
  line-height: 1.6;
}
.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  color: #0077b6;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.read-more-btn:hover {
  color: #005f8f;
  text-decoration: underline;
}

.team-intro {
  max-width: 900px;
  margin: 0 auto 60px auto;
  font-size: 1.1em;
  line-height: 1.8;
  color: #444;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.team-intro p {
  margin-bottom: 20px;
}
.team-section {
  padding: 100px 20px;
  background-image: url('pexels-sora-shimazaki-5668481.jpg');
    background-attachment: fixed;
  color: #222;
  
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 3em;
  color: #003366;
}

.team-header .tagline {
  font-size: 1.2em;
  color: #0077b6;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h3 {
  color: #003366;
  margin-bottom: 5px;
}

.team-member p {
  color: #555;
  font-size: 0.95em;
}
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff; /* ensures background color sticks with you */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* optional shadow */
}
.publications-section {
  padding: 100px 20px;
  background-image: url('pexels-sora-shimazaki-5668481.jpg');
  color: #222;
    background-attachment: fixed;
}

.publications-container {
  max-width: 900px;
  margin: 0 auto;
}

.publications-container h2 {
  font-size: 3em;
  color: #003366;
  text-align: center;
}

.publications-container .tagline {
  text-align: center;
  font-size: 1.3em;
  color: #0077b6;
  margin-bottom: 50px;
  font-weight: 500;
}

.publications-intro {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  line-height: 1.8;
  font-size: 1.1em;
}

.publications-intro p {
  margin-bottom: 20px;
}
.articles-section {
  background-image: url('pexels-sora-shimazaki-5668481.jpg');
    background-attachment: fixed;
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.articles-section h2 {
  font-size: 3em;
  margin-bottom: 40px;
  color: #003366;
  text-align: left;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.article-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-meta {
  padding: 20px;
}

.article-meta .date {
  font-size: 0.9em;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

.article-meta h3 {
  font-size: 1.1em;
  color: #003366;
  font-weight: 600;
  line-height: 1.4;
}
.site-footer {
  background-color: #1e1e1e;
  color: #ccc;
  padding: 30px 20px;
  font-size: 0.95em;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-left p,
.footer-center p {
  margin: 0;
}

.footer-left strong {
  color: #fff;
}

.footer-center i {
  color: #0077b6;
  margin-right: 6px;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-right span {
  margin-right: 8px;
}

.footer-right a {
  color: #ccc;
  font-size: 1.2em;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #0077b6;
}
.contact-section {
  background-image: url('pexels-sora-shimazaki-5668481.jpg');
    background-attachment: fixed;
  padding: 100px 20px;
  background-color: #f8f8f8;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2.5em;
  color: #003366;
}

.form-header p {
  font-size: 1.1em;
  color: #555;
  margin-top: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077b6;
  outline: none;
}

.contact-form .cta-button {
  align-self: flex-start;
  background-color: #0077b6;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form .cta-button:hover {
  background-color: #005f8f;
}

.map-link {
  display: inline-block;
  background: #0077b6;
  color: #fff;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.map-link:hover {
  background: #005f8f;
}

