/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #000;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-info i {
    color: #ff69b4;
}

/* Navigation Bar */
.navbar {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-left a, .nav-right a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-left a:hover, .nav-right a:hover,
.nav-left a.active, .nav-right a.active {
    color: #ff69b4;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
}

.logo-icon {
    background: #000;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.donate-btn {
    background: #ff69b4;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.donate-btn:hover {
    background: #ff1493;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #f0f0f0;
    color: #ff69b4;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-close:hover {
    color: #ff69b4;
    background: #f0f0f0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #ff69b4;
}

.mobile-nav-links .donate-btn {
    background: #ff69b4;
    color: white !important;
    padding: 15px 25px;
    border-radius: 25px;
    text-align: center;
    border: none;
    margin-top: 20px;
}

.mobile-nav-links .donate-btn:hover {
    background: #ff1493;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 80vh;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding: 60px;
    z-index: 3;
    position: relative;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
    background: #ff1493;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #c71585;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 105, 180, 0.3) 0%, rgba(255, 105, 180, 0.1) 50%, transparent 100%);
    z-index: 1;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 50px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-image-container:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 80px rgba(255, 105, 180, 0.3);
}

/* Slideshow Styles */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(0.3) hue-rotate(320deg) saturate(1.2) brightness(0.9);
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.4) 0%, rgba(255, 20, 147, 0.3) 50%, rgba(255, 105, 180, 0.2) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 3;
    padding: 20px;
    pointer-events: none;
}

.slideshow-content {
    text-align: left;
    color: white;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    max-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
}

.slideshow-content i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    opacity: 0.9;
    display: block;
}

.slideshow-content p {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0.9;
    margin: 0;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: #ff69b4;
    border-color: #ff69b4;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 105, 180, 0.7);
    border-color: #ff69b4;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    padding: 0 0 40px 0;
    text-align: center;
}
.page-header .hero-image {
    position: relative;
    width: 100%;
    min-height: 60vh;
}

.page-header .hero-image .hero-image-container,
.page-header .hero-image .slideshow {
    height: 100%;
}


.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background: #f8f9fa;
}

.vision-mission .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card, .mission-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
}

.vision-card .icon, .mission-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff69b4;
}

/* Objectives Section */
.objectives {
    padding: 80px 0;
    background: white;
    position: relative;
}

.objectives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.objectives .container {
    position: relative;
    z-index: 1;
}

.objectives h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.objective-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #ff69b4;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
}

.objective-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.objective-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff69b4;
}

/* Founder's Story */
.founder-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.founder-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.founder-text h2 {
    color: #ff69b4;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.founder-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.founder-image:hover {
    transform: translateY(-5px);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Meet the Team */
.meet-team {
    padding: 80px 0;
    background: white;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    color: #ff69b4;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.15);
    border-color: rgba(255, 105, 180, 0.2);
}

.team-member.founder {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(255, 20, 147, 0.05));
    border: 2px solid rgba(255, 105, 180, 0.2);
}

.team-member.founder::before {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    transform: scaleX(1);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff69b4;
    position: relative;
    transition: all 0.3s ease;
}

.member-image:hover {
    transform: scale(1.05);
    border-color: #ff1493;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Adjust specific team member images */
.team-member:nth-child(2) .member-image img,
.team-member:nth-child(3) .member-image img {
    object-position: center top;
}

/* Zoom in founder's image in meet the team section */
.team-member.founder .member-image img {
    object-position: center center;
    transform: scale(1.2);
}

.member-info h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-info .role {
    color: #ff69b4;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
}

/* Team Summary Section for Home Page */
.team-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-summary-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-summary-header h2 {
    color: #ff69b4;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-summary-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.team-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.founder-card .team-member-circle {
    width: 120px;
    height: 120px;
    border: 4px solid #ff69b4;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.founder-card .team-member-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.founder-card .member-details h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
    text-align: center;
}

.founder-card .member-details .role {
    color: #ff69b4;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    display: block;
}

.connection-line {
    background: #ff69b4;
}

.connection-line.vertical {
    width: 3px;
    height: 40px;
    margin-bottom: 20px;
}

.connection-line.horizontal {
    width: 60px;
    height: 3px;
    margin: 0 10px;
    align-self: center;
}

.team-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member-circle {
    width: 80px;
    height: 80px;
    border: 3px solid #ff69b4;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.team-member-circle:hover {
    transform: scale(1.1);
    border-color: #ff1493;
}

.team-member-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Adjust specific team member images for home page */
.team-member-item:nth-child(1) .team-member-circle img,
.team-member-item:nth-child(3) .team-member-circle img {
    object-position: center top;
}

.member-details h4 {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 3px;
    font-weight: 600;
    line-height: 1.2;
}

.member-details .role {
    color: #ff69b4;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
}

/* Organization Story */
.organization-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Vision & Mission Detailed */
.vision-mission-detailed {
    padding: 80px 0;
    background: white;
}

.vision-section, .mission-section {
    margin-bottom: 60px;
}

.vision-content, .mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-content h2, .mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff69b4;
    text-align: center;
}

.vision-content p, .mission-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.7;
    text-align: center;
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.vision-point {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.vision-point i {
    color: #ff69b4;
    font-size: 1.2rem;
}

.mission-approaches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.approach {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.approach h4 {
    color: #ff69b4;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Objectives Detailed */
.objectives-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.objectives-detailed h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.objectives-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.objective-detailed {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.objective-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.objective-header .objective-icon {
    font-size: 2rem;
}

.objective-header h3 {
    color: #ff69b4;
    font-size: 1.4rem;
}

.objective-detailed p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.objective-detailed ul {
    list-style: none;
    padding-left: 0;
}

.objective-detailed li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.objective-detailed li:before {
    content: "✓";
    color: #ff69b4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Future Goals */
.future-goals {
    padding: 80px 0;
    background: white;
}

.future-goals h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.goals-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.goal-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.goal-year {
    background: #ff69b4;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

.goal-content h4 {
    color: #ff69b4;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Get Involved */
.get-involved {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.get-involved h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.get-involved p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.involvement-option {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.involvement-option:hover {
    transform: translateY(-5px);
}

.involvement-option i {
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 20px;
}

.involvement-option h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.involvement-option p {
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Gallery Categories */
.gallery-categories {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #ff69b4;
    color: #ff69b4;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background: #ff69b4;
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    padding: 60px 0;
    background: white;
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    height: 250px;
    overflow: hidden;
}

.image-placeholder.events {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.image-placeholder.training {
    background: linear-gradient(135deg, #ff69b4, #c71585);
}

.image-placeholder.schools {
    background: linear-gradient(135deg, #ff69b4, #db7093);
}

.image-placeholder.community {
    background: linear-gradient(135deg, #ff69b4, #ff69b4);
}

.gallery-caption {
    padding: 25px;
}

.gallery-caption h4 {
    color: #ff69b4;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.gallery-caption p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.date {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

/* Impact Stories */
.impact-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.impact-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.story-card h4 {
    color: #ff69b4;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.story-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #666;
}

.student-name, .teacher-name, .school-name {
    color: #ff69b4;
    font-weight: 600;
}

/* Call to Action Sections */
.cta-section, .gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    text-align: center;
}

.cta-section h2, .gallery-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p, .gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: #ff69b4;
}

.cta-button.secondary {
    background: transparent;
    color: #ff69b4;
    border: 2px solid #ff69b4;
    margin-left: 15px;
}

.cta-button.primary:hover {
    background: #f8f9fa;
}

.cta-button.secondary:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ff69b4;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #ff69b4;
    border: 2px solid #ff69b4;
}

.btn-primary:hover {
    background: #ff1493;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #ff69b4;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff69b4;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff69b4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Alpha Kindergarten Special Styles */
.alpha-kindergarten {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alpha-kindergarten:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

/* Hill Preparatory Special Styles */
.hill-preparatory {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hill-preparatory:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

/* Hill Slideshow Container */
.hill-slideshow-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.hill-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hill-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hill-slide.active {
    opacity: 1;
}

.hill-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
}

.hill-slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.7) 0%, rgba(255, 20, 147, 0.6) 50%, rgba(255, 105, 180, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.hill-slideshow-content {
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.hill-slideshow-content:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.hill-slideshow-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.hill-slideshow-content p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Alpha Slideshow Container */
.alpha-slideshow-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.alpha-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.alpha-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.alpha-slide.active {
    opacity: 1;
}

.alpha-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
}

.alpha-slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.7) 0%, rgba(255, 20, 147, 0.6) 50%, rgba(255, 105, 180, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.alpha-slideshow-content {
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.alpha-slideshow-content:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.alpha-slideshow-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.alpha-slideshow-content p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* KALANAMU PRIMARY Slideshow Container */
.kalanamu-slideshow-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.kalanamu-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.kalanamu-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.kalanamu-slide.active {
    opacity: 1;
}

.kalanamu-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
}

.kalanamu-slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.7) 0%, rgba(255, 20, 147, 0.6) 50%, rgba(255, 105, 180, 0.5) 100%);
    backdrop-filter: blur(2px);
}

.kalanamu-slideshow-content {
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kalanamu-slideshow-content:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.kalanamu-slideshow-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.kalanamu-slideshow-content p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* KALANAMU SECONDARY Slideshow Container */
.kalanamu-secondary-slideshow-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.kalanamu-secondary-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.kalanamu-secondary-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.kalanamu-secondary-slide.active {
    opacity: 1;
}

.kalanamu-secondary-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
}

.kalanamu-secondary-slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.7) 0%, rgba(255, 20, 147, 0.6) 50%, rgba(255, 105, 180, 0.5) 100%);
    backdrop-filter: blur(2px);
}

.kalanamu-secondary-slideshow-content {
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kalanamu-secondary-slideshow-content:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.kalanamu-secondary-slideshow-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.kalanamu-secondary-slideshow-content p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* LUBIRI Slideshow Container */
.lubiri-slideshow-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.lubiri-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.lubiri-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.lubiri-slide.active {
    opacity: 1;
}

.lubiri-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
}

.lubiri-slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.7) 0%, rgba(255, 20, 147, 0.6) 50%, rgba(255, 105, 180, 0.5) 100%);
    backdrop-filter: blur(2px);
}

.lubiri-slideshow-content {
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lubiri-slideshow-content:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.lubiri-slideshow-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.lubiri-slideshow-content p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* GREENHILL PRIMARY AND SECONDARY Slideshow Container */
.greenhill-slideshow-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.greenhill-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.greenhill-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.greenhill-slide.active {
    opacity: 1;
}

.greenhill-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
}

.greenhill-slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.7) 0%, rgba(255, 20, 147, 0.6) 50%, rgba(255, 105, 180, 0.5) 100%);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.greenhill-slideshow-content {
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.greenhill-slideshow-content:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.greenhill-slideshow-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.greenhill-slideshow-content p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* TSURI INTERNATIONAL CHRISTIAN SCHOOL Slideshow Container */
.tsuri-slideshow-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.tsuri-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.tsuri-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tsuri-slide.active {
    opacity: 1;
}

.tsuri-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
}

.tsuri-slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.7) 0%, rgba(255, 20, 147, 0.6) 50%, rgba(255, 105, 180, 0.5) 100%);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.tsuri-slideshow-content {
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tsuri-slideshow-content:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.tsuri-slideshow-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.tsuri-slideshow-content p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* KALANAMU PRIMARY Hover Effects */
.kalanamu:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

/* KALANAMU SECONDARY Hover Effects */
.kalanamu-secondary:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

/* LUBIRI Hover Effects */
.lubiri:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

.tap-hint {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 10px;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.alpha-gallery {
    width: 100%;
}

.alpha-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.alpha-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.alpha-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

.alpha-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.alpha-image-item:hover img {
    transform: scale(1.05);
}

/* Hill Gallery Styles */
.hill-gallery {
    width: 100%;
}

.hill-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.hill-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hill-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

.hill-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hill-image-item:hover img {
    transform: scale(1.05);
}

/* KALANAMU PRIMARY Gallery Styles */
.kalanamu-gallery {
    width: 100%;
}

.kalanamu-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.kalanamu-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.kalanamu-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

.kalanamu-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.kalanamu-image-item:hover img {
    transform: scale(1.05);
}

/* KALANAMU SECONDARY Gallery Styles */
.kalanamu-secondary-gallery {
    width: 100%;
}

.kalanamu-secondary-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.kalanamu-secondary-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.kalanamu-secondary-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

.kalanamu-secondary-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.kalanamu-secondary-image-item:hover img {
    transform: scale(1.05);
}

/* LUBIRI Gallery Styles */
.lubiri-gallery {
    width: 100%;
}

.lubiri-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.lubiri-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.lubiri-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

.lubiri-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.lubiri-image-item:hover img {
    transform: scale(1.05);
}

/* GREENHILL PRIMARY AND SECONDARY Gallery Styles */
.greenhill-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.greenhill-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.greenhill-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

.greenhill-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.greenhill-image-item:hover img {
    transform: scale(1.05);
}

/* GREENHILL PRIMARY AND SECONDARY Hover Effects */
.greenhill:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

/* TSURI INTERNATIONAL CHRISTIAN SCHOOL Gallery Styles */
.tsuri-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.tsuri-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tsuri-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

.tsuri-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.tsuri-image-item:hover img {
    transform: scale(1.05);
}

/* TSURI INTERNATIONAL CHRISTIAN SCHOOL Hover Effects */
.tsuri:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

/* Lightbox for Alpha images */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover, .lightbox-next:hover, .lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .alpha-image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .alpha-image-item img {
        height: 150px;
    }
    
    .kalanamu-image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .kalanamu-image-item img {
        height: 150px;
    }
    
    .kalanamu-secondary-image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .kalanamu-secondary-image-item img {
        height: 150px;
    }
    
    .lubiri-image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .lubiri-image-item img {
        height: 150px;
    }
    
    .greenhill-image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .greenhill-image-item img {
        height: 150px;
    }
    
    .tsuri-image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .tsuri-image-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .alpha-image-grid {
        grid-template-columns: 1fr;
    }
    
    .alpha-image-item img {
        height: 200px;
    }
    
    .kalanamu-image-grid {
        grid-template-columns: 1fr;
    }
    
    .kalanamu-image-item img {
        height: 200px;
    }
    
    .kalanamu-secondary-image-grid {
        grid-template-columns: 1fr;
    }
    
    .kalanamu-secondary-image-item img {
        height: 200px;
    }
    
    .lubiri-image-grid {
        grid-template-columns: 1fr;
    }
    
    .lubiri-image-item img {
        height: 200px;
    }
    
    .greenhill-image-grid {
        grid-template-columns: 1fr;
    }
    
    .greenhill-image-item img {
        height: 200px;
    }
    
    .tsuri-image-grid {
        grid-template-columns: 1fr;
    }
    
    .tsuri-image-item img {
        height: 200px;
    }
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background: white;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Mental Health Quotes Section */
.quotes-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
}

.quotes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.quote-container {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff69b4;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.quote-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff69b4, #ff1493, #ff69b4);
    border-radius: 15px 15px 0 0;
}

.quote-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.quote-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.quote-text::before {
    content: '"';
    font-size: 4rem;
    color: #ff69b4;
    position: absolute;
    top: -20px;
    left: -30px;
    font-family: serif;
    opacity: 0.3;
}

.quote-text::after {
    content: '"';
    font-size: 4rem;
    color: #ff69b4;
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: serif;
    opacity: 0.3;
}

.quote-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    font-style: normal;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Volunteer Form Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffc0cb;
}

.modal-body {
    padding: 30px;
}

.volunteer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ff69b4;
    border-color: #ff69b4;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

/* Programs Modal Content */
.program-content {
    max-width: 100%;
}

.program-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ff69b4;
}

.program-header h3 {
    color: #ff69b4;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.program-header .tagline {
    font-size: 1.1rem;
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

.program-section {
    margin-bottom: 25px;
}

.program-section h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.program-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.program-focus {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.program-focus li {
    padding: 10px 0;
    border-left: 3px solid #ff69b4;
    padding-left: 20px;
    margin-bottom: 10px;
    background: rgba(255, 105, 180, 0.05);
    border-radius: 0 8px 8px 0;
}

.program-focus li strong {
    color: #ff69b4;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .founder-text h2 {
        font-size: 1.8rem;
    }
    
    .founder-text p {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .team-member {
        padding: 25px;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
    
    .team-header h2 {
        font-size: 2rem;
    }
    
    .team-header p {
        font-size: 1rem;
    }
    
    .team-summary-header h2 {
        font-size: 2rem;
    }
    
    .team-summary-header p {
        font-size: 1rem;
    }
    
    .team-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .connection-line.horizontal {
        width: 3px;
        height: 30px;
        margin: 10px 0;
    }
    
    .founder-card .team-member-circle {
        width: 100px;
        height: 100px;
    }
    
    .team-member-circle {
        width: 70px;
        height: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-text {
        padding: 40px 20px;
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .page-header .hero-image {
        display: block;
        min-height: 40vh;
        margin-bottom: 30px;
    }
    
    .page-header .hero-image-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        min-height: 40vh;
    }
    
    .page-header .slideshow-content {
        padding: 8px 12px;
        max-width: 150px;
    }
    
    .page-header .slideshow-content i {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .page-header .slideshow-content p {
        font-size: 0.8rem;
    }
    
    /* Mobile slideshow adjustments */
    .slide img {
        object-position: center;
    }
    
    .slideshow-overlay {
        background: linear-gradient(135deg, rgba(255, 105, 180, 0.8) 0%, rgba(255, 105, 180, 0.6) 50%, rgba(255, 105, 180, 0.4) 100%);
        padding: 15px;
    }
    
    .slideshow-content {
        padding: 8px 12px;
        max-width: 150px;
    }
    
    .slideshow-content i {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .slideshow-content p {
        font-size: 0.8rem;
    }
    
    .page-header .hero-image-placeholder {
        padding: 20px;
    }
    
    .page-header .hero-image-placeholder i {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .page-header .hero-image-placeholder p {
        font-size: 1rem;
    }
    
    .vision-mission .container {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-left, .nav-right {
        display: none !important;
    }
    
    .logo span {
        display: none;
    }
    
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left, .top-bar-right {
        justify-content: center;
        margin-bottom: 5px;
    }
    
    .contact-info span {
        margin-right: 10px;
        font-size: 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .goals-timeline {
        padding: 0 20px;
    }
    
    .goal-item {
        flex-direction: column;
        text-align: center;
    }
    
    .goal-year {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .gallery-items {
        grid-template-columns: 1fr;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .objectives-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mental Health Quotes Responsive */
    .quotes-section {
        padding: 60px 0;
        min-height: 250px;
    }
    
    .quote-container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .quote-text::before,
    .quote-text::after {
        font-size: 3rem;
    }
    
    /* Volunteer Form Modal Responsive */
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}
