/* ===================================
   Nazvion Ventures – Main Stylesheet
   =================================== */

/* 1. Color Variables */
:root {
  --nv-darkgreen: #247b6e;
  --nv-orange: #f36f45;
  --nv-gold: #f2b441;
  --nv-cream: #f6eadb;
}

/* 2. Global Reset & Body */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: var(--nv-cream);
  color: var(--nv-darkgreen);
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
}

/* 3. Header & Navbar */
header {
  background: var(--nv-darkgreen);
  box-shadow: 0 2px 6px #00000011;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  max-width: 1100px;
  margin: auto;
  padding: 12px 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.navbar-logo {
  height: 60px;
  filter: none;        /* remove any inversion */
  transition: transform 0.2s;
}

.navbar-menu {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;     /* IE & Edge */
  scrollbar-width: none;        /* Firefox */
}
.navbar-menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.navbar-menu a:hover {
  background: var(--nv-gold);
  color: var(--nv-darkgreen);
}

/* 4. Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #f6eadb 75%, #f2b44115 100%);
  padding: 40px 16px;
}
.hero-content {
  text-align: center;
  max-width: 520px;
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  box-shadow: 0 8px 48px #247b6e19;
  padding: 38px 26px 46px;
}
.hero-logo {
  height: 110px;
  margin-bottom: 16px;
}
.hero-title {
  color: var(--nv-darkgreen);
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 7px;
  letter-spacing: 1px;
}
.hero-subtitle {
  color: var(--nv-orange);
  font-size: 1.23rem;
  font-weight: 700;
  margin-bottom: 17px;
  letter-spacing: 2px;
}
.hero-text {
  font-size: 1.13rem;
  color: #333;
  margin-bottom: 27px;
}

/* 5. Buttons */
.cta-btn {
  background: var(--nv-gold);
  color: var(--nv-darkgreen);
  border: none;
  border-radius: 9px;
  padding: 15px 34px;
  font-size: 1.11rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 3px 12px #f2b4413b;
}
.cta-btn:hover {
  background: var(--nv-orange);
  color: #fff;
  box-shadow: 0 2px 6px #f36f4522;
}

/* 6. Footer */
footer {
  background: #fff;
  color: var(--nv-darkgreen);
  text-align: center;
  padding: 18px 0;
  margin-top: 36px;
  font-size: 1rem;
  border-top: 1px solid #eaeaea;
}

/* 7. Responsive Adjustments */
@media (max-width: 700px) {
  .navbar {
    padding: 12px 0.5rem;
  }
  .navbar-logo { height: 50px; }
  .hero-content { padding: 24px 16px 30px; }
  .hero-logo { height: 85px; }
  .hero-title { font-size: 2rem; }
}

/* 8. Centered Form Sections */
.center-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 76vh;
  padding: 20px;
}
.form-card, .login-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 38px #247b6e19;
  padding: 36px 32px;
  max-width: 400px;
  width: 100%;
}
.form-title, .login-title {
  text-align: center;
  color: var(--nv-darkgreen);
  margin-bottom: 18px;
  font-weight: 700;
}
.form-card input,
.form-card textarea,
.login-card input {
  width: 100%;
  border: 1px solid #ececec;
  border-radius: 7px;
  padding: 12px;
  font-size: 1rem;
  margin-bottom: 17px;
  background: #f9f9f9;
  color: #252525;
  transition: border 0.2s, background 0.2s;
}
.form-card input:focus,
.form-card textarea:focus,
.login-card input:focus {
  outline: none;
  border: 1.7px solid var(--nv-orange);
  background: #fff;
}
.form-error {
  color: #d9534f;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: block;
}

/* 9. About Section */
.about-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 70vh;
  padding: 20px;
}
.about-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px #247b6e19;
  padding: 38px 32px;
  max-width: 600px;
  width: 100%;
}
.highlight-green { color: var(--nv-darkgreen); font-weight: 600; }
.highlight-orange { color: var(--nv-orange); font-weight: 600; }
.highlight-gold { color: var(--nv-gold); font-weight: 600; }

/* 10. Services Section */
.services-section {
  padding: 42px 10px 40px;
  text-align: center;
}
.services-section h2 {
  color: var(--nv-darkgreen);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px #247b6e19;
  padding: 34px 20px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.service-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 40px #f2b44125;
}
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: var(--nv-gold);
}

/* 11. Team Section */
.team-section {
  padding: 42px 10px 44px;
  text-align: center;
}
.team-section h2 {
  color: var(--nv-darkgreen);
  font-size: 2.2rem;
  margin-bottom: 36px;
  font-weight: 800;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 34px;
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 30px #247b6e19;
  padding: 30px 20px 24px;
  transition: transform 0.13s, box-shadow 0.13s;
  text-align: center;
}
.team-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 50px #f2b44123;
}
.team-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--nv-gold);
  margin-bottom: 18px;
}
.team-card h4 {
  color: var(--nv-darkgreen);
  font-size: 1.14rem;
  margin-bottom: 7px;
  font-weight: 700;
}
.team-role {
  color: var(--nv-orange);
  font-size: 1.04rem;
  font-weight: 600;
}



.hero {
  text-align: center;
  padding: 70px 20px 40px 20px;
  background: linear-gradient(90deg, #283e51 0%, #485563 100%);
  color: #fff;
}
.hero h1 { font-size: 2.5em; margin-bottom: 10px; }
.hero p { font-size: 1.3em; margin-bottom: 30px; }
.btn {
  background: #ff9600;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.2s;
}
.btn:hover { background: #e57c00; }



/* 12. Women Empowerment Section */
.women-section {
  padding: 42px 10px 48px;
  text-align: center;
}
.women-intro {
  font-size: 1.15rem;
  color: #444;
  max-width: 680px;
  margin: 0 auto 40px;
}
.women-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
}
.women-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 36px #247b6e18;
  padding: 28px 18px 20px;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: center;
}
.women-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 50px #f2b44126;
}
.women-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--nv-orange);
  margin-bottom: 16px;
}
.women-card h4 {
  color: var(--nv-darkgreen);
  font-size: 1.14rem;
  margin-bottom: 4px;
  font-weight: 700;
}
.women-role {
  color: var(--nv-orange);
  font-size: 1.01rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.women-bio {
  font-size: 0.99rem;
  color: #555;
}
.women-cta {
  margin-top: 45px;
}

/* 13. Dashboard Section */
.dashboard-section {
  padding: 44px 10px 34px;
  text-align: center;
  min-height: 75vh;
}
.dashboard-welcome {
  margin-bottom: 26px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px,1fr));
  gap: 25px;
  max-width: 600px;
  margin: 0 auto;
}
.dashboard-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px #247b6e19;
  padding: 32px 0 24px;
  font-size: 1.07rem;
  font-weight: 600;
  color: var(--nv-darkgreen);
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.18s, color 0.15s;
  text-align: center;
}
.dashboard-card span {
  font-size: 2.3rem;
  margin-bottom: 11px;
  display: block;
}
.dashboard-card:hover {
  background: var(--nv-orange);
  color: #fff;
  box-shadow: 0 7px 32px #f36f4522;
}

/* 14. Login Page */
.login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: var(--nv-cream);
  padding: 20px;
}
.login-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px #247b6e19;
  padding: 40px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
}
.login-logo {
  height: 80px;
  margin-bottom: 20px;
}
.login-title {
  font-size: 1.8rem;
  color: var(--nv-darkgreen);
  margin-bottom: 24px;
  font-weight: 700;
}
.login-form .form-group {
  text-align: left;
  margin-bottom: 20px;
}
.login-form label {
  display: block;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 6px;
}
.login-form input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  transition: border 0.2s, background 0.2s;
}
.login-form input:focus {
  outline: none;
  border-color: var(--nv-orange);
  background: #fff;
}
.password-group {
  position: relative;
}
.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--nv-darkgreen);
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.forgot-link {
  font-size: 0.9rem;
  color: var(--nv-orange);
  text-decoration: none;
}
.forgot-link:hover {
  text-decoration: underline;
}
.login-footer {
  margin-top: 24px;
  font-size: 0.95rem;
}
.login-footer a {
  color: var(--nv-orange);
  text-decoration: none;
}
.login-footer a:hover {
  text-decoration: underline;
}

/* End of stylesheet */


/* ——— Updated Header Styles ——— */
header {
  background: var(--nv-cream);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1100px;
  margin: auto;
  padding: 12px 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  height: 60px;
  transition: transform 0.2s;
}
.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;    /* IE/Edge */
  scrollbar-width: none;       /* Firefox */
}
.navbar-menu::-webkit-scrollbar {
  display: none;               /* Chrome/Safari */
}

.navbar-menu a {
  position: relative;
  color: var(--nv-darkgreen);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 0;
  transition: color 0.2s;
  white-space: nowrap;
}
.navbar-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--nv-orange);
  transition: width 0.3s;
}
.navbar-menu a:hover {
  color: var(--nv-orange);
}
.navbar-menu a:hover::after {
  width: 100%;
}


/* ——— Orange Header with Underline Animation ——— */
header {
  background: var(--nv-orange);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}



.navbar-menu a {
  color: #fff;              /* white links */
}
.navbar-menu a::after {
  background: var(--nv-gold);  /* gold underline */
}
.navbar-menu a:hover {
  color: var(--nv-gold);       /* gold on hover */
}


header {
  background: var(--nv-orange); /* or var(--nv-gold) */
}
.navbar-menu a {
  color: #fff;
}
.navbar-menu a::after {
  background: var(--nv-gold);
}
.navbar-menu a:hover {
  color: var(--nv-gold);
}
/* ——— White Header with Brand-Color Links ——— */
header {
  background: #fff; /* white header */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-logo {
  height: 60px;
  filter: none;        /* ensure logo shows in its original colors */
  transition: transform 0.2s;
}

.navbar-menu a {
  color: var(--nv-darkgreen);   /* dark-green links */
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  position: relative;
  transition: color 0.2s;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--nv-orange); /* orange underline */
  transition: width 0.3s;
}

.navbar-menu a:hover {
  color: var(--nv-orange);      /* links turn orange on hover */
}

.navbar-menu a:hover::after {
  width: 100%;                   /* animate underline */
}
/* Header Background */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.navbar-logo {
  height: 60px;
  filter: none;  /* show your real logo colors */
  transition: transform 0.2s;
}

/* Navbar Links */
.navbar-menu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.navbar-menu a {
  position: relative;
  color: var(--nv-darkgreen);   /* dark-green text */
  text-decoration: none;
  font-weight: 600;
  padding: 6px 0;
  transition: color 0.2s;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--nv-orange);  /* orange underline */
  transition: width 0.3s;
}

.navbar-menu a:hover {
  color: var(--nv-orange);
}
.navbar-menu a:hover::after {
  width: 100%;
}
/* ===== Contact Section ===== */
.contact-section {
  padding: 42px 10px 60px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.contact-section h2 {
  font-size: 2.2rem;
  color: var(--nv-darkgreen);
  margin-bottom: 24px;
  font-weight: 700;
}

.map-container {
  width: 100%;
  height: 300px;
  margin-bottom: 32px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(36,123,110,0.15);
}

.form-wrapper {
  max-width: 500px;
  margin: auto;
  text-align: left;
}

.form-error-block {
  margin-bottom: 20px;
}
.form-error {
  color: #d9534f;
  font-size: 0.95rem;
  margin: 4px 0;
}
.form-success {
  color: #28a745;
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ececec;
  border-radius: 7px;
  padding: 12px;
  font-size: 1rem;
  margin-bottom: 18px;
  background: #f9f9f9;
  transition: border 0.2s, background 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--nv-orange);
  background: #fff;
}

.contact-form .cta-btn {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 8px;
}
/* ===== Contact Two-Column Layout ===== */
.contact-section {
  padding: 42px 10px 60px;
  max-width: 1000px;
  margin: auto;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--nv-darkgreen);
  margin-bottom: 32px;
  font-weight: 700;
}

/* Container for both map & form */
.contact-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left: Map */
.map-container {
  flex: 1;
  height: 350px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(36,123,110,0.15);
}

/* Right: Form */
.form-wrapper {
  flex: 1;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ececec;
  border-radius: 7px;
  padding: 12px;
  font-size: 1rem;
  margin-bottom: 18px;
  background: #f9f9f9;
  transition: border 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--nv-orange);
  background: #fff;
}
.form-error-block { margin-bottom: 20px; }
.form-error {
  color: #d9534f;
  font-size: 0.95rem;
  margin: 4px 0;
}
.form-success {
  color: #28a745;
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}
.contact-form .cta-btn {
  width: 100%;
  margin-top: 8px;
}

/* Responsive: stack on small screens */
@media (max-width: 800px) {
  .contact-content {
    flex-direction: column;
  }
  .map-container {
    height: 250px;
  }
}

/* ===== About Page Styles ===== */

/* Hero/Banner */
.about-hero {
  background: linear-gradient(120deg, #f6eadb 75%, #f2b44115);
  padding: 60px 16px;
  text-align: center;
}
.about-hero-content h1 {
  font-size: 2.8rem;
  color: var(--nv-darkgreen);
  margin-bottom: 12px;
}
.about-hero-content p {
  font-size: 1.15rem;
  color: #333;
  max-width: 700px;
  margin: auto;
}

/* Who We Are */
.about-info {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 16px;
}
.info-image {
  flex: 1;
}
.info-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(36,123,110,0.15);
}
.info-text {
  flex: 1;
}
.info-text h2 {
  font-size: 2.2rem;
  color: var(--nv-darkgreen);
  margin-bottom: 16px;
  font-weight: 700;
}
.info-text p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Our Values */
.about-values {
  background: #fff;
  padding: 60px 16px;
  text-align: center;
}
.about-values h2 {
  font-size: 2.4rem;
  color: var(--nv-darkgreen);
  margin-bottom: 36px;
  font-weight: 800;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: auto;
}
.value-card {
  background: var(--nv-cream);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(36,123,110,0.12);
  padding: 32px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(243,111,69,0.2);
}
.value-icon {
  font-size: 2.6rem;
  margin-bottom: 12px;
  color: var(--nv-orange);
}
.value-card h3 {
  font-size: 1.3rem;
  color: var(--nv-darkgreen);
  margin-bottom: 10px;
}
.value-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 860px) {
  .about-info {
    flex-direction: column;
    text-align: center;
  }
  .info-image, .info-text {
    width: 100%;
  }
}
/* ===== Shop Page Styles ===== */
.shop-section {
  padding: 50px 16px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.shop-section h2 {
  font-size: 2.4rem;
  color: var(--nv-darkgreen);
  margin-bottom: 36px;
  font-weight: 700;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(36,123,110,0.12);
  padding: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(243,111,69,0.2);
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
.product-card h4 {
  color: var(--nv-darkgreen);
  font-size: 1.1rem;
  margin: 0 0 8px;
  flex-grow: 1;
}
.price {
  font-size: 1.1rem;
  color: var(--nv-orange);
  font-weight: 700;
  margin-bottom: 12px;
}
.product-card .cta-btn {
  background: var(--nv-gold);
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.product-card .cta-btn:hover {
  background: var(--nv-orange);
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .product-card img {
    height: 140px;
  }
}


/* ===== Blog Listing ===== */
.blog-section {
  padding: 50px 16px;
  max-width: 1100px;
  margin: auto;
}
.blog-section h2 {
  font-size: 2.4rem;
  color: var(--nv-darkgreen);
  margin-bottom: 24px;
  text-align: center;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 28px;
}
.post-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(36,123,110,0.12);
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.post-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
.post-card h3 {
  color: var(--nv-darkgreen);
  font-size: 1.2rem;
  margin: 8px 0;
}
.post-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 12px;
}
.post-excerpt {
  flex-grow: 1;
  color: #444;
}
.read-more {
  align-self: flex-start;
  margin-top: 12px;
  color: var(--nv-orange);
  font-weight: 600;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}

/* ===== Blog Detail ===== */
.post-detail {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 16px;
}
.post-banner {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
}
.post-content h1 {
  font-size: 2.4rem;
  color: var(--nv-darkgreen);
  margin-bottom: 12px;
}
.post-content .post-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 24px;
}
.post-body {
  color: #444;
  line-height: 1.7;
}
/* Make room for the eye icon */
.password-group input {
  padding-right: 44px;    /* ensure input text doesn’t overlap icon */
}

/* Position & style the toggle icon */
.password-group {
  position: relative;
}
.password-group .toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--nv-darkgreen);
  user-select: none;
  z-index: 2;
}

/* On hover, give it a subtle color shift */
.password-group .toggle-password:hover {
  color: var(--nv-orange);
}


/* 기존에 circle ஐச் செய்யும் விதத்தில் இருந்தது */
/*
.team-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--nv-gold);
  margin-bottom: 18px;
}
*/

/* 1) 완전 사각형으로 변경 (border-radius 제거) */
.team-card img {
  width: 100%;
  height: auto;               /* 원하는 높이를 வரையறுக்கலாம் */
  object-fit: cover;
  border-radius: 0;           /* 사선 없는 정사각/직사각 */
  border: 3px solid var(--nv-gold);
  margin-bottom: 18px;
}

/* 또는 2) 약간 둥근 모서리 rectangle */
.team-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;         /* 모서리만 살짝 둥글게 */
  border: 3px solid var(--nv-gold);
  margin-bottom: 18px;
}

