@charset "UTF-8";
/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors (updated: background set to white) */
    --bg: #FFFFFF; /* page background */
    --primary: #4251A2; /* Main Brand Blue   */
    --secondary: #C066A4; /*Women Empowerment Pink*/
    --accent: #E9D4E3; /* Light Pink Background */
    --accent-light: #EEF1FF;    /* Light Blue Background */
    --hero-overlay: rgba(28, 34, 74, 0.58);
    --hero-overlay-strong: rgba(28, 34, 74, 0.78);
    --hero-surface: rgba(255, 255, 255, 0.12);
    --hero-surface-border: rgba(255, 255, 255, 0.22);
    --danger: #E53935; /* red */
    --white: #FFFFFF;
    --text-dark: #2B2A29; /* dark text for readability */
    --text-light: #6B7280; /* Secondary Text */
    --border: #E5E7EB; /* Border Color */
    --section-bg: #F8F9FC; /* Alternate Section Background */


    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-primary: var(--font-body);

    /* Spacing */
    --space-xs: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
}

/* ===== BASE STYLES ===== */
* , *::before, *::after {
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    font-family: var(--font-body);
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

a:hover {
    color: var(--primary);
    text-decoration: none !important;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

/* ===== TYPOGRAPHY ===== */
p {
    font-size: 15px;
    line-height: 26px;
    color: var(--text-dark);
    font-weight: 400;
    margin: 0 0 16px 0;
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    font-family: var(--font-heading);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }
.section-subtitle {  display: inline-block;  color: var(--secondary);  font-size: 15px;  font-weight: 700;  letter-spacing: 1px;  text-transform: uppercase;  margin-bottom: 14px;}
.bg-light {
    background-color: var(--bg) !important;
}

.content-section {
    padding: 70px 0;
}

.container {
    max-width: 1350px;
    /*margin: 0 auto;*/
    /*padding: 0 20px;*/
}

/* Wefeee header layout */
.wefeee-header { background: var(--bg); border-bottom: 1px solid var(--border); }
.wefeee-top { padding: 10px 0; }
.wefeee-top .wefeee-brand { display: flex; justify-content: center; }
.wefeee-logo { max-height: 90px; width: auto; display: block; }
.wefeee-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 1px 20px; }
.wefeee-nav { flex: 1 1 auto; }
.wefeee-menu { display: flex; gap: 12px; list-style: none; margin: 0; padding: 0; justify-content: center; }
.wefeee-menu li { margin: 0; }
.wefeee-menu a { color: #4251A2; font-size:15px; text-decoration: none; font-weight: 600; padding: 8px 6px; display: inline-block; }.wefeee-menu-toggle { display: none; background: transparent; border: 0; font-size: 22px; line-height: 1; }
.wefeee-mobile-nav {position: fixed;top: 0;  right: 0;  height: 100vh;width: 280px;  max-width: 80%;background: var(--bg);  box-shadow: -6px 0 30px rgba(0,0,0,0.12);transform: translateX(100%);transition: transform .32s cubic-bezier(.2,.9,.2,1), visibility .32s;z-index: 2000;padding-top: 80px;overflow-y: aut}
.wefeee-mobile-nav[hidden] { transform: translateX(100%); visibility: hidden; pointer-events: none; }
.wefeee-mobile-nav:not([hidden]) { transform: translateX(0); visibility: visible; pointer-events: auto; }
.wefeee-mobile-nav ul { list-style: none; margin: 0; padding: 8px 20px; }
.wefeee-mobile-nav li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.wefeee-mobile-nav a { color: var(--text-dark); font-weight: 700; text-decoration: none; font-size: 18px; display: block; }
.wefeee-mobile-nav a:hover { color: var(--primary); }
.wefeee-mobile-cta { display: inline-block; margin: 18px 20px; background: #3b0b3b; color: #fff; padding: 12px 20px; border-radius: 32px; text-align: center; font-weight: 800; box-shadow: 0 6px 18px rgba(59,11,59,0.18); }

/* Mobile adjustments */
@media (max-width: 900px) {
    .wefeee-top { padding: 12px 0; }
    .wefeee-logo { max-height: 72px; }
    .wefeee-bottom { padding: 8px 12px; }
    .wefeee-menu { display: none; }
    .wefeee-cta { display: none; }
    .wefeee-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .wefeee-top, .wefeee-bottom { width: 100%; padding-left: 16px; padding-right: 16px; }
    .wefeee-mobile-nav { padding-top: 88px; }
    .wefeee-mobile-nav .mobile-panel { position: absolute; top: 0; left: 0; right: 0; height: 88px; display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--bg); z-index: 2010; }
    .wefeee-mobile-nav .mobile-logo { max-height: 56px; width: auto; display: block; }
    .navin-header__close { background: transparent; border: 0; font-size: 28px; line-height: 1; padding: 6px 10px; color: var(--text-dark); }
    .wefeee-mobile-nav ul { padding: 6px 18px; }
    .wefeee-mobile-nav li { padding: 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
    .wefeee-mobile-nav a { color: var(--text-dark); font-weight:700; text-decoration:none; }
    .wefeee-mobile-cta { display: block; }.wefeee-mobile-nav a { padding: 6px 6px; font-size: 18px; }
}
.site-footer { 
    position: relative;
    padding: 40px 0 20px;
    color: var(--primary);
    border-top: 0;
    overflow: hidden;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: start; }
.footer-col { padding: 0 16px; }
.footer-heading { color: var(--primary); font-size: 18px; font-weight: 700; margin: 0 0 12px 0; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 8px 0; }
.footer-links a { color: var(--primary); text-decoration: none; font-size: 15px; }
.footer-links a:hover { color: var(--accent); }

.footer-col--center { text-align: center; }
.footer-logo { max-height: 70px; width: auto; display: inline-block;}
.footer-sub { margin: 8px 0 6px 0; color: var(--primary); font-weight: 700; text-transform:uppercase; font-size: 18px; letter-spacing: 1px; }
.footer-social { list-style: none; margin: 12px 0 0 0; padding: 0; display: flex; gap: 14px; justify-content: flex-start; }
.footer-center { text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.footer-center .footer-social { justify-content: flex-end; margin-top: 8px; }
.footer-center .footer-sub { margin-top: 8px; }
.footer-social li { margin: 0; }
.social-icon { width: 35px; height: 35px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--primary); color: #ffffff; font-weight: 800; text-decoration: none; border: 2px solid rgba(255,255,255,0.12); }
.social-icon:hover { background: var(--white); color: var(--primary); border-color: transparent; }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.social-icon { transition: background .18s, color .18s, transform .12s; }
.social-icon:active { transform: translateY(1px); }

/* Screen reader only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Footer contact icons */
.footer-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .fc-icon { flex: 0 0 35px; width: 35px; height: 35px; display: inline-flex; align-items: center; justify-content: center; background: var(--primary); border-radius: 8px; }
.footer-contact .fc-icon svg { width: 20px; height: 20px; fill: var(--white); }
.footer-contact .fc-text { font-size: 15px;  color:var(--primary); }
.footer-contact a { color: var(--primary); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); text-decoration: none; }

@media (max-width: 900px) {
    .footer-contact { gap: 14px; }
    .footer-contact .fc-icon { width: 36px; height: 36px; }
    .footer-contact .fc-icon svg { width: 16px; height: 16px; }
}


@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col { padding: 8px 6px; }
    .footer-heading { text-align: center; }
    .footer-links a { font-size: 18px; }
}
/* Small helper spacing */
.wefeee-header .container { display: flex; align-items: center;}
.wefeee-menu li:last-child a,
#wefeee-mobile-nav ul li:last-child a {
    background: var(--primary);
    color: #ffffff !important;
    border-radius: 24px;
    padding: 8px;
    display: inline-block;
    text-decoration: none;
}
.site-footer-bar { position: relative; border-top: 1px solid rgba(0,0,0,0.06); padding: 12px 0; margin-top: 10px; }
.footer-bar-inner { display: flex; align-items: center; justify-content: center; gap: 18px; width: 100%; max-width: 1150px; margin: 0 auto; }
.footer-bar-inner .bar-left,
.footer-bar-inner .bar-center,
.footer-bar-inner .bar-right { display: inline-flex; align-items: center; gap: 10px; }
.footer-bar-inner .bar-center a { color: var(--text-dark); text-decoration: none; font-size: 14px; }
.footer-bar-inner .bar-left { color: var(--text-dark); font-size: 14px; }
.footer-bar-inner .bar-right .designed { font-size: 13px; color:var(--text-light); }
.footer-bar-inner .bar-right .designed a { color: var(--text-dark); text-decoration: none; }
.footer-decor { position: absolute; right: 18px; bottom: -6px; width: 250px; height: 140px; pointer-events: none; opacity: 0.95; display: block; }
.footer-decor-link { display: block; width: 100%; height: 100%; }
.decor-leaves { width: 100%; height: 100%; display: block; transition: transform .28s ease; animation: floatLeaves 6s ease-in-out infinite; }
.footer-decor-link:hover .decor-leaves { transform: translateY(-6px) scale(1.02); }
@keyframes floatLeaves { 0% { transform: translateY(0);} 50% { transform: translateY(-6px);} 100% { transform: translateY(0);} }

/* Decorative image styling (light, non-intrusive) */
.footer-decor-image { display: block; width: 260px; height: auto; opacity: 0.12; filter: grayscale(20%) brightness(1.05); transform-origin: center bottom; animation: floatLeaves 7s ease-in-out infinite; pointer-events: none; }

@media (max-width: 900px) {
    .site-footer { padding-top: 28px; }
    /* Mobile footer: single column, centered, more spacing and larger targets */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; padding: 12px; }
    .footer-col { padding: 6px 6px; }
    .footer-heading { font-size: 16px; }
    .footer-links a { font-size: 18px; display: inline-block; padding: 10px 0; }
    .footer-bar-inner { flex-direction: column; gap: 8px; text-align: center; padding: 6px 10px; }
    .footer-decor { display: none; }

    /* Center logo + socials */
    .footer-center { text-align: center; align-items: center; }
    .footer-logo { max-height: 58px; margin: 0 auto 8px; }
    .footer-social { justify-content: center; gap: 12px; }

    /* Contact items stack vertically and center-align for easier tapping */
    .footer-contact { align-items: center; }
    .footer-contact li { flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 8px 0; border-bottom: none; }
    .footer-contact .fc-icon { width: 40px; height: 40px; }
    .footer-contact .fc-text { text-align: center; }
}


.primary-btn,
.secondary-btn {  display: inline-flex;  align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 35px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background: var(--secondary);
    color: var(--white);
}

.primary-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.secondary-btn {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.secondary-btn:hover {
    background: var(--primary);
    color: var(--white);
}


/* Hero Section page title*/
.wefeee-hero{  position:relative;  width:100%;  overflow:hidden;  line-height:0;}
.contact-hero-image{  width:100%;  height:350px;  display:block;  object-fit:cover;}
.hero-overlay{ position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.35);}
.hero-content{  position:absolute;  top:50%;  left:50%;  transform:translate(-50%, -50%);  z-index:2;  color:#fff; text-align:center; width:100%; padding:0 20px;}
.hero-content h1{  margin:0;  font-size:60px;  font-weight:700;  line-height:0.9;  color:#fff;}
.hero-line{ display:block;  width:180px;  height:4px;  background:#fff;  margin-top:20px; margin-right:auto; margin-left:auto;}
@media (max-width:1200px){ .contact-hero-image{     height:320px; }
.hero-content h1{ font-size:60px;}}
@media (max-width:991px){.contact-hero-image{ height:260px;} .hero-content h1{   font-size:48px;}.hero-line{  width:140px;}}
@media (max-width:767px){ .contact-hero-image{ height:180px;} .hero-content{ text-align: center;left}.hero-content h1{ font-size:32px;}.hero-line{ width:90px; height:3px; margin-top:12px;}}
@media (max-width:480px){.contact-hero-image{  height:150px;}.hero-content h1{  font-size:26px;}}



