/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #fefafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #6b5b73;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #e88b9a 0%, #d67084 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(232, 139, 154, 0.3);
}

        /* Quick Links Grid Update for 4 cards */
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        @media (min-width: 1200px) {
            .links-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .links-grid {
                grid-template-columns: 1fr;
            }
        }

/* Enhanced visibility for primary button on hero background */
.hero .btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #d67084;
    border: 3px solid #d67084;
    font-weight: 700;
    box-shadow: none;
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #d67084;
    border: 3px solid #d67084;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 112, 132, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 139, 154, 0.4);
    animation: buttonPulse 0.6s ease-in-out;
}

@keyframes buttonPulse {
    0%, 100% { transform: translateY(-3px) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

.btn-secondary {
    background: linear-gradient(135deg, #f4a6b7 0%, #e88b9a 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(244, 166, 183, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 166, 183, 0.4);
    animation: buttonPulse 0.6s ease-in-out;
}

.btn-outline {
    background: transparent;
    color: #d67084;
    border: 3px solid #d67084;
    font-weight: 600;
}

.btn-outline:hover {
    background: #d67084;
    color: white;
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(214, 112, 132, 0.1);
    box-shadow: 0 2px 10px rgba(214, 112, 132, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 25px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d67084;
    background-color: rgba(214, 112, 132, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #4a4a4a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 0 0 0;
    background: linear-gradient(135deg, rgba(214, 112, 132, 0.85) 0%, rgba(184, 93, 111, 0.85) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="hero-diamonds" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 30 0 L 60 30 L 30 60 L 0 30 Z" fill="none" stroke="rgba(255,255,255,0.25)" stroke-width="2"/><circle cx="30" cy="30" r="3" fill="rgba(255,255,255,0.2)"/><line x1="0" y1="0" x2="60" y2="60" stroke="rgba(255,255,255,0.15)" stroke-width="1"/><line x1="60" y1="0" x2="0" y2="60" stroke="rgba(255,255,255,0.15)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hero-diamonds)"/></svg>');    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: 110% 110%;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.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 1000 600"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="4" fill="rgba(255,255,255,0.2)"/><circle cx="5" cy="5" r="2" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease-out 0.3s forwards;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease-out 0.6s forwards;
}

.hero-image {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease-out 0.9s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 450px;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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 1000 400"><defs><pattern id="hexagons" width="60" height="52" patternUnits="userSpaceOnUse"><polygon points="30,0 60,26 60,52 30,78 0,52 0,26" fill="none" stroke="rgba(255,255,255,0.25)" stroke-width="2"/><circle cx="30" cy="26" r="3" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
    opacity: 0.5;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Mission Section */
.mission {
    padding: 120px 0 100px;
    background-color: white;
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
}

.mission h2 {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.mission p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(214, 112, 132, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 112, 132, 0.15);
}

.stat h3 {
    font-size: 3rem;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.2rem;
    color: #6b5b73;
    margin: 0;
}

/* Vision Section */
/* Vision Section */
.vision {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #fefafa 0%, #f9f2f3 100%);
    position: relative;
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
}

.vision::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="vision-pattern" width="70" height="70" patternUnits="userSpaceOnUse"><circle cx="35" cy="35" r="4" fill="rgba(214,112,132,0.15)"/><circle cx="10" cy="10" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="60" cy="10" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="10" cy="60" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="60" cy="60" r="2" fill="rgba(214,112,132,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23vision-pattern)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.vision-text h2 {
    margin-bottom: 2rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-text p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #6b5b73;
}

.vision-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-image img {
    width: 450px;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(214, 112, 132, 0.3);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.vision-image img:hover {
    transform: scale(1.05);
}

.vision-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="5" fill="rgba(255,255,255,0.3)"/><circle cx="5" cy="5" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23circles)"/></svg>');
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Values Section */
.values {
    padding: 120px 0 100px;
    background-color: white;
    position: relative;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, #fefafa 0%, #f9f2f3 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.values h2 {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(214, 112, 132, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f9ebe7;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(214, 112, 132, 0.15);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-size: 1.5rem;
}

.value-card p {
    color: #6b5b73;
    margin: 0;
    line-height: 1.7;
}

/* Initiatives Section */
.initiatives {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.initiatives::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 1000 600"><defs><pattern id="triangles" width="80" height="70" patternUnits="userSpaceOnUse"><polygon points="40,0 80,70 0,70" fill="none" stroke="rgba(255,255,255,0.25)" stroke-width="2"/><circle cx="40" cy="23" r="3" fill="rgba(255,255,255,0.2)"/><line x1="40" y1="0" x2="40" y2="70" stroke="rgba(255,255,255,0.15)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23triangles)"/></svg>');
    opacity: 0.5;
}

.initiatives h2 {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    color: white;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.initiative-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.initiative-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.initiative-card h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.initiative-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.7;
}

/* Quick Links */
.quick-links {
    padding: 120px 0 100px;
    background-color: white;
    position: relative;
}

.quick-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
}

.quick-links h2 {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .links-grid {
        grid-template-columns: 1fr;
    }
}

.link-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(214, 112, 132, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f9ebe7;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
}

.link-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(214, 112, 132, 0.15);
}

.link-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.link-card h3 {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-size: 1.5rem;
}

.link-card p {
    margin-bottom: 2rem;
    color: #6b5b73;
    line-height: 1.7;
}

        /* Events Page Specific Styles */
        .events {
            padding: 120px 0 100px;
            background: linear-gradient(135deg, #fefafa 0%, #f9f2f3 100%);
            position: relative;
        }
        
        .events::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
            clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
        }
        
        .events::after {
            content: '';
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="events-pattern" width="70" height="70" patternUnits="userSpaceOnUse"><circle cx="35" cy="35" r="4" fill="rgba(214,112,132,0.15)"/><circle cx="10" cy="10" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="60" cy="10" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="10" cy="60" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="60" cy="60" r="2" fill="rgba(214,112,132,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23events-pattern)"/></svg>');
            opacity: 0.6;
            pointer-events: none;
        }
        
        .event-card {
            background: white;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(214, 112, 132, 0.12);
            margin-bottom: 3rem;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #f9ebe7;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .event-card:nth-child(1) { animation-delay: 0.1s; }
        .event-card:nth-child(2) { animation-delay: 0.2s; }
        .event-card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(214, 112, 132, 0.18);
        }

        .event-header {
            background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
            color: white;
            padding: 2.5rem;
            display: flex;
            align-items: center;
            gap: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .event-header::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="event-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="5" cy="5" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="25" cy="5" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="5" cy="25" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="25" cy="25" r="1.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23event-pattern)"/></svg>');
            opacity: 0.6;
        }

        .event-date {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            min-width: 100px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .event-date:hover {
            transform: scale(1.05);
        }

        .event-month {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        .event-day {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
            margin: 0.5rem 0;
        }

        .event-year {
            font-size: 0.9rem;
            font-weight: 500;
            opacity: 0.8;
        }

        .event-title-section {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .event-title-section h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: white;
            line-height: 1.2;
            font-weight: 700;
        }

        .event-meta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .event-meta span {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.8rem 1.2rem;
            border-radius: 20px;
            font-size: 0.95rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .event-meta span:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.3);
        }

        .event-content {
            padding: 3rem;
        }

        .event-content h4 {
            color: #d67084;
            margin-bottom: 1rem;
            margin-top: 0;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .event-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #6b5b73;
            margin-bottom: 1rem;
        }

        .event-highlights {
            margin-bottom: 1.2rem;
        }
        
        .event-highlights h4 {
            color: #d67084;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .event-highlights ul {
            list-style: none;
            padding: 0;
        }

        .event-highlights li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            color: #6b5b73;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .event-highlights li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0.8rem;
            color: #d67084;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .event-action {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }

        .event-action .btn {
            flex: 1;
            min-width: 200px;
        }

        /* Responsive Design for Events */
        @media (max-width: 768px) {
            .event-header {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
                padding: 2rem;
            }

            .event-date {
                min-width: auto;
                width: 120px;
            }

            .event-title-section h2 {
                font-size: 1.8rem;
            }

            .event-meta {
                justify-content: center;
                gap: 1rem;
            }

            .event-content {
                padding: 2rem;
            }

            .event-action {
                flex-direction: column;
            }

            .event-action .btn {
                flex: none;
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .event-header {
                padding: 1.5rem;
            }

            .event-title-section h2 {
                font-size: 1.5rem;
            }

            .event-content {
                padding: 1.5rem;
            }

            .event-meta span {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
        }


/* Webinars */
.webinars {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #fdf7f5 0%, #f9ebe7 100%);
    position: relative;
}

.webinars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.webinars::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="webinars-pattern" width="70" height="70" patternUnits="userSpaceOnUse"><circle cx="35" cy="35" r="4" fill="rgba(214,112,132,0.15)"/><circle cx="10" cy="10" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="60" cy="10" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="10" cy="60" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="60" cy="60" r="2" fill="rgba(214,112,132,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23webinars-pattern)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.webinars h2 {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.webinar-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(214, 112, 132, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f9ebe7;
    transform: translateY(0);
}

.webinar-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(214, 112, 132, 0.15);
}

.webinar-card:hover .webinar-content {
    transform: scale(1.02);
}

.webinar-content {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.webinar-image {
    height: 220px;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    position: relative;
    overflow: hidden;
}

.webinar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    position: relative;
}

.webinar-placeholder::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="dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="4" fill="rgba(255,255,255,0.3)"/><circle cx="5" cy="5" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="25" cy="5" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="5" cy="25" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
}

.webinar-content {
    padding: 2rem;
}

.webinar-content h3 {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    font-size: 1.4rem;
}

.webinar-date {
    color: #d67084;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.webinar-description {
    margin-bottom: 1.5rem;
    color: #6b5b73;
    line-height: 1.7;
}

.webinar-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.webinar-meta span {
    background: linear-gradient(135deg, #f9f2f3 0%, #f4e6e8 100%);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #6b5b73;
    font-weight: 500;
    border: 1px solid #f4d1d5;
}

/* Products */
.products {
    padding: 120px 0 100px;
    background-color: white;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, #fdf7f5 0%, #f9ebe7 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.products h2 {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(214, 112, 132, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f9ebe7;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(214, 112, 132, 0.15);
}

.product-card:hover .product-content {
    transform: scale(1.02);
}

.product-content {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    position: relative;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    position: relative;
}

.product-placeholder::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="squares" width="35" height="35" patternUnits="userSpaceOnUse"><rect width="35" height="35" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="2"/><rect x="10" y="10" width="15" height="15" fill="rgba(255,255,255,0.15)"/><circle cx="17.5" cy="17.5" r="2" fill="rgba(255,255,255,0.25)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23squares)"/></svg>');
    opacity: 0.5;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    font-size: 1.4rem;
}

.product-description {
    margin-bottom: 1.5rem;
    color: #6b5b73;
    line-height: 1.7;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

/* About */
/* About */
.about {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #fdf7f5 0%, #f9ebe7 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.about::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="about-pattern" width="70" height="70" patternUnits="userSpaceOnUse"><circle cx="35" cy="35" r="4" fill="rgba(214,112,132,0.15)"/><circle cx="10" cy="10" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="60" cy="10" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="10" cy="60" r="2" fill="rgba(214,112,132,0.1)"/><circle cx="60" cy="60" r="2" fill="rgba(214,112,132,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;

}

.about-text h2 {
    margin-bottom: 2rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #6b5b73;
    line-height: 1.7;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 450px;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(214, 112, 132, 0.3);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-placeholder::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="waves" width="100" height="30" patternUnits="userSpaceOnUse"><path d="M 0 15 Q 25 5 50 15 T 100 15" fill="none" stroke="rgba(255,255,255,0.35)" stroke-width="2.5"/><path d="M 0 20 Q 25 10 50 20 T 100 20" fill="none" stroke="rgba(255,255,255,0.25)" stroke-width="2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23waves)"/></svg>');
    opacity: 0.7;
}

/* Goals */
.goals {
    padding: 120px 0 100px;
    background-color: white;
    position: relative;
}

.goals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, #fdf7f5 0%, #f9ebe7 100%);
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
}

.goals h2 {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.goals-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.goal-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(214, 112, 132, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f9ebe7;
}

.goal-item:hover {
    transform: translateY(-5px);
}

.goal-number {
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(214, 112, 132, 0.3);
}

.goal-content h3 {
    margin-bottom: 1rem;
    color: #4a4a4a;
    font-size: 1.5rem;
}

.goal-content p {
    color: #6b5b73;
    margin: 0;
    line-height: 1.7;
    font-size: 1.1rem;
}

        /* Team Section */
        .team {
            padding: 60px 0;
        }

        .team h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .team-intro {
            text-align: center;
            margin-bottom: 4rem;
            font-size: 1.2rem;
            color: #6b5b73;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .team-member {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(214, 112, 132, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #f9ebe7;
            position: relative;
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
        }

        .team-member:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(214, 112, 132, 0.15);
        }

        /* Member Image Section */
        .member-image {
            height: 280px;
            background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
            position: relative;
            overflow: hidden;
        }

        .member-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }

        .member-photo:hover {
            transform: scale(1.05);
        }

        /* Placeholder for missing images */
        .member-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            position: relative;
            background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
        }

        .member-placeholder::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="circles" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="6" fill="rgba(255,255,255,0.25)"/><circle cx="5" cy="5" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="35" cy="5" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="5" cy="35" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="35" cy="35" r="3" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23circles)"/></svg>');
            opacity: 0.5;
        }

        .member-placeholder-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        /* Member Info Section */
        .member-info {
            padding: 2rem;
        }

        .member-info h3 {
            margin-bottom: 0.8rem;
            color: #4a4a4a;
            font-size: 1.4rem;
        }

        .member-role {
            color: #d67084;
            font-weight: 600;
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }

        .member-bio {
            color: #6b5b73;
            margin: 0;
            line-height: 1.7;
        }

        /* No Photo Member Variant */
        .team-member.no-photo {
            background: white;
            border: 1px solid #f9ebe7;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 15px 35px rgba(214, 112, 132, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .team-member.no-photo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
        }

        .team-member.no-photo:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(214, 112, 132, 0.15);
        }

        .team-member.no-photo .member-info {
            padding: 0;
            margin: 0;
        }

        .team-member.no-photo h3 {
            color: #4a4a4a;
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
        }

        .team-member.no-photo .member-role {
            color: #d67084;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1.2rem;
        }

        .team-member.no-photo .member-bio {
            color: #6b5b73;
            line-height: 1.7;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr;
            }

            .member-image {
                height: 250px;
            }

            .team-member.no-photo {
                padding: 2rem 1.5rem;
            }
            .event-header {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
                padding: 2rem;
            }

            .event-date {
                min-width: auto;
                width: 120px;
            }

            .event-title-section h2 {
                font-size: 1.8rem;
            }

            .event-meta {
                justify-content: center;
                gap: 1rem;
            }

            .event-content {
                padding: 2rem;
            }

            .event-action {
                flex-direction: column;
            }

            .event-action .btn {
                flex: none;
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .team {
                padding: 40px 0;
            }

            .team h2 {
                font-size: 2rem;
            }

            .event-header {
                padding: 1.5rem;
            }

            .event-title-section h2 {
                font-size: 1.5rem;
            }

            .event-content {
                padding: 1.5rem;
            }

            .event-meta span {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

            .member-image {
                height: 220px;
            }

            .member-info {
                padding: 1.5rem;
            }

            .team-member.no-photo {
                padding: 2rem 1rem;
            }
        }

        /* Animation for scroll-triggered effects */
        .team-member {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .team-member:nth-child(1) { animation-delay: 0.1s; }
        .team-member:nth-child(2) { animation-delay: 0.2s; }
        .team-member:nth-child(3) { animation-delay: 0.3s; }
        .team-member:nth-child(4) { animation-delay: 0.4s; }
        .team-member:nth-child(5) { animation-delay: 0.5s; }
        .team-member:nth-child(6) { animation-delay: 0.6s; }
        .team-member:nth-child(7) { animation-delay: 0.7s; }
        .team-member:nth-child(8) { animation-delay: 0.8s; }
        .team-member:nth-child(9) { animation-delay: 0.9s; }
        .team-member:nth-child(10) { animation-delay: 1.0s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* Coming Soon Section Styles */
.coming-soon {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #fdf7f5 0%, #f9ebe7 100%);
    text-align: center;
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
}

.coming-soon::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="coming-soon-pattern" width="70" height="70" patternUnits="userSpaceOnUse"><circle cx="35" cy="35" r="4" fill="rgba(214,112,132,0.2)"/><circle cx="10" cy="10" r="2" fill="rgba(214,112,132,0.15)"/><circle cx="60" cy="10" r="2" fill="rgba(214,112,132,0.15)"/><circle cx="10" cy="60" r="2" fill="rgba(214,112,132,0.15)"/><circle cx="60" cy="60" r="2" fill="rgba(214,112,132,0.15)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23coming-soon-pattern)"/></svg>');
    opacity: 0.6;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(214, 112, 132, 0.1);
    border: 1px solid rgba(214, 112, 132, 0.1);
    margin-top: 2rem;
}

.coming-soon-icon {
    font-size: 6rem;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    display: block;
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.coming-soon h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.coming-soon p {
    font-size: 1.3rem;
    color: #6b5b73;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.coming-soon .btn {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #d67084 0%, #b85d6f 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::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 1000 600"><defs><pattern id="footer-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="4" fill="rgba(255,255,255,0.2)"/><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.15)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.15)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.15)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.15)"/><line x1="50" y1="0" x2="50" y2="100" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><line x1="0" y1="50" x2="100" y2="50" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
    animation: footerBounce 0.6s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@keyframes footerBounce {
    0%, 100% { transform: translateY(-3px); }
    50% { transform: translateY(-8px); }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animations for grid items */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .coming-soon {
        padding: 120px 0 100px;
        min-height: 50vh;
    }
    
    .coming-soon-content {
        padding: 3rem 1.5rem;
        margin: 1rem 1rem 0;
    }
    
    .coming-soon-icon {
        font-size: 4rem;
    }
    
    .coming-soon h2 {
        font-size: 2.2rem;
    }
    
    .coming-soon p {
        font-size: 1.1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 250, 248, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(214, 112, 132, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image img,
    .vision-image img,
    .about-image img {
        width: 100%;
        max-width: 350px;
        height: 280px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-placeholder {
        width: 100%;
        max-width: 350px;
    }

    .about-content,
    .vision-content {
        text-align: center;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;    
    }

    .about-placeholder,
    .vision-placeholder {
        width: 100%;
        max-width: 350px;
    }

    .goal-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .goal-number {
        align-self: center;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .links-grid,
    .webinars-grid,
    .products-grid,
    .values-grid,
    .team-grid,
    .initiatives-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .event-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .event-date {
        min-width: auto;
        width: 120px;
    }

    .event-title-section h2 {
        font-size: 1.8rem;
    }

    .event-meta {
        justify-content: center;
        gap: 1rem;
    }

    .event-content {
        padding: 2rem;
    }

    .event-action {
        flex-direction: column;
    }

    .event-action .btn {
        flex: none;
        min-width: auto;
    }
    
    .footer-right {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-left {
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .event-header {
        padding: 1.5rem;
    }

    .event-title-section h2 {
        font-size: 1.5rem;
    }

    .event-content {
        padding: 1.5rem;
    }

    .event-meta span {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .team-member.no-photo {
        padding: 2rem 1.5rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .coming-soon {
        padding: 100px 0 80px;
    }
    
    .coming-soon-content {
        padding: 2rem 1rem;
    }
    
    .coming-soon-icon {
        font-size: 3.5rem;
    }
    
    .coming-soon h2 {
        font-size: 1.8rem;
    }

    .hero-image img,
    .vision-image img,
    .about-image img {
        width: 100%;
        max-width: 300px;
        height: 220px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .mission,
    .vision,
    .values,
    .initiatives,
    .quick-links,
    .webinars,
    .products,
    .about,
    .goals,
    .team {
        padding: 80px 0;
    }

    .nav-container {
        height: 70px;
    }

    .nav-menu {
        top: 70px;
    }
}

.coming-soon-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.coming-soon h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.coming-soon p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.7s forwards;
    margin-bottom: 1.5rem;
}

.coming-soon p:last-of-type {
    margin-bottom: 1rem;
}

.coming-soon .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add the same hover effect that other cards have */
.coming-soon-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(214, 112, 132, 0.2);
    transition: all 0.3s ease;
}

/* Simple pulse animation for the heading - like the existing pulse animation */
.coming-soon h2 {
    animation: fadeInUp 1s ease-out 0.5s forwards, subtlePulse 3s ease-in-out 2s infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}