body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* Navigation bar */
/* NAVBAR */
.navbar {
  background-color: #0a5fa5;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT SIDE */
.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LOGO IN NAVBAR */
.nav-logo img {
  height: 60px;      /* controls logo size in navbar */
  width: auto;
  display: block;
}

/* MENU LINKS */
.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-right: 20px;
}

.nav-menu a:last-child {
  margin-right: 0;
}

.nav-menu a:hover {
  text-decoration: underline;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
}

/* LANGUAGE SWITCH */
.lang-switch {
  color: white;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
}

.lang-switch:hover {
  background: rgba(255,255,255,0.15);
}


/* Page content */
.container {
  text-align: center;
  padding: 40px;
}

/* Logo container */
.logo-container {
  max-width: 900px;      /* controls how wide the logo area can be */
  margin: 0 auto 40px;   /* center + space below */
}

/* Logo image */
.logo {
  width: 100%;           /* fill the container width */
  height: auto;          /* keep proportions */
  display: block;
}


/* Photo gallery */
/* Photo gallery (responsive grid) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 250px;         /* makes all boxes same height */
  object-fit: contain;     /* IMPORTANT: fills box without stretching */
  background: #fff;
  border-radius: 8px;
  display: block;
}

.gallery-item figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}


/* Contact page */
.contact-info {
  margin-top: 30px;
  font-size: 18px;
}

.contact-info p {
  margin: 10px 0;
}

/* Contact card layout */
.contact-card {
  max-width: 700px;
  margin: 30px auto 0;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 20px;
}

/* Each contact row */
.contact-item {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-label {
  width: 120px;
  font-weight: bold;
  color: #0a5fa5;
}

.contact-value {
  flex: 1;
}

/* Make links look clean */
.contact-value a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.contact-value a:hover {
  text-decoration: underline;
}

/* Mobile friendly */
@media (max-width: 600px) {
  .contact-item {
    flex-direction: column;
    gap: 6px;
  }

  .contact-label {
    width: auto;
  }
}

ul {
  list-style-position: inside;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 0;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h1 {
  font-size: 44px;
  margin: 0 0 15px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 20px;
  color: #444;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  background: #0a5fa5;
  color: #fff;
}

.btn:hover {
  text-decoration: underline;
}

.btn-outline {
  background: transparent;
  border: 2px solid #0a5fa5;
  color: #0a5fa5;
}

.btn-outline:hover {
  background: rgba(10, 95, 165, 0.08);
  text-decoration: none;
}

/* Hero image */
.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Home sections */
.home-section {
  margin-top: 45px;
  text-align: left;
}

.home-section h2 {
  margin-bottom: 12px;
}

/* Certifications list */
.cert-list {
  list-style-position: inside;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

/* Certification links: clean, no color change */
.cert-list a,
.cert-list a:visited {
  color: #333;              /* same as normal text */
  text-decoration: none;    /* no underline by default */
  font-weight: 500;
}

/* Hover effect: outline / underline appears */
.cert-list a:hover,
.cert-list a:focus {
  text-decoration: underline;
  outline: none;
}

/* Prevent active/click color change */
.cert-list a:active {
  color: #333;
}


/* Mobile responsiveness */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-image {
    text-align: center;
  }
}


