/* Contains header, footer and default styles to be applied to every page */
:root {
  --primary: #1f5fbf;
  --primary-dark: #0f3f83;
  --accent: #e8f2ff;
  --text: #18324a;
  --muted: #5d7288;
  --background: #f8fbff;
  --white: #ffffff;
  --border: #dbe8f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.brand-logo {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  /* background: var(--accent); */
  padding: 0.35rem;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.nav-link {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: var(--accent);
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  margin: 4px 0;
}


.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 2rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 1fr;
  gap: 1.5rem;
}

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

.site-footer a {
  color: #dceeff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  color: #dceeff;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem 1rem;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.social-links {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 10px;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.2s;
  padding-right: 0.2rem;
}

.social-links .follow-us a {
   color: white;
  font-size: 2rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #0077b5; /* Change to any color you like */
}

.contact-section {
  margin-left: 40px; /* Increase or decrease this number until it looks right */
}

@media (max-width: 765px) {
  .contact-section {
    margin-left: 0; /* Reset margin for smaller screens */
    /* text-align: center;*/ /* Center the content */
  }
  
}



/* .page-main {
  min-height: calc(100vh - 280px);
  display: grid;
  place-items: center;
  padding: 3.5rem 1rem;
}

.hero-card {
  width: min(700px, 100%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(15, 63, 131, 0.08);
  padding: 2.5rem;
  text-align: center;
}

.hero-card h1 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hero-card p {
  margin-bottom: 0;
  color: var(--muted);
} */



/*Contains header, footer and default styles to be applied to every page*/
/* 
:root {
  --primary: #1f5fbf;
  --primary-dark: #0f3f83;
  --accent: #e8f2ff;
  --text: #18324a;
  --muted: #5d7288;
  --background: #f8fbff;
  --white: #ffffff;
  --border: #dbe8f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: var(--primary-dark);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent);
  padding: 0.35rem;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.nav-link {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: #dceeff;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
}



.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 2rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

.site-footer a {
  color: #dceeff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  color: #dceeff;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 0.75rem 1rem 1rem;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
} */
 /* .page-main {
  min-height: calc(100vh - 280px);
  display: grid;
  place-items: center;
  padding: 3.5rem 1rem;
}

.hero-card {
  width: min(700px, 100%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(15, 63, 131, 0.08);
  padding: 2.5rem;
  text-align: center;
}

.hero-card h1 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hero-card p {
  margin-bottom: 0;
  color: var(--muted);
} */