* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #ffdaf9;
    overflow-x: hidden;
}

button {
    cursor: pointer;
    outline: none;
    border: none;
    background: none;
}

button,
input,
a {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

button:focus,
input:focus,
a:focus {
    outline: none;
}

/** Navbar Section **/
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar.transparent {
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links a {
    color: #2d2d2d;
}

.navbar.scrolled .nav-links a:hover {
    color: #e85a85;
}

#navbar .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e85a85;
}

.navbar .brand a {
    display: flex;
    align-items: center;
}

.navbar .brand h2 {
    margin-left: 0.5rem;
    font-size: 1.8rem;
    color: #e85a85;
    transition: color 0.3s;
}

.navbar .brand h2:hover {
    color: #ff69b4;
}

.navbar .brand img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.nav-links a {
    text-decoration: none;
    color: #2d2d2d;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 1.3rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #e85a85;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-links a:hover {
    color: #e85a85;
}

.nav-links a:hover::after {
    left: 0;
    width: 50%;
}

.navbar .donate-btn {
    background-color: #e85a85;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    height: 100%;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(232, 90, 133, 0.12);
}

.navbar .donate-btn:hover {
    background-color: #ff69b4;
    box-shadow: 0 2px 8px rgba(232, 90, 133, 0.2);
}

.menu-toggle {
    display: none;
    background: none;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    color: #e85a85;
    padding: 0.5rem;
    transition: background 0.2s;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 8px 24px rgba(232, 90, 133, 0.08);
        border-radius: 0 0 18px 18px;
        padding: 2rem 1rem 1.5rem 1rem;
        text-align: center;
        z-index: 998;
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1.2rem;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: #e85a85;
        padding: 0.7rem 0;
        border-radius: 12px;
        transition: background 0.2s, color 0.2s;
    }

    .nav-links a:hover {
        color: #e85a85;
    }

    .nav-links a:hover::after {
        left: 0;
        width: 100%;
    }

    .donate-btn {
        background: #e85a85;
        padding-left: 2rem;
        padding-right: 2rem;
        color: #fff !important;
        font-weight: bold;
        margin-top: 0.5rem;
        padding: 0.7rem 1.2rem;
        border-radius: 24px;
        box-shadow: 0 2px 8px rgba(232, 90, 133, 0.12);
    }

    .menu-toggle {
        display: block;
    }

    .navbar .brand img {
        height: 50px;
        width: auto;
    }

    .navbar .brand h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .navbar .brand img {
        height: 90px;
    }

    .navbar .brand h2 {
        font-size: 2.3rem;
    }

    .menu-toggle {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .navbar .brand img {
        height: 50px;
    }

    .navbar .brand h2 {
        font-size: 1.2rem;
    }

    .menu-toggle {
        font-size: 2rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/** Hero Section **/
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #ffdaf9 0%, #ffe4f3 50%, #fff0f8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23e85a85" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    color: #e85a85;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e85a85, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e85a85;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/** Mission Vision Values Section **/
.mvv-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mvv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.mvv-card {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(232, 90, 133, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e85a85, #ff69b4);
    border-radius: 24px 24px 0 0;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(232, 90, 133, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e85a85, #ff69b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(232, 90, 133, 0.2);
}

.mvv-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mvv-description {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/** Founder Section **/
.founder-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffe4f3 100%);
    position: relative;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-avatar {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e85a85, #ff69b4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(232, 90, 133, 0.3);
    position: relative;
    overflow: hidden;
}

.founder-avatar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 3px solid white;
    border-radius: 50%;
}

.founder-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.founder-title {
    font-size: 1.2rem;
    color: #e85a85;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-message {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.founder-message::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #e85a85;
    font-family: serif;
}

.founder-signature {
    font-size: 1.5rem;
    color: #e85a85;
    font-weight: 600;
    font-family: 'Comfortaa', cursive;
}

/** Story Section **/
.story-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content {
    font-size: 1.2rem;
    color: #555;
    line-height: 2;
    text-align: left;
    background: #f8f9ff;
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid #e85a85;
    box-shadow: 0 10px 40px rgba(232, 90, 133, 0.08);
}

/** CTA Section **/
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e85a85, #ff69b4);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn.primary {
    background: white;
    color: #e85a85;
}

.cta-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #e85a85;
    transform: translateY(-2px);
}

/** Footer Section **/
.site-footer {
    background-color: #000;
    color: white;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.logo {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav li a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav li a:hover {
    color: #fb6f92;
}

.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-right h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe-form input {
    padding: 10px 15px;
    border: 2px solid #212529;
    border-radius: 10px;
    background-color: #212529;
    color: white;
    flex: 1;
    min-width: 200px;
    transition: 0.3s;
}

.subscribe-form input:focus {
    outline: none;
    border: 2px solid #fb6f92;
}

.subscribe-form button {
    padding: 10px 20px;
    background-color: white;
    color: black;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.subscribe-form button:hover {
    background-color: #fb6f92;
    color: white;
}

.privacy-note {
    margin-top: 10px;
    font-size: 13px;
    color: #ccc;
}

.privacy-note a {
    color: #fff;
    text-decoration: underline;
}

hr {
    margin: 40px 0 20px;
    border-color: #333;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
    font-size: 14px;
}

.footer-links a {
    margin-right: 20px;
    text-decoration: none;
    color: white;
    font-weight: 400;
}

.footer-links a:hover {
    color: #fb6f92;
}

footer .copyright {
    color: #ccc;
}

footer .copyright a {
    color: #fff;
    text-decoration: underline;
}

/** Responsive Design **/
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .founder-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .founder-avatar {
        width: 250px;
        height: 250px;
        font-size: 5rem;
    }

    .founder-avatar::before {
        width: 230px;
        height: 230px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mvv-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mvv-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .founder-avatar {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }

    .founder-avatar::before {
        width: 180px;
        height: 180px;
    }

    .founder-content h2 {
        font-size: 2rem;
    }

    .founder-message {
        padding-left: 1rem;
    }

    .story-content {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mvv-card {
        padding: 1.5rem 1rem;
    }

    .mvv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .founder-avatar {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .founder-avatar::before {
        width: 130px;
        height: 130px;
    }

    .story-content {
        padding: 1.5rem 1rem;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .subscribe-form {
        justify-content: center;
    }
}