/* ==========================================
   1. GLOBAL STYLES (Applies to All Pages)
   ========================================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f2f3f7;
    color: #333;
    line-height: 1.6;
}
header {
    background: linear-gradient(135deg, #4b6cb7, #182848);
    color: white;
    text-align: center;
    padding: 60px 20px 20px;
}
/* Nav is usually universal, so we keep it global */
nav {
    text-align: center;
    margin: 20px 0;
}

nav a {
    display: inline-block;
    background-color: #4b6cb7;
    color: #fff;
    text-decoration: none;
    margin: 5px 10px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #364f9f;
}

footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 0.95rem;
    margin-top: 50px;
}
.footer-box {
  max-width: 1000px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 35px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-item {
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.footer-item h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #fff;
}

.footer-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #bfc6ff;
  text-decoration: none;
  font-size: 1rem;
  margin: 6px 0;
}

.footer-item a:hover {
  text-decoration: underline;
}

.newsletter-btn {
  display: inline-block;
  background: #4b6cb7;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: #364f9f;
}

/* Footer icons SVG */
.footer-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Social brand colors */
.social-link.instagram svg { fill: #E1306C; }
.social-link.tiktok svg { fill: #69C9D0; }
.social-link.youtube svg { fill: #FF0000; }

.footer-bottom {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
}

@media (max-width: 700px) {
  .footer-box {
    flex-direction: column;
    text-align: center;
  }

  .footer-item {
    margin-bottom: 15px;
  }

  .footer-item a {
    justify-content: center;
  }
}



/* ==========================================
   2. HOME PAGE ONLY (.home)
   ========================================== */
.home header {
    background: linear-gradient(135deg, #4b6cb7, #182848);
    color: white;
    text-align: center;
    padding: 60px 20px 20px;
    position: relative;
}

.home .logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.home .banner {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    font-size: 1.2rem;
    margin-top: 10px;
    border-radius: 5px;
}

.home header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.home header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.home .quote-box {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-left: 5px solid #4b6cb7;
    font-style: italic;
    font-size: 1.3rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.home .founder-message {
    background: #fff;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    border-left: 4px solid #182848;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.home .founder-message h2 {
    color: #182848;
    margin-bottom: 15px;
}

.home section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.home section h2 {
    font-size: 2rem;
    color: #4b6cb7;
    margin-bottom: 10px;
}

.home .stat-box {
    flex: 1 1 250px;
    background: #ffffff;
    border-left: 5px solid #4b6cb7;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
/* ==========================================
   3. ABOUT PAGE ONLY (.about)
   ========================================== */
.about header {
    background: linear-gradient(135deg, #4b6cb7, #182848);
    color: white;
    padding: 50px 20px 30px;
    text-align: center;
}

.about header h1 { font-size: 2.8em; margin: 0; }

.about .founder-section {
    display: flex;
    flex-wrap: wrap;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
    margin: 40px 0;
    align-items: center;
}

.about .founder-image img {
    max-width: 220px;
    border-radius: 50%;
    border: 4px solid #4b6cb7;
}

.about .what-we-do {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
}

.about .wwd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.about .wwd-item {
    background: #f8f9fc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease;
}

.about .wwd-item:hover { transform: translateY(-5px); }

/* Unified Social Section (can be used on any page) */
.social-section {
    text-align: center;
    margin-top: 40px;
}

.social-section a {
    font-size: 1.6em;
    color: #4b6cb7;
    margin: 0 10px;
    text-decoration: none;
}
/* ==========================================
   4. CONSENT/TERMS PAGE ONLY (.consent)
   ========================================== */

/* ==========================================
   5. CONSENT/TERMS PAGE ONLY (.contact)
   ========================================== */
main {
    flex: 1;
    display: flex;
    flex-direction: column; 
    align-items: center;    /* Centers items horizontally */
    justify-content: center; /* Centers items vertically */
    padding: 40px 20px;
    gap: 30px;              /* Space between Contact card and Video card */
  }

  /* Contact Card Styling */
  .message-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: left; /* Keeps text inside card left-aligned */
  }

  .message-box h2 {
    color: #4b6cb7;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
  }

  .message-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
  }

  .message-box a {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4b6cb7;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
/* ==========================================
   6. FAQ PAGE ONLY (.faq)
   ========================================== */
.faq main {
    max-width: 900px;
    margin: 30px auto 60px;
}

.faq .faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq .faq-question {
    background-color: #182848;
    color: #fff;
    cursor: pointer;
    padding: 18px 24px;
    font-weight: bold;
    position: relative;
}

.faq .faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    transition: transform 0.3s ease;
}

.faq .faq-question.active::after { content: '-'; }

.faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    padding: 0 24px;
    transition: max-height 0.35s ease;
}

.faq .faq-answer.open {
    padding: 18px 24px;
    max-height: 500px;
}
/* ==========================================
   7. FOUNDER STORY ONLY (.founderstory)
   ========================================== */
.founderstory .container {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.founderstory .story-image {
    text-align: center;
    margin-bottom: 30px;
}

.founderstory .story-image img {
    max-width: 250px;
    width: 100%;
    border-radius: 50%;
    border: 4px solid #4b6cb7;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.founderstory p {
    font-size: 1.1em;
    text-align: justify;
}
/* ==========================================
   8. NEWSLETTERS PAGE ONLY (.newsletters)
   ========================================== */

/* Header */
.newsletters .page-header {
  background: linear-gradient(180deg, #4b6cb7, #2c3e70);
  color: white;
  text-align: center;
  padding: 80px 20px 120px;
  margin-top: 0px; /* offset for nav */
}

/* Main layout */
.newsletters .newsletter-page {
  max-width: 900px;
  margin: -80px auto 80px;
  padding: 0 20px;
}

/* Grid layout */
.newsletters .newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Card styling */
.newsletters .newsletter-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

/* Headings + spacing */
.newsletters .newsletter-card h2 {
  margin-top: 0;
}

.newsletters .newsletter-card p {
  margin-bottom: 20px;
}

/* Primary button */
.newsletters .primary-btn {
  display: inline-block;
  background: #4b6cb7;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
}

.newsletters .primary-btn:hover {
  background: #364f9f;
}

/* ===============================
   Newsletter Preview Embed
   =============================== */

.newsletters .newsletter-iframe {
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.newsletters .newsletter-iframe iframe {
  width: 100%;
  height: 400px; /* adjust if needed */
  border: none;
  background: #fff;
}

/* ===============================
   Brevo Signup Embed
   =============================== */

.newsletters .brevo-embed iframe {
  width: 100%;
  height: 400px;
  border: none;
  overflow: hidden;
}

/* Mobile stack */
@media (max-width: 768px) {
  .newsletters .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .newsletters .newsletter-iframe iframe,
  .newsletters .brevo-embed iframe {
    height: 600px;
  }
}
.container {
  display: flex;
  flex-direction: column; /* Stacks nav bar on top of cards */
  gap: 200px; /* Adds breathing room between them */
}

.cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px; /* Spaces the cards apart horizontally */
}


/* ==========================================
   9. SHARE YOUR STORY ONLY (.share-your-story)
   ========================================== */
.share-your-story main {
    max-width: 850px;
    margin: 40px auto 60px;
    background: white;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #444;
}

.share-your-story form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.share-your-story label {
    margin-bottom: 8px;
    font-weight: bold;
}

.share-your-story input, 
.share-your-story textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.share-your-story button {
    background-color: #4b6cb7;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    max-width: 200px;
    align-self: center;
    transition: background-color 0.3s ease;
}

.share-your-story button:hover { background-color: #364f9f; }

.share-your-story .consent-text { /* Renamed from .consent to avoid conflict */
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
    text-align: center;
}
/* ==========================================
   10. SPOTLIGHTS PAGE ONLY (.spotlights)
   ========================================== */

/* ==========================================
   11. TESTIMONIALS PAGE ONLY (.testimonials)
   ========================================== */
.testimonials main {
    max-width: 800px;
    margin: 40px auto 60px;
    background: white;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonials .testimonial {
    border-left: 5px solid #4b6cb7;
    background-color: #e7f0ff;
    margin-bottom: 25px;
    padding: 20px 25px;
    border-radius: 5px;
    font-style: italic;
    position: relative;
}

/* The Quote Mark */
.testimonials .testimonial::before {
    content: "“";
    font-size: 3rem;
    position: absolute;
    top: 10px;
    left: 15px;
    color: #4b6cb7;
    font-family: serif;
    opacity: 0.3; /* Adjusted for better text readability */
}

.testimonials .author {
    font-weight: bold;
    font-style: normal;
    text-align: right;
    color: #2c3e50;
    display: block;
}
/* ==========================================
   12. THREE YEAR ANNIVERSARY ONLY (.threeyear)
   ========================================== */
.threeyear {
    font-family: 'Plus+Jakarta+Sans', sans-serif;
    background-color: #0f172a; /* Deep Slate */
    background-image: radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.1) 0, transparent 50%), 
                      radial-gradient(at 100% 100%, rgba(99, 102, 241, 0.1) 0, transparent 50%);
    color: #f1f5f9;
    /* Removed min-height: 100vh to stop the footer from being pushed too far down */
}

/* This part REMOVES the home.html blue theme from the header */
.threeyear header {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
}

.threeyear header h1 {
    color: #10b981; /* Special green for anniversary */
    font-size: 3rem;
}

/* This part REMOVES the blue theme from the navigation */
.threeyear nav {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
}

.threeyear nav a {
    background-color: transparent;
    border: 1px solid #10b981;
}

.threeyear nav a:hover {
    background-color: #10b981;
    color: #0f172a;
}

/* Timeline logic */
.threeyear .timeline-container {
    position: relative;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}

.threeyear .timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #10b981 0%, #3b82f6 100%);
    transform: translateX(-50%);
}

.threeyear footer {
    margin-top: 10px; /* Brings footer closer to the content */
    background: #020617;
}

.threeyear .milestone-dot {
    width: 20px;
    height: 20px;
    background: #10b981;
    border: 4px solid #0f172a;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .threeyear .timeline-container::before { left: 20px; }
    .threeyear .milestone-dot { left: 20px; }
}

/* ==========================================
   13. TOS PAGE ONLY (.tos-page)
   ========================================== */

.tos-page .page-header {
  background: linear-gradient(180deg, #4b6cb7, #2c3e70);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.tos-page .page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tos-page .page-header p {
  font-size: 18px;
  opacity: 0.9;
}
.tos-page {
  background: #f4f6f9;
}

.tos-page main {
  max-width: 900px;
  margin: -60px auto 80px;
  background: #fff;
  padding: 50px 60px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.tos-page h2 {
  color: #4b6cb7;
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 15px;
}

.tos-page p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}
.tos-page section {
  margin-bottom: 30px;
}