/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1.05rem;
  font-family: "Inter", sans-serif;
  background-color: #f1efea;
  color: #1a1a1a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header & Navigation */
header {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: auto;
  max-height: 50px;
  width: auto;
  margin-right: 1rem;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  position: relative;
}

nav a {
  text-decoration: none;
  color: #2d2a6e;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #ffb700;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav a:hover,
nav a.active {
  color: #ffb700;
}

nav a:hover::after {
  width: 100%;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #fff;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  z-index: 999;
  min-width: 250px;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.dropdown.active .dropdown-content,
.dropdown:hover .dropdown-content {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-content a {
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: #f1efea;
  color: #ffb700;
}

/* Hero Section */
.hero {
  background-image: url("../assets/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #f1efea;
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  background-color: #ffb700;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  margin-top: 2rem;
}

.cta-btn:hover {
  background-color: #e0a100;
}

/* Services Section */
.services-preview {
  padding: 5rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.services-preview h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #2d2a6e;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: #f1efea;
  padding: 2rem;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #2d2a6e;
}

.service-card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #7a7a7a;
}

.service-card a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  border-bottom: 2px solid #ffb700;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
}

.centered {
  margin-top: 2rem;
}

.cta-secondary {
  color: #ffb700;
  font-weight: bold;
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #f1efea;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #7a7a7a;
  border-top: 1px solid #e6e6e6;
}

footer .social-icons {
  margin-top: 1rem;
}

footer .social-icons a {
  margin: 0 10px;
  text-decoration: none;
  color: #ffb700;
  font-size: 1.2rem;
  transition: color 0.3s;
}

footer .social-icons a:hover {
  color: #2d2a6e;
}

/* Typography */
main.container h1,
h2 {
  color: #2d2a6e;
  margin-bottom: 1rem;
}

/* Forms */
form {
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
}

form label {
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

form button {
  background-color: #ffb700;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

form button:hover {
  background-color: #e0a100;
}

/* Hero Image Banner */
.service-hero {
  width: 100%;
  max-height: 350px;
  position: relative;
  overflow: hidden;
}

.service-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
  border-bottom: 3px solid #ffb700;
}

.hero-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 1rem;
}

.hero-overlay-text h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero-overlay-text p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Team Section */
.team-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  flex: 1 1 30%;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.team-img {
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
  margin: 1rem 0;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.team-img:hover {
  transform: scale(1.05);
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
  padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 1rem;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  nav ul.show {
    display: flex;
  }

  .service-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.mission-vision-gradient {
  background: linear-gradient(120deg, #f6f4ef 0%, #fcf9f4 50%, #f2eee8 100%);
  padding: 5rem 0;
  position: relative;
}

.mv-grid-glow {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.mv-card {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #b17e2b;
}

.mv-card p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}

.mv-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #b17e2b;
}

/* Make it responsive */
@media (max-width: 768px) {
  .split-columns {
    flex-direction: column;
    gap: 2rem;
  }
}
/* Service Tag Section */
.service-tag {
  background-color: #fcf9f4;
  padding: 2rem;
  border-left: 5px solid #ffb700;
  border-radius: 8px;
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-weight: bold;
}

.service-tag h2 {
  margin-bottom: 1rem;
  color: #2d2a6e;
}

.service-tag p {
  font-weight: 500;
  color: #333;
}

/* Service Content Blocks */
.service-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.service-block {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.service-block h2 {
  color: #2d2a6e;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-block p {
  line-height: 1.8;
  color: #444;
}

/* Center the CTA Button */
.cta-centered {
  text-align: center;
  margin-top: 2rem;
}
.blog-page {
  background-color: #f3ede1;
  padding: 4rem 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 1rem;
}

.blog-content h2 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
}

.blog-content p {
  font-size: 0.95rem;
  line-height: 1.4;
}
.blog-content h2 a {
  color: #1a1a1a; /* or #AD8A56 if you prefer */
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h2 a:hover {
  color: #ad8a56; /* subtle gold accent on hover */
}
.blog-filters {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-filters .filter-btn {
  border: none;
  background: #fff;
  color: #1a1a1a;
  font-weight: 600;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.blog-filters .filter-btn:hover,
.blog-filters .filter-btn.active {
  background: #ad8a56;
  color: #fff;
}

.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 1rem;
}

.blog-content h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h3 a:hover {
  color: #ad8a56;
}

.blog-content .category {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: #ad8a56;
}
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
}

.blog-post h1 {
  margin-top: 0.5rem;
  font-size: 2rem;
  line-height: 1.3;
}

.blog-post .blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-post .category {
  background: #ad8a56;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.blog-post .date {
  color: #777;
}

.blog-post .blog-featured {
  width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 4px;
}

.blog-post section {
  margin-bottom: 2rem;
}

.blog-post blockquote {
  margin: 1rem 0;
  padding: 1rem;
  background: #f9f5ef;
  border-left: 4px solid #ad8a56;
  font-style: italic;
}

.blog-cta {
  background: #f3ede1;
  padding: 1rem;
  border-left: 4px solid #ad8a56;
  font-weight: 600;
}

.blog-resources ul {
  list-style: disc;
  padding-left: 1.5rem;
}
#backToTop {
  display: none; /* hidden by default */
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #ad8a56;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s ease;
}

#backToTop:hover {
  background-color: #916c3a;
}
.blog-content a,
.blog-post a {
  color: #4f4f4f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.blog-content a:hover,
.blog-post a:hover {
  color: #ad8a56;
  border-color: #ad8a56;
}
.resources-page {
  padding: 4rem 2rem;
  background-color: #f1efea;
}

.resources-page h1 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.resources-page p {
  text-align: center;
  margin-bottom: 2rem;
}

.resource-filters {
  text-align: center;
  margin-bottom: 2rem;
}

.resource-filters .filter-btn {
  border: none;
  background: #fff;
  color: #4f4f4f;
  font-weight: 600;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.resource-filters .filter-btn:hover,
.resource-filters .filter-btn.active {
  background: #ad8a56;
  color: #fff;
}

.resource-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.resource-card {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
  margin-top: 0;
}

.resource-card p {
  flex-grow: 1; /* let the paragraph take up any remaining space */
}

.resource-card h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: center; /* optional if you want it centered */
}

.resource-card a:hover {
  text-decoration: underline;
  color: #916c3a;
}

.resource-card a {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #ad8a56; /* your brand gold */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.resource-card a:hover {
  color: #916c3a;
  text-decoration: underline;
}

.resource-card a:visited {
  color: #ad8a56; /* keep it consistent */
}

.faq-page {
  padding: 4rem 2rem;
  background: #f3ede1;
  text-align: center;
}

.faq-tabs {
  margin: 2rem 0;
}

.tab-btn {
  border: none;
  background: #fff;
  color: #4f4f4f;
  font-weight: 600;
  margin: 0 0.5rem 1rem 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #ad8a56;
  color: #fff;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  cursor: pointer;
  font-weight: 600;
  margin: 0;
  padding: 1rem 0;
  background: transparent;
  color: #1a1a1a;
  transition: color 0.3s ease;
  position: relative;
}

.faq-item h3::after {
  content: "+";
  position: absolute;
  right: 0;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item h3.active {
  color: #ad8a56;
}

.faq-item h3.active::after {
  content: "-";
  color: #ad8a56;
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin: 0;
  padding-left: 0.5rem;
  color: #4f4f4f;
  line-height: 1.5;
}
