/* common.css */

/* Reset some basic styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root{
  --theme-color: #06038D; 
  --accent-color: #F57C00;
  --muted: #666666;
  --card-bg: #ffffff;
  --info-bg: #fafafa;
  --border: #e0e0e0;
  --bg-light: #F8F9FB;
  --bg-dark: #1B1F3B;
  --text-color: #333333;
  --text-main: #2E3A59;
  --text-secondary: #555555;
  --success: #2E8B57;
  --error: #D32F2F;
  --wrapper-bg:#f7f9fa;

}

/* Apply base styles */
html, body {
  font-family: 'Inter', Arial, sans-serif;  /* body font */
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  color: #333;  /* optional: base text color */
  background-color: #f9f9f9;
}

/* Headings use Montserrat */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;  /* headings weight */
  line-height: 1.3;
  color: #111;       /* optional: darker heading color */
}

/* Links */
a {
  color: #1976d2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo styles */
header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

header .logo a .logo-img {
  width: 274px;    /* adjust size as needed */
  height: 40px;
  object-fit: contain;
}

nav ul {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #1C1C1C;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 6px;
  transition: color 0.3s, background-color 0.3s;
}

nav ul li.active a {
  color: #fff;
  background-color: var(--theme-color)
}

nav ul li a:hover {
  color: #fff;
  background-color: var(--theme-color);
  text-decoration: none;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

.highlight-text {
  color: #007bff; /* blue color */
  /* text-decoration: underline; */
}

/* Responsive */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
    -webkit-text-size-adjust: 100%;
  }
  nav ul {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    flex-direction: column;
    background-color: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  nav ul.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .inner-container {
    padding: 12px;
  }
}

/* Buttons */
.button {
  display: inline-block;
  padding: 10px 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-align: center;
  color: white;
  background-color: #1976d2;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: #115293;
}

/* Forms / Inputs */
input, select, textarea {
  font-size: 1rem;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  width: 100%;
  max-width: 400px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #1976d2;
}

/* Cards */
.card {
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 16px;
  margin-bottom: 16px;
}

.btn-themed {
  display: inline-block;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 18px;
  color: #fff;               /* Text color */
  background-color: var(--theme-color); /* Primary theme color */
  border: 2px solid var(--theme-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

.btn-themed:hover {
  background-color: #fff;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* Footer */
.site-footer {
  background: #f7f9fa;
  color: #333;
  border-top: 1px solid #e6e9eb;
  margin-top: 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 16px;
  align-items: start;
}

.footer-col h4 {
  margin: 0 0 8px 0;
  font-size: 15px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #0b1a66;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.brand {
  display: inline-block;
  font-weight: 700;
  color: var(--theme-color);
  text-decoration: none;
  font-size: 18px;
}

.footer-desc {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #e1e4e8;
  padding: 10px 16px;
  font-size: 13px;
  color: #666;
}

/* Contact form */
.contact-form {
  max-width: 720px;
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #eef2f5;
  box-shadow: 0 2px 6px rgba(20, 30, 60, 0.02);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row .full { grid-column: 1 / -1; }

label { font-size: 13px; color: #333; margin-bottom: 6px; display:block; }
/* input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d7dee8;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
} */

textarea { min-height: 120px; resize: vertical; }

.btn {
  display: inline-block;
  background: var(--theme-color);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.form-note { font-size: 13px; color: #666; margin-top: 8px; }
.form-error { color: #d9534f; font-size: 13px; margin-top: 8px; display:none; }
.form-success { color: #0a8a3b; font-size: 13px; margin-top: 8px; display:none; }

/* Utility */
.section { margin-bottom: 28px; }

.h1-section-title {
  font-size: 1.76rem;
  line-height: 1.9rem;
  font-weight: 700;
  text-align: left;
  color: #333333;
  margin-bottom: 20px;
  border-left: 4px solid var(--theme-color);
  padding-left: 0.5rem;
}

#h1-section-title {
  font-size: 1.76rem;
  line-height: 1.9rem;
  font-weight: 700;
  text-align: left;
  color: var(--text-color);
  margin-bottom: 20px;
  border-left: 4px solid var(--theme-color);
  padding-left: 0.5rem;
}

.h2-section-title {
  font-size: 1.25rem;
  line-height: 1.4rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-color);
  margin-bottom: 8px;
}

/* DRAWER MENU */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.drawer.active {
  transform: translateX(0);
  opacity: 1;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #333;
  z-index: 99;
}

.drawer-menu {
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  list-style: none;
  padding: 0;
  padding-top: 80px;
  top: 0;
  right: 0;
}

.drawer-menu li a {
  text-decoration: none;
  font-size: 20px;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

.drawer-menu li.active a {
  color: #fff;
  background-color: var(--theme-color);
  font-weight: 600;  
  text-decoration: none;
}

.drawer-menu li a:hover {
  color: #fff;
  background-color: var(--theme-color);
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.breadcrumb a {
  text-decoration: none;
  color: #343e4a;
  margin: 0 5px;
  margin-left: 0px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 5px;
  color: #ccc;
}

.breadcrumb .current {
  font-weight: bold;
  color: var(--theme-color);
}

/* Responsive */
@media (max-width: 768px) {
  
  .breadcrumb {
    margin-left: 12px;
    margin-right: 12px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
