/* =============================================================================
   Empowered Pelvic Movement — styles.css
   Consolidated stylesheet for all pages.
   Replaces all <style> blocks in every HTML file.
   Link in every page: <link rel="stylesheet" href="css/styles.css">
   ============================================================================= */


/* =============================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================================= */
:root {
    /* Brand Colours */
    --color-lime:        #A8D48D;
    --color-lime-bright: #90C97E;
    --color-lime-dark:   #6DAA4D;
    --color-pink:        #E91E8C;
    --color-pink-light:  #F4A0D8;
    --color-pink-mid:    #E75A9E;
    --color-blue:        #4A5FCC;
    --color-blue-light:  #87CDED;
    --color-blue-sky:    #A5D9F0;
    --color-blue-mid:    #6B8FC9;
    --color-blue-deep:   #4BAED8;
    --color-teal:        #1E7B6A;
    --color-teal-bright: #2D9B85;
    --color-teal-mid:    #18AE9F;
    --color-teal-muted:  #145548;
    --color-charcoal:    #2D2D2D;
    --color-gray:        #555555;
    --color-gray-light:  #666666;
    --color-gray-muted:  #999999;
    --color-bg-light:    #F8F9FA;
    --color-white:       #FFFFFF;

    /* Typography */
    --font-primary:   'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
    --font-secondary: 'Georgia', serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-max:   1200px;
}


/* =============================================================================
   2. RESET & BASE
   ============================================================================= */
*  { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    color: var(--color-charcoal);
    line-height: 1.7;
    font-size: 16px;
    background-color: var(--color-white);
}

img{ max-width: 100%; height: auto; }


/* =============================================================================
   3. TYPOGRAPHY
   ============================================================================= */
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.3; margin-bottom: 1rem; }

h1 { font-size: 2.75rem; color: var(--color-lime); }
h2 { font-size: 2.25rem; color: var(--color-lime); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
p  { margin-bottom: 1.25rem; }

a { color: var(--color-lime); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-pink); }


/* =============================================================================
   4. LAYOUT
   ============================================================================= */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }

.section { padding: var(--section-padding); }

/* Narrow container variants */
.container-narrow-700  { max-width: 700px;  margin: 0 auto; }
.container-narrow-900  { max-width: 900px;  margin: 0 auto; }
.container-narrow-1000 { max-width: 1000px; margin: 0 auto; }

/* Grid utilities */
.grid-2-col-centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}
.grid-autofit-300 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.flex-center-wrap {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.flex-col-gap-20 { display: flex; flex-direction: column; gap: 20px; }

.justify-content-start{ justify-content: flex-start; }


/* =============================================================================
   5. HEADER & NAVIGATION
   ============================================================================= */
header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky !important;
    top: 0px !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
}

nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }

.logo { display: flex; align-items: center; gap: 12px; font-size: 1.25rem; font-weight: 700; color: var(--color-lime); line-height: normal; }
.logo img { height: 50px; width: auto; }

.nav-links { display: flex; list-style: none; gap: 1.2rem; align-items: center; }
.nav-links a { font-weight: 500; color: var(--color-charcoal); transition: color 0.3s ease; }
.nav-links a:hover,
.nav-links a.active { color: var(--color-lime); }

/* Nav icon (used in all pages) */
.nav-icon-sm,
.nav-links-iconmenu { width: 20px; height: 20px; vertical-align: middle; margin-right: 6px; }

.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.75rem; color: var(--color-lime); cursor: pointer; }

/* ── Per-page logo accent colours ── */
/* index.html  — Royal Blue */
.page-index  header .logo,
.page-index  header .logo span { color: #4A5FCC !important; }
.page-index  header .logo img  { filter: none !important; opacity: 1 !important; }
.page-index  header            { filter: none !important; backdrop-filter: none !important; z-index: 9 !important; }

/* about.html  — Pink */
.page-about  header .logo span { color: var(--color-pink) !important; }

/* education.html — Lime Green */
.page-education header .logo span { color: var(--color-lime) !important; }

/* events.html — Royal Blue */
.page-events header .logo span { color: var(--color-blue) !important; }

/* calendar.html — Light Blue */
.page-calendar header .logo span { color: var(--color-blue-light) !important; }

/* free-resources.html — Dark Teal */
.page-resources header .logo span { color: var(--color-teal) !important; }

/* contact.html — Charcoal */
.page-contact header .logo span { color: var(--color-charcoal) !important; 
    /* line-height: normal; */
}


/* =============================================================================
   6. HERO SECTIONS
   ============================================================================= */

/* Default / original hero */
.hero {
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-lime-bright) 100%);
    color: var(--color-white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.4;
}
.hero-content  { position: relative; z-index: 1; }
.hero h1       { color: var(--color-white); font-size: 3.25rem; margin-bottom: 1.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); }
.hero p        { font-size: 1.35rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.95; }

/* Standard page hero padding (shared by about, education, events, resources, contact, walk-and-talk) */
.hero-padded { padding: 80px 0; }

/* Per-page hero gradient variants */
.hero-gradient-pink      { padding: 80px 0; background: linear-gradient(135deg, var(--color-pink)       0%, var(--color-pink-light)  100%); }
.hero-gradient-lime      { padding: 80px 0; background: linear-gradient(135deg, var(--color-lime)       0%, var(--color-lime-bright) 100%); }
.hero-gradient-blue      { padding: 80px 0; background: linear-gradient(135deg, var(--color-blue)       0%, var(--color-blue-mid)    100%); }
.hero-gradient-lightblue { padding: 80px 0; background: linear-gradient(135deg, var(--color-blue-light) 0%, var(--color-blue-sky)    100%); }
.hero-gradient-teal      { padding: 80px 0; background: linear-gradient(135deg, var(--color-teal)       0%, var(--color-teal-bright) 100%); }
.hero-gradient-dark      { padding: 80px 0; background: linear-gradient(135deg, var(--color-charcoal)   0%, #4A4A4A                  100%); }

/* Homepage-specific hero */
.home-heropart {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(168,212,141,0.08) 0%, rgba(255,255,255,1) 50%, rgba(168,212,141,0.08) 100%);
}
.home-heropart-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.home-hero-thumb-left    { text-align: center; position: relative; }
.home-hero-thumb         { width: 100%; max-width: 350px; border-radius: 12px; box-shadow: 0 8px 30px rgba(168,212,141,0.3); }
.home-hero-thumb-label   {
    position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-light) 100%);
    color: white; padding: 10px 20px; border-radius: 25px; font-weight: 600;
    font-size: 0.95rem; text-align: center; box-shadow: 0 4px 10px rgba(233,30,140,0.3); white-space: nowrap;
}
.home-hero-thumb-label span { font-size: 0.85rem; font-weight: 500; }
.home-hero-content h1 { color: var(--color-blue);  font-size: 2.75rem; margin-bottom: 1rem; }
.home-hero-content h2 { color: #1B6B5F; font-size: 1.75rem; font-weight: 500; margin-bottom: 1.5rem; }
.home-hero-content h4 { color: #1B6B5F; margin-bottom: 1.5rem; font-size: 1.25rem; }

/* Homepage watermark butterfly */
.page-index body {
    background: linear-gradient(to bottom, rgba(168,212,141,0.02) 0%, rgba(255,255,255,1) 50%, rgba(168,212,141,0.02) 100%);
    position: relative;
}
.page-index body::before {
    content: ''; position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 600px;
    background: url('../images/epm-logo-green-dark.png') no-repeat center / contain;
    opacity: 0.20; z-index: 0; pointer-events: none;
}
.page-index header,
.page-index section,
.page-index footer { position: relative; z-index: 1; }


/* =============================================================================
   7. BUTTONS
   ============================================================================= */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 50px;
    font-weight: 600; text-align: center; cursor: pointer;
    transition: all 0.3s ease; border: 2px solid transparent; font-size: 1rem;
}
.btn-primary { background: var(--color-lime); color: var(--color-white) !important;}
.btn-primary:hover { background: var(--color-pink); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(168,212,141,0.3); }

.btn-secondary { background: var(--color-white); color: var(--color-lime); }
.btn-secondary:hover { background: var(--color-bg-light); transform: translateY(-2px); }

.btn-outline { background: transparent; border-color: var(--color-white); color: var(--color-white); }
.btn-outline:hover { background: var(--color-white); color: var(--color-lime); }

.btn-pink     { background-color: var(--color-pink);  border-color: var(--color-pink);  color: var(--color-white) !important; }
.btn-green-2  { background-color: var(--color-teal-mid)  !important; border-color: var(--color-teal-mid);  color: var(--color-white) !important; }
.btn-white    { background-color: var(--color-white)  !important; border-color: var(--color-white); color: var(--color-lime); }

.btn-glass {
    border: 2px solid white; color: white;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(5px);
    font-weight: 600; padding: 14px 32px;
}


/* =============================================================================
   8. CARDS
   ============================================================================= */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 3rem; }
.card {
    background: var(--color-white); border-radius: 12px; padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }

.card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--color-lime), var(--color-lime-bright));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; font-size: 1.75rem; color: var(--color-white);
}
.card h3 { color: var(--color-lime); margin-bottom: 1rem; }

/* Card border accent variants */
.card-border-pink  { margin-bottom: 1.5rem; border-left: 4px solid var(--color-pink-light); }
.card-border-green { margin-bottom: 1.5rem; border-left: 4px solid var(--color-lime-bright); }
.card-border-blue  { margin-bottom: 1.5rem; border-left: 4px solid var(--color-blue-light); }
.card-border-teal  { margin-bottom: 1.5rem; border-left: 4px solid var(--color-teal); }

.card-mb-1-5 { margin-bottom: 1.5rem; }
.card-mb-2   { margin-bottom: 2rem; }
.card-padded-lg { padding: 3rem 2rem; }

/* Box with highlight border */
.box-with-red-grid {
    background: linear-gradient(135deg, rgba(168,212,141,0.15) 0%, rgba(233,30,140,0.1) 100%);
    padding: 2rem; border-radius: 12px; border-left: 4px solid var(--color-pink); margin: 2rem 0;
}


/* =============================================================================
   9. IMAGES
   ============================================================================= */
.img-rounded { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.img-rounded img { width: 100%; height: auto; display: block; }

.img-full-auto { width: 100%; height: auto; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.img-box-sm   { height: 300px; overflow: hidden; }
.img-box-lg   { height: 300px; overflow: hidden; }
.img-cover    { width: 100% !important; height: 100% !important; object-fit: cover; }
.img-cover-offset { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.community-action-sec .gallery-grid .community-img-5 {
    height: 100% !important;
}


/* =============================================================================
   10. ABOUT SECTION
   ============================================================================= */
.about-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 2rem; }
.about-image  { position: relative; }
.about-image img { width: 100%; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }


/* =============================================================================
   11. EVENTS
   ============================================================================= */
.event-card {
    background: var(--color-white); border-left: 4px solid var(--color-lime);
    padding: 1.5rem; margin-bottom: 1.5rem; border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: all 0.3s ease;
}
.event-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); transform: translateX(5px); }
.event-date    { display: inline-block; background: var(--color-pink); color: var(--color-white); padding: 8px 16px; border-radius: 6px; font-weight: 600; margin-bottom: 1rem; }
.event-title   { font-size: 1.5rem; color: var(--color-lime); margin-bottom: 0.5rem; }
.event-details { color: var(--color-gray-light); margin-bottom: 1rem; }


/* =============================================================================
   12. CALENDAR
   ============================================================================= */
.calendar-container  { background: white; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); overflow: hidden; }
.calendar-header     { background: linear-gradient(135deg, var(--color-blue-light) 0%, var(--color-blue-sky) 100%); padding: 1.5rem; text-align: center; }
.calendar-month-title { color: white; margin: 0; font-size: 1.75rem; }
.calendar-grid       { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; border: 1px solid #e0e0e0; }
.calendar-day-header { background: #f5f5f5; padding: 12px; text-align: center; font-weight: 600; border-right: 1px solid #e0e0e0; border-bottom: 2px solid var(--color-blue-light); }

.cal-cell     { padding: 15px; min-height: 100px; border-right: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }
.border-r-0   { border-right: none !important; }
.border-b-0   { border-bottom: none !important; }
.bg-empty     { background: #fafafa; }
.cal-date-num { font-weight: 600; margin-bottom: 8px; }

.bg-highlight-blue   { background: #e3f5ff; }
.bg-highlight-yellow { background: #fff8e6; }
.event-badge-blue    { background: var(--color-blue);  color: white; padding: 6px 8px; border-radius: 6px; font-size: 0.85rem; margin-bottom: 4px; }
.event-badge-pink    { background: var(--color-pink);  color: white; padding: 6px 8px; border-radius: 6px; font-size: 0.85rem; margin-bottom: 4px; }

.calendar-legend     { padding: 1.5rem; background: #f9f9f9; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.legend-item         { display: flex; align-items: center; gap: 8px; }
.legend-color-box    { width: 16px; height: 16px; border-radius: 4px; }
.legend-text         { font-size: 0.9rem; color: var(--color-gray); }

.bg-royal-blue  { background: var(--color-blue); }
.bg-magenta     { background: var(--color-pink); }
.bg-lime-green  { background: var(--color-lime); }
.bg-teal-dark   { background: var(--color-teal); }


/* =============================================================================
   13. CONTACT / FORM
   ============================================================================= */
.form-container-500   { max-width: 500px; margin: 0 auto; }
.form-group-mb-1-5    { margin-bottom: 1.5rem; text-align: left; }
.form-label-block     { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-control-input   { width: 100%; padding: 12px 18px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; font-family: inherit; }
.checkbox-group-col   { display: flex; flex-direction: column; gap: 0.75rem; }
.checkbox-label-flex  { display: flex; align-items: center; gap: 0.5rem; font-weight: 400; }
.form-disclaimer-text { font-size: 0.85rem; color: var(--color-gray-muted); margin-top: 1rem; }
.form-message-box     { margin-top: 1.5rem; display: none; }

.container-narrow-700-center { max-width: 700px; margin: 0 auto; text-align: center; }
.icon-centered-mb-1-5        { margin: 0 auto 1.5rem; }
.flex-center-wrap-gap-1-5-mb2 { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }

/* Social pill buttons */
.social-pill-btn {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 12px 24px; color: white; border-radius: 50px;
    font-weight: 600; transition: transform 0.3s ease; text-decoration: none;
}
.social-pill-btn:hover { transform: translateY(-2px); }
.bg-gradient-facebook { background: linear-gradient(135deg, var(--color-blue-deep), #3B8AB8); }
.bg-gradient-dark     { background: linear-gradient(135deg, var(--color-charcoal), #1A1A1A); }
.bg-gradient-youtube  { background: linear-gradient(135deg, #FF0000, #CC0000); }
.icon-size-lg         { font-size: 1.25rem; }


/* =============================================================================
   14. TESTIMONIALS (Walk & Talk page)
   ============================================================================= */
.testimonial-base   { background: linear-gradient(135deg, #F8F9FA, #E8F5F3); }
.border-l-teal      { border-left: 4px solid var(--color-teal); }
.border-l-green     { border-left: 4px solid var(--color-lime-bright); }
.border-l-blue      { border-left: 4px solid var(--color-blue-light); }
.testimonial-text   { font-style: italic; color: var(--color-gray); }
.testimonial-author { font-weight: 600; color: var(--color-teal); margin-top: 1rem; }


/* =============================================================================
   15. PARTNER / ECOSYSTEM SECTION
   ============================================================================= */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}
.partner-grid .rwh-logo { margin-inline: auto; max-width: 280px; margin-bottom: 20px; }
.partner-card-featured {
    background-image: url('https://www.genspark.ai/api/files/s/keqiTtBj');
    background-size: contain; background-position: center 20%; background-repeat: no-repeat;
    background-color: var(--color-teal-mid);
    aspect-ratio: 1 / 1;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 1.5rem; position: relative;
}


/* =============================================================================
   16. HOMEPAGE SECTIONS
   ============================================================================= */
.quick-intro-banner { background: linear-gradient(135deg, rgba(168,212,141,0.2) 0%, rgba(233,30,140,0.15) 100%); padding: 30px 0; }
.quick-intro-banner p { font-size: 1.25rem; max-width: 800px; margin: 0 auto; color: var(--color-gray); }

.home-more-about-alexandra { background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(168,212,141,0.05) 100%); }
.home-more-about-alexandra .container { max-width: 900px; }

.home-joinOurCommunity { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.home-myPhilosophy     { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
.home-credentials-wrapper { max-width: 800px; margin: 0 auto; }


/* =============================================================================
   17. GRADIENT BACKGROUNDS (card / section variants)
   ============================================================================= */
.bg-gradient-light        { background: linear-gradient(135deg, rgba(168,212,141,0.06) 0%, rgba(255,255,255,1) 50%, rgba(168,212,141,0.06) 100%); }
.bg-gradient-light-green  { background: linear-gradient(135deg, rgba(168,212,141,0.08) 0%, rgba(255,255,255,1) 100%); }
.bg-gradient-pink-dark    { background: linear-gradient(135deg, var(--color-pink-light), var(--color-pink-mid)); }
.bg-gradient-pink-bright  { background: linear-gradient(135deg, var(--color-pink), var(--color-pink-light)); }
.bg-gradient-green-dark   { background: linear-gradient(135deg, var(--color-lime-bright), var(--color-lime-dark)); }
.bg-gradient-lime         { background: linear-gradient(135deg, var(--color-lime), var(--color-lime-bright)); }
.bg-gradient-blue-dark    { background: linear-gradient(135deg, var(--color-blue-light), var(--color-blue-deep)); }
.bg-gradient-indigo-dark  { background: linear-gradient(135deg, var(--color-blue), var(--color-blue-mid)); }
.bg-gradient-teal-dark    { background: linear-gradient(135deg, var(--color-teal), var(--color-teal-muted)); }
.bg-gradient-teal-bright  { background: linear-gradient(135deg, var(--color-teal), var(--color-teal-bright)); }


/* =============================================================================
   18. FOOTER
   ============================================================================= */
footer { background: var(--color-charcoal); color: var(--color-white); padding: 60px 0 30px; }

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 2rem; }

.footer-section h4      { color: var(--color-pink); margin-bottom: 1.5rem; }
.footer-section ul      { list-style: none; }
.footer-section ul li   { margin-bottom: 0.75rem; }
.footer-section a       { color: rgba(255,255,255,0.8); }
/* .footer-section a:hover { color: var(--color-pink); } */

.footer-email-WhatsApp{ margin-top: 22px; display: flex; gap: 10px; }
.footer-email-WhatsApp .btn-outline{ padding: 10px 25px; line-height: normal; }

.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-link  {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; background: rgba(255,255,255,0.1);
    border-radius: 50%; transition: all 0.3s ease;
}
.social-link:hover { background: var(--color-pink); transform: translateY(-3px); }

.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.footer-logo-wrapper { display: flex; align-items: center; gap: 15px; }
.footer-logo-wrapper .inner-footer-logo { display: flex; width: 70px; height: 70px; }


/* Newsletter form */
.newsletter-form { display: flex; gap: 10px; margin-top: 1rem; max-width: 400px; }
.newsletter-form input  { flex: 1; padding: 12px 18px; border: 1px solid #ddd; border-radius: 50px; font-size: 1rem; }
.newsletter-form button { padding: 12px 24px; background: var(--color-lime); color: var(--color-white); border: none; border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.newsletter-form button:hover { background: var(--color-pink); }


/* =============================================================================
   19. UTILITY CLASSES
   ============================================================================= */

/* Text colours */
.text-white       { color: white; }
.txtblue          { color: var(--color-blue) !important; }
.txtgreen         { color: var(--color-lime); }
.txtgreen-1       { color: #1B6B5F; }
.txtblack-1       { color: var(--color-charcoal); }
.txtpink          { color: var(--color-pink) !important; }
.txtgray          { color: var(--color-gray); }
.txtwhite         { color: var(--color-white); }
.text-pink        { color: var(--color-pink); }
.text-teal-dark   { color: var(--color-teal); }
.heading-light-green { color: var(--color-lime); }
.heading-pink-spaced { color: var(--color-pink); margin: 2rem 0 1.5rem; }
.heading-mt-2     { margin-top: 2rem; }

/* Text sizes */
.text-lg          { font-size: 1.15rem; }
.text-md-muted    { font-size: 1.1rem; color: var(--color-gray-light); }
.font-1-05        { font-size: 1.05rem; }
.font-1-1         { font-size: 1.1rem; }
.font-1-2         { font-size: 1.2rem; }
.text-meta        { color: var(--color-gray-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.resource-meta    { color: var(--color-gray-muted); font-size: 0.9rem; margin-top: 1rem; }

/* Text muted variants */
.text-muted       { color: var(--color-gray-light); }
.text-muted-list  { color: var(--color-gray-light); padding-left: 16px; }
.list-muted       { line-height: 2; color: var(--color-gray); font-size: 1.05rem; padding-left: 16px; }

/* Constrained text blocks */
.text-centered-constrained        { max-width: 700px; margin: 0 auto 2rem; color: var(--color-gray-light); }
.text-centered-constrained-mb0    { font-size: 1.15rem; max-width: 700px; margin: 0 auto; color: var(--color-gray-light); }
.text-constrained-700-mb3         { max-width: 700px; margin: 0 auto 3rem; color: var(--color-gray-light); }
.text-constrained-800-mb0         { font-size: 1.15rem; max-width: 800px; margin: 0 auto; color: var(--color-gray-light); }
.mission-subtitle                 { font-size: 1.25rem; max-width: 800px; margin: 0 auto 3rem; color: var(--color-gray-light); }
.myth-subtitle                    { font-size: 1.15rem; max-width: 700px; margin: 0 auto 3rem; color: var(--color-gray-light); }
.subtitle-gallery                 { font-size: 1.15rem; color: var(--color-gray-light); margin-bottom: 3rem; }
.subtitle-md-mb2                  { font-size: 1.1rem; color: var(--color-gray-light); margin-bottom: 2rem; }
.subtitle-800-mb3                 { font-size: 1.15rem; max-width: 800px; margin: 0 auto 3rem; color: var(--color-gray-light); }
.subtitle-lg-mb2                  { font-size: 1.15rem; margin-bottom: 2rem; color: var(--color-gray-light); }
.cta-subtitle                     { font-size: 1.2rem; margin-bottom: 2rem; }
.card-list-left                   { text-align: left; margin-top: 1rem; color: var(--color-gray-light); padding-left: 16px; }

/* Alignment */
.text-center   { text-align: center; }
.italic        { font-style: italic; }

/* Line height */
.lineh-1-7 { line-height: 1.7; }
.lineh-1-8 { line-height: 1.8; }
.lineh-2   { line-height: 2; }

/* Spacing — margin */
.m-0    { margin: 0 !important; }
.mt-1   { margin-top: 1rem; }
.mt-1-5 { margin-top: 1.5rem; }
.mt-2   { margin-top: 2rem; }
.mt-3   { margin-top: 3rem; }
.mb-0   { margin-bottom: 0rem !important; }
.mb-05   { margin-bottom: 0.5rem !important; }
.mb-1   { margin-bottom: 1rem; }
.mb-1-5 { margin-bottom: 1.5rem; }
.mb-2   { margin-bottom: 2rem; }
.mb-3   { margin-bottom: 3rem; }

/* Sizing */
.w-full { width: 100%; }

/* Background utilities */
.bg-light  { background-color: var(--color-bg-light); }
.bg-teal   { background-color: var(--color-lime); color: var(--color-white); }

/* Link */
.link-pink-bold { color: var(--color-pink); font-weight: 600; }


/* =============================================================================
   20. ANIMATIONS
   ============================================================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease-out; }


/* =============================================================================
   21. RESPONSIVE
   ============================================================================= */
@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; }
    .home-heropart-wrapper { grid-template-columns: 1fr; }

    .nav-links {
        position: fixed; /*top: 70px;*/ left: -100%; flex-direction: column;
        background: var(--color-white); width: 100%; padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: left 0.3s ease;
        top: 80px;
    }
    .nav-links.active { left: 0; align-items: flex-start; }
    .mobile-menu-toggle { display: block; }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }
    .hero h1 { font-size: 2.5rem; }

    /* Force single-column on inner grids */
    section > .container > div { grid-template-columns: 1fr !important; gap: 30px !important; }

    .grid-2-col-centered { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    .gallery-grid        { grid-template-columns: 1fr !important; }
    .grid-2-col-centered { grid-template-columns: 1fr !important; }

    /* Calendar horizontal scroll on mobile */
    .calendar-grid { overflow-x: auto; display: block; white-space: nowrap; }
    .calendar-day-header,
    .cal-cell { display: inline-block; width: 120px; vertical-align: top; white-space: normal; }
    .border-r-0 { border-right: 1px solid #e0e0e0 !important; }
}

@media (max-width: 640px) {
    .card-grid          { grid-template-columns: 1fr; }
    .newsletter-form    { flex-direction: column; }
    .hero h1            { font-size: 2rem; }
    h1                  { font-size: 1.85rem; }
    h2                  { font-size: 1.6rem; }
}


/* 20-03-2026 css start */
.join-facebook-btn:hover {
    color: #fff;
}

/* faq sec css start */
 .faq-hero {
    background: linear-gradient(135deg, #4A5FCC 0%, #6B8FC9 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.faq-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 2rem;
    color: #4A5FCC;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #E91E8C;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-category-icon {
    min-width: 50px;
    min-height: 50px;
    background: linear-gradient(135deg, #E91E8C, #F4A0D8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.faq-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #E91E8C;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: linear-gradient(to right, rgba(168, 212, 141, 0.05), rgba(255, 255, 255, 1));
}

.faq-question:hover {
    background: linear-gradient(to right, rgba(168, 212, 141, 0.1), rgba(255, 255, 255, 1));
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #E91E8C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 15px 0;
    line-height: 1.8;
    color: #555;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.faq-answer strong {
    color: #E91E8C;
}

.faq-answer a {
    color: #4A5FCC;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    background: linear-gradient(135deg, rgba(168, 212, 141, 0.15), rgba(233, 30, 140, 0.1));
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}

.faq-cta h2 {
    color: #4A5FCC;
    margin-bottom: 20px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}
/* our community events action sec */
.our-community-events-action-sec .img-rounded img {
    height: 100%;
    object-fit: cover;
    object-position: 73% 100%;
}
/* video resources sec css  */
.video-resources-sec .educational-video video {
    height: 680px;
}
@media screen and (max-width:1250px) {
    .video-resources-sec ul.text-muted-list {
        padding-left: 30px;
    }
}
@media (max-width: 968px){
    .img-box-sm,
    .img-box-lg {
        height: 500px;
    }
}
@media (max-width: 768px) {
    .faq-cta{
        padding: 30px;
    }
    .faq-hero h1 {
        font-size: 2rem;
    }
    
    .faq-category-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}
@media (max-width: 624px){
    .img-box-sm,
    .img-box-lg {
        height: 330px;
    }
}
@media screen and (max-width:425px){
    .img-box-sm, .img-box-lg {
        height: 250px;
    }
}
@media screen and (max-width:415px) {
    .btn-glass {
        padding: 7px 24px;
    }
}
@media screen and (max-width:350px) {
    .btn-glass {
        padding: 4px 20px;
        font-size: 14px;
    }
}