/*Font Styles*/

.barlow-thin {font-family: "Barlow", sans-serif; font-weight: 100; font-style: normal;}
.barlow-extralight {font-family: "Barlow", sans-serif; font-weight: 200;font-style: normal;}
.barlow-light {font-family: "Barlow", sans-serif;font-weight: 300;font-style: normal;}
.barlow-regular {font-family: "Barlow", sans-serif; font-weight: 400; font-style: normal;}
.barlow-medium {font-family: "Barlow", sans-serif; font-weight: 500; font-style: normal;}
.barlow-semibold {font-family: "Barlow", sans-serif; font-weight: 600; font-style: normal;}
.barlow-bold {font-family: "Barlow", sans-serif; font-weight: 700; font-style: normal;}
.barlow-extrabold {font-family: "Barlow", sans-serif; font-weight: 800; font-style: normal;}
.barlow-black {font-family: "Barlow", sans-serif; font-weight: 900;font-style: normal;}
.barlow-thin-italic {font-family: "Barlow", sans-serif; font-weight: 100; font-style: italic;}
.barlow-extralight-italic {font-family: "Barlow", sans-serif; font-weight: 200;font-style: italic;}
.barlow-light-italic {font-family: "Barlow", sans-serif; font-weight: 300;font-style: italic;}
.barlow-regular-italic {font-family: "Barlow", sans-serif;font-weight: 400; font-style: italic;}
.barlow-medium-italic {font-family: "Barlow", sans-serif; font-weight: 500; font-style: italic;}
.barlow-semibold-italic {font-family: "Barlow", sans-serif; font-weight: 600; font-style: italic;}
.barlow-bold-italic {font-family: "Barlow", sans-serif; font-weight: 700; font-style: italic;}
.barlow-extrabold-italic {font-family: "Barlow", sans-serif; font-weight: 800; font-style: italic;}
.barlow-black-italic {font-family: "Barlow", sans-serif; font-weight: 900; font-style: italic;}


/*Colors*/



:root { --kpy-primary: #8f6a00;
--kpy-secondary: #ffd70a;
--warm-orange: #e8935c; 
--dark: #1a1a1a; 
--light: #f8f9fa; 
--warm-orange: #e8935c; 
 --card-shadow: 0 10px 30px -15px rgba(0,0,0,0.2);
}



/* General Heading Styles */

/* General H1 Styles */
h1 {
    font-size: 3.5rem;
    color: var(--kpy-primary);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--kpy-secondary), var(--warm-orange));
    border-radius: 3px;
}

/* General H2 Styles - Based on children-stories-section-title */
h2, .section-title {
    font-size: 2.5rem;
    color: var(--kpy-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 1.3;
}

h2::after, .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--kpy-secondary), var(--warm-orange));
    border-radius: 2px;
}

/* General H3 Styles */
/*h3 {*/
/*    font-size: 1.8rem;*/
/*    color: var(--kpy-primary);*/
/*    font-weight: 500;*/
/*    margin-bottom: 1rem;*/
/*    position: relative;*/
/*    padding-left: 20px;*/
/*    line-height: 1.4;*/
/*}*/

/*h3::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    width: 5px;*/
/*    height: 25px;*/
/*    background: linear-gradient(180deg, var(--kpy-secondary), var(--warm-orange));*/
/*    border-radius: 3px;*/
/*}*/

/* Section subtitle general styles */
.section-subtitle, .section-description {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem auto;

}

/* Responsive adjustments for general headings */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h1::after {
        width: 80px;
        height: 4px;
        bottom: -12px;
    }
    
    h2, .section-title {
        font-size: 2rem;
    }
    
    h2::after, .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
    
    h3 {
        font-size: 1.5rem;
        padding-left: 15px;
    }
    
    h3::before {
        width: 4px;
        height: 20px;
    }
    
    .section-subtitle, .section-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2, .section-title {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .section-subtitle, .section-description {
        font-size: 1rem;
    }
}


ul { margin-bottom: 1.8rem; }
li { margin-bottom: 0.7rem; color: #555; position: relative; padding-left: 1.8rem; }
 
/*//---------------------HOMEPAGE CSS------------------//*/

/*//---------------------Hero Slider CSS------------------//*/

.hero { height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg-slide { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; background: rgba(232, 147, 92, 0.75);}
.hero-bg-slide.active { opacity: 0.4; }
.hero-slider { position: relative; width: 100%; height: 100%; z-index: 2; }
.hero-slide { position: absolute; width: 100%; height: 100%; display: flex; align-items: center; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 3; text-align: center; color: #fff; width: 100%; padding: 0 20px; }
.hero-title { font-family: 'Barlow', sans-serif; font-size: 4.5rem; font-weight: 900; margin-bottom: 1rem; line-height: 1.2; color: #fff;  }
.hero-subtext { font-size: 25px; color: #fff; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; }
.btn-gold, .btn-outline { padding: 12px 30px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
.btn-gold { background: var(--kpy-secondary); color: var(--kpy-primary); box-shadow: 0 4px 15px rgba(255, 215, 10, 0.3); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 215, 10, 0.4); }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--kpy-primary); }
.hero-side-image { position: relative; z-index: 3; width: 400px; height: 400px; object-fit: cover; transition: transform 0.5s ease; }
.hero-slide.active .hero-side-image { animation: fadeInRight 0.8s ease forwards; }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@media (max-width: 992px) { .hero-side-image { max-height: 300px; margin-top: 30px; } }
@media (max-width: 768px) { .hero-title { font-size: 2.5rem; } .hero-subtext { font-size: 1.1rem; color: #fff; } .hero-side-image { display: none; } }
.slider-controls { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 20px; z-index: 4; }
.slider-prev, .slider-next { background: rgba(255, 255, 255, 0.3); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
.slider-prev:hover, .slider-next:hover { background: rgba(255, 255, 255, 0.5); }
.slider-dots { display: flex; gap: 10px; }
.slider-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); cursor: pointer; transition: all 0.3s ease; }
.slider-dot.active { background: var(--kpy-secondary); transform: scale(1.2); }
.hero-bg-slide { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 1s ease; } .hero-bg-slide.active { opacity: 1; } .hero-bg-slide .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(232, 147, 92, 0.65); z-index: 1; }


/*//---------------------STATS CSS------------------//*/


.stats-bar { background-color: linear-gradient(#e8935c, #e8935c); color: #fff; padding: 2rem 0; position: relative; z-index: 5; }
.stats-bar .container { display: flex; justify-content: space-around; text-align: center; }
.stat-item h3 { font-size: 2.5rem; margin-bottom: 0.5rem; color: var(--kpy-secondary); }
.stat-item p { font-size: 1.1rem; opacity: 0.9; }


/*//---------------------SERVICE CARDS CSS------------------//*/


.project-cards-grid { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 120px; }
.project-card { flex: 1 1 25%; min-width: 250px; color: #fff; padding: 40px 30px; position: relative; overflow: hidden; transition: transform 0.3s ease; background-size: contain; background-position: bottom; }
.project-card:hover { transform: scale(1.2); }
.project-card::after { content: ""; background-image: url('../images/Sunflower-lame.webp'); background-size: cover; background-position: center; opacity: 0.3; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; transition: background-image 0.4s ease, opacity 0.4s ease; }
.project-card:hover::after { background-image: url('../images/sunflower-disabled.jpeg'); opacity: 0.2; }
.project-card-content { position: relative; z-index: 1; }
.project-card h3 { margin-top: 6px; margin-bottom: 16px; font-size: 22px; line-height: 28px; color: #fff; font-weight: 700; }
.project-card p { margin-bottom: 6px; font-size: 17px; line-height: 28px; color: #e9e9e9; font-weight: 500; }
.project-card .arrow { display: inline-block; margin-top: 20px; font-size: 20px; transition: transform 0.3s ease; color: #fff; font-weight: 700; }
.project-card.persistent-zoom { transform: scale(1.2); z-index: 10; }
.project-card.persistent-zoom::after { background-image: url('../images/sunflower-unable.jpg'); opacity: 0.2; z-index: -1; }
.project-card:hover .arrow { transform: translateX(5px); }
.bg-light-orange { background-color: #4f3c00; }  
.bg-light-teal   { background-color: #a95e36; }   
.bg-light-purple { background-color: #3b3226; }  
.bg-light-blue   { background-color: #b89a00; }  



/*//---------------------ABOUT SECTION CSS------------------//*/


.section-wrapper { position: relative; height: 100vh; display: flex; justify-content: center; align-items: center; overflow: hidden; background-color: #f8f9fa; }
.contact-text, .contact-image { position: absolute; color:#fff; width: 55%; height: 60%; transition: transform 1.2s ease, opacity 1.2s ease; opacity: 0; border-radius: 10px; }
.contact-text { background: #e8935c; font-size: 19px; color: #fff; padding: 40px 30px; bottom: 10%; right: 10%; z-index: 2; display: flex; flex-direction: column; justify-content: center; transform: translateX(120%); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
.contact-image { top: 10%; left: 10%; z-index: 1; transform: translateX(-120%); }
.contact-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.in-view .contact-text { transform: translateX(0); opacity: 1; }
.in-view .contact-image { transform: translateX(0); opacity: 1; }
.background-svgs { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0; }
.floating-svg { position: absolute; opacity: 0.8; z-index: 0; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.svg-1 { width: 180px; top: 5%; right: 5%; left: auto; animation: float 8s ease-in-out infinite; }
.svg-2 { width: 120px; top: 15%; right: 15%; left: auto; animation: float 6s ease-in-out infinite reverse; }
.svg-3 { width: 150px; bottom: 10%; left: 5%; top: auto; animation: float 10s ease-in-out infinite; }
.svg-4 { width: 100px; bottom: 20%; left: 15%; top: auto; animation: float 7s ease-in-out infinite reverse; }
@keyframes float { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } 100% { transform: translateY(0) rotate(0deg); } }
@media (max-width: 768px) { .stats-bar .container { flex-direction: column; gap: 2rem; } .project-card { flex: 1 1 100%; } .contact-text, .contact-image { width: 90%; height: auto; padding: 20px; position: static; transform: translateY(100%); margin: 20px auto; } .contact-image img { height: 300px; } .in-view .contact-text, .in-view .contact-image { transform: translateY(0); opacity: 1; } .section-wrapper { flex-direction: column; height: auto; padding: 40px 20px; } .floating-svg { width: 100px !important; opacity: 0.6; } .svg-1 { top: 2%; right: 2%; } .svg-2 { top: 10%; right: 10%; } .svg-3 { bottom: 5%; left: 2%; } .svg-4 { bottom: 15%; left: 10%; } .hero-buttons { flex-direction: column; align-items: center; } .btn-gold, .btn-outline { width: 100%; justify-content: center; } }
.counter { font-size: 2.5rem; font-weight: bold; color: var(--kpy-secondary); transition: all 0.5s ease; }
.counter.animated { animation: pulse 0.5s ease; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }


/*//---------------------OUR JOURNEY CSS------------------//*/


.journey-section { padding: 2rem 0 2rem;margin: 6rem 0 0 0; background: rgb(255 193 7 / 10%); overflow: hidden; }
.journey-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


.section-subtitle { text-align: center; font-size: 1.2rem; color: #7f8c8d; max-width: 700px; margin: 0 auto 3rem; line-height: 1.6; }
.timeline { display: flex; justify-content: space-between; position: relative; margin-top: 4rem; padding: 0 2rem; }
.timeline::before { content: ''; position: absolute; top: 50%; left: 5%; right: 5%; height: 6px; background: linear-gradient(90deg, var(--kpy-primary), var(--secondary)); transform: translateY(-50%); z-index: 1; border-radius: 3px; box-shadow: 0 2px 10px var(--kpy-primary); }
.timeline-item { width: 28%; position: relative; z-index: 2; transition: all 0.5s ease; }
.timeline-content { background: #fff; padding: 2.5rem 1.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); text-align: center; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; }
.timeline-content::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--kpy-primary), var(--kpy-secondary)); }
.timeline-content:hover { transform: translateY(-15px) scale(1.03); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); }
.timeline-icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-secondary)); border-radius: 50%; color: #fff; font-size: 2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.timeline-item:hover .timeline-icon { transform: rotate(15deg) scale(1.1); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.timeline-content h3 { color: #2c3e50; font-size: 1.5rem; margin-bottom: 1rem; position: relative; padding-bottom: 0.5rem; }
.timeline-content h3::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 2px; background: var(--primary); }
.timeline-content p { color: #7f8c8d; line-height: 1.7; font-size: 1rem; }
@media (max-width: 768px) { .timeline { flex-direction: column; align-items: center; } .timeline::before { top: 0; left: 50%; height: 100%; width: 6px; transform: translateX(-50%); } .timeline-item { width: 80%; margin-bottom: 3rem; } .timeline-item:last-child { margin-bottom: 0; } }



/*//---------------------SUCCESS STORIES CSS------------------//*/
.success-stories-circles{position:relative;padding:50px 20px;text-align:center;color:var(--dark);overflow:hidden;background-image:url('../images/able.jpg');background-size:cover;background-position:center;background-repeat:no-repeat;background-attachment:fixed}
.success-stories-circles::before{content:'';position:absolute;inset:0;background-color:rgba(255,165,0,0.6);z-index:0}
.success-stories-circles .container{position:relative;z-index:1}
/*.success-stories-circles .section-header h2{margin-bottom:2rem;color:#fff;font-weight:700}*/
.circle-stories-wrapper{display:flex;flex-wrap:nowrap;gap:40px;justify-content:center}
.circle-card{width:360px;height:360px;border-radius:50%;overflow:hidden;position:relative;padding:0;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;background:#e8935c;box-shadow:0 4px 15px rgba(0,0,0,0.15);transition:transform 0.3s ease;cursor:pointer}
.card-image-wrapper{width:120px;height:120px;border-radius:50%;overflow:hidden;z-index:2;transition:all 0.4s ease;position:relative}
.card-image-wrapper img{width:100%;height:100%;object-fit:cover;transition:all 0.4s ease}
.card-content{margin-top:20px;z-index:2;background:rgba(255,255,255,0.85);padding:10px 20px;border-radius:10px;transition:all 0.3s ease}
.circle-card:hover .card-image-wrapper{width:100%;height:100%;border-radius:0;position:absolute;top:0;left:0}
.circle-card:hover .card-image-wrapper img{transform:scale(1.1)}
.circle-card:hover .card-content{opacity:0;pointer-events:none}
.highlight{font-weight:bold;color:#d35400}@media(max-width:768px){.circle-stories-wrapper{flex-direction:column;align-items:center;gap:20px}}


/*//---------------------Service page CSS------------------//*/





.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem;  margin-top: 3rem;}
.service-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--card-shadow); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; z-index: 1; border:1px solid #f9f9f9 ;}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px -15px rgba(0,0,0,0.3); }
.service-card:after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(255,215,10,0.1) 0%, rgba(232,147,92,0.1) 100%); z-index: -1; opacity: 0; transition: opacity 0.3s ease; }
.service-card:hover:after { opacity: 1; }
.card-header { height: 180px; background: linear-gradient(135deg, var(--kpy-secondary) 0%, var(--warm-orange) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.card-header:before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%); transform: rotate(30deg); }
.card-icon { font-size: 4rem; color: white; position: relative; z-index: 2; text-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.card-body { padding: 2rem; position: relative; }
.card-body h3 { color: var(--kpy-primary); margin-bottom: 1rem; font-size: 1.5rem; position: relative; padding-bottom: 10px; }
.card-body h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--kpy-secondary); border-radius: 3px; }
.card-body p { color: #fff; margin-bottom: 1.5rem; }
.service-btn { display: inline-flex; align-items: center; padding: 0.8rem 1.5rem; background-color: var(--kpy-primary); color: white; border-radius: 30px; text-decoration: none; font-weight: 500; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(143, 106, 0, 0.2); }
.service-btn:hover { background-color: var(--warm-orange); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232, 147, 92, 0.3); }
.service-btn i { margin-left: 8px; transition: transform 0.3s ease; }
.service-btn:hover i { transform: translateX(3px); }

@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } .container { padding: 1.5rem; } }

/*//---------------------Service Single page CSS------------------//*/

:root { --kpy-primary: #8f6a00; --kpy-secondary: #ffd70a; --warm-orange: #e8935c; --dark: #1a1a1a; --light: #f8f9fa; --card-shadow: 0 10px 30px -15px rgba(0,0,0,0.2); --border-radius: 15px; --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15); }

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Barlow', sans-serif; line-height: 1.6; color: var(--dark); overflow-x: hidden; }

.hero-section { height: 70vh; background: linear-gradient(135deg, var(--kpy-primary), var(--warm-orange)); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }

.hero-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('assets/images/hero-bg.jpg') center/cover; opacity: 0.2; }

.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); }

.hero-content { text-align: center; color: white; z-index: 2; position: relative; }

.hero-icon { width: 100px; height: 100px; margin: 0 auto 2rem; background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); border: 2px solid rgba(255, 255, 255, 0.3); }

.hero-icon i { font-size: 3rem; color: white; }

.hero-content h1 { font-family: 'Montserrat', sans-serif; font-size: 3.5rem; font-weight: 900; margin-bottom: 1rem; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }

.hero-content p { font-size: 1.3rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

.overview-section { padding: 100px 0; background: white; }

.overview-content h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }

.overview-content p { font-size: 1.2rem; color: #666; margin-bottom: 2rem; line-height: 1.8; }

.quick-stats { display: flex; gap: 2rem; margin-top: 2rem; }

.stat-item { text-align: center; }

.stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: var(--kpy-primary); font-family: 'Montserrat', sans-serif; }

.stat-label { font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }

.overview-image { position: relative; }

.overview-image::before { content: ''; position: absolute; top: 20px; right: 20px; width: 100%; height: 100%; background: linear-gradient(45deg, var(--kpy-primary), var(--warm-orange)); border-radius: var(--border-radius); z-index: -1; }

.overview-image img { border-radius: var(--border-radius); box-shadow: var(--card-shadow); }

.focus-areas-section { padding: 100px 0; background: linear-gradient(135deg, var(--light), #e9ecef); }

.section-title { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 4rem; color: var(--dark); }

.focus-card { background: white; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--card-shadow); transition: all 0.3s ease; height: 100%; }

.focus-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.focus-image { height: 200px; overflow: hidden; position: relative; }

.focus-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }

.focus-card:hover .focus-image img { transform: scale(1.1); }

.focus-content { padding: 2rem; text-align: center; position: relative; }

.focus-icon { position: absolute; top: -25px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; background: var(--kpy-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; }

.focus-content h4 { margin-top: 1rem; margin-bottom: 1rem; font-weight: 600; color: var(--dark); }

.focus-content p { color: #666; font-size: 0.95rem; }

.approach-section { padding: 100px 0; background: white; }

.approach-content h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }

.approach-content p { font-size: 1.2rem; color: #666; margin-bottom: 2rem; line-height: 1.8; }

.approach-features { display: flex; flex-direction: column; gap: 1rem; }

.feature-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--light); border-radius: 10px; transition: all 0.3s ease; }

.feature-item:hover { background: var(--kpy-primary); color: white; transform: translateX(10px); }

.feature-item i { font-size: 1.5rem; color: var(--kpy-primary); width: 30px; text-align: center; }

.feature-item:hover i { color: white; }

.approach-images { position: relative; }

.image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; height: 400px; }

.grid-img-1 { grid-row: span 2; width: 100%; height: 100%; object-fit: cover; border-radius: var(--border-radius); box-shadow: var(--card-shadow); }

.grid-img-2 { width: 100%; height: 100%; object-fit: cover; border-radius: var(--border-radius); box-shadow: var(--card-shadow); }

.outcomes-section { padding: 100px 0; background: linear-gradient(135deg, var(--dark), #2c2c2c); color: white; }

.outcomes-header h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }

.outcomes-header p { font-size: 1.2rem; opacity: 0.8; margin-bottom: 4rem; }

.outcome-card { background: rgba(255, 255, 255, 0.1); border-radius: var(--border-radius); overflow: hidden; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); transition: all 0.3s ease; height: 100%; }

.outcome-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.15); }

.outcome-visual { height: 200px; position: relative; overflow: hidden; }

.outcome-bg { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }

.outcome-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); border: 2px solid rgba(255, 255, 255, 0.3); }

.outcome-icon i { font-size: 2rem; color: white; }

.outcome-content { padding: 2rem; text-align: center; }

.outcome-content h4 { margin-bottom: 1rem; font-weight: 600; }

.outcome-content p { opacity: 0.8; font-size: 0.95rem; }

.cta-section { padding: 80px 0; background: linear-gradient(135deg, var(--kpy-primary), var(--kpy-secondary)); color: white; }

.cta-content h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }

.cta-content p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; }

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn { padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: 2px solid transparent; display: inline-block; text-align: center; min-width: 160px; }

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

.btn-primary:hover { background: transparent; color: white; border-color: white; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }

.btn-outline { background: transparent; color: white; border-color: white; }

.btn-outline:hover { background: white; color: var(--kpy-primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }

@media (max-width: 768px) { .hero-content h1 { font-size: 2.5rem; } .hero-content p { font-size: 1.1rem; } .overview-content h2, .approach-content h2, .section-title { font-size: 2rem; } .quick-stats { justify-content: center; } .image-grid { grid-template-columns: 1fr; height: auto; } .grid-img-1 { grid-row: span 1; height: 250px; } .grid-img-2 { height: 200px; } .cta-buttons { flex-direction: column; align-items: center; } .approach-features { margin-top: 2rem; } .feature-item:hover { transform: none; } }

@media (max-width: 576px) { .hero-section { height: 60vh; } .hero-content h1 { font-size: 2rem; } .hero-icon { width: 80px; height: 80px; } .hero-icon i { font-size: 2rem; } .overview-section, .focus-areas-section, .approach-section, .outcomes-section { padding: 60px 0; } .quick-stats { flex-direction: column; gap: 1rem; } }

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

.fade-in-up { animation: fadeInUp 0.8s ease forwards; }

html { scroll-behavior: smooth; }

.btn:focus, .focus-card:focus, .outcome-card:focus { outline: 3px solid var(--warm-orange); outline-offset: 2px; }
/*MENU STYLES*/

 :root{--primary-orange:#ff7b3d;--primary-yellow:#f4b942;--primary-green:#27ae60;--primary-blue:#3498db;--primary-purple:#9b59b6;--gradient-warm:linear-gradient(135deg,#ff7b3d 0%,#f4b942 100%);--gradient-cool:linear-gradient(135deg,#3498db 0%,#9b59b6 100%);--dark-bg:#2c3e50;--darker-bg:#1a252f;--text-dark:#2c3e50;--text-light:#7f8c8d;--shadow-soft:0 8px 32px rgba(0,0,0,0.15);--shadow-glow:0 0 20px rgba(255,123,61,0.3);--border-radius:16px}*{margin:0;padding:0;box-sizing:border-box;font-family:'Barlow',sans-serif}body{padding-top:140px;color:var(--text-dark);background:linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);min-height:100vh;font-weight:300}
 .clinic-menu-container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--dark-bg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-soft);
}

.clinic-menu-container.sticky {
    background: var(--darker-bg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.clinic-menu-container.sticky .clinic-top-bar {
    height: 0;
    opacity: 0;
    transform: translateY(-100%);
}

.clinic-menu-container.sticky .clinic-logo-container {
    transform: translateY(-10px) scale(0.8);
}

.clinic-top-bar {
    height: 50px;
    background: linear-gradient(#e8935c, #d87c45);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #8f6a00;
}

.clinic-top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(#e8935c, #e8935c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clinic-top-bar:hover::before {
    opacity: 1;
}

.clinic-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.clinic-contact-info {
    display: flex;
    align-items: center;
    gap: 40px;
}

.clinic-contact-info {
    padding: 4rem 0;
    background-color: #fff;
}

.clinic-contact-info a {
    color: #8f6a00;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.clinic-contact-info a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 25px;
    z-index: -1;
}

.clinic-contact-info a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.clinic-contact-info a:hover::before {
    left: 0;
}

.clinic-contact-info i {
    color: var(--primary-yellow);
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(244, 185, 66, 0.6));
}

.clinic-social-icons {
    display: flex;
    gap: 12px;
}

.clinic-social-icons a {
    width: 35px;
    height: 35px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

.clinic-social-icons a:hover {
    background: #fff;
    color: var(--primary-orange);
    transform: translateY(-4px) scale(1.15);
    box-shadow: 0 10px 30px rgba(255, 123, 61, 0.4);
}

.clinic-main-nav {
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    transition: all 0.3s ease;
    background: #fff;
}

/*Logo Styles*/
.clinic-logo-container {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clinic-logo-link {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 10%;
    padding: 5px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid #fff;
}

.clinic-logo-link:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 35px rgba(255, 123, 61, 0.6);
}

.clinic-logo-img {
    width: 180%;
    height: 180%;
    object-fit: cover;
    border-radius: 1%;
    background: #fff;
}

/*Navigation Styles*/
.clinic-nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
    margin-left: 120px;
}

.clinic-nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.clinic-nav-links>li {
    position: relative;
}

.clinic-nav-links>li>a {
    color: #8f6a00;
    text-decoration: none;
    margin-top: 50px;
    margin-bottom: 7px;
    font-weight: 300;
    font-size: 22px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    letter-spacing: 0.3px;
    border-radius: 12px;
    background: transparent;
}

.clinic-nav-links>li>a:hover,
.clinic-nav-links>li.active>a {
    color: #fff;
    background: linear-gradient(#e8935c, #d87c45);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 123, 61, 0.3);
}

/*Dropdown Styles*/
.clinic-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 350px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 123, 61, 0.1);
    overflow: hidden;
    margin-top: 8px;
}

.clinic-nav-links>li:hover .clinic-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.clinic-dropdown li {
    position: relative;
}

.clinic-dropdown li a {
    display: block;
    padding: 16px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.clinic-dropdown li:last-child a {
    border-bottom: none;
}

.clinic-dropdown li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(#e8935c, #d87c45);
    transition: width 0.3s ease;
    z-index: -1;
}

.clinic-dropdown li a:hover {
    color: #fff;
    padding-left: 32px;
}

.clinic-dropdown li a:hover::before {
    width: 100%;
}

/*Donate Button Styles*/
.clinic-donate-btn-container {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.clinic-donate-btn {
    background: linear-gradient(#e8935c, #d87c45);
    color: #fff !important;
    padding: 16px 24px !important;
    font-weight: 400 !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    box-shadow: 0 8px 25px rgba(255, 123, 61, 0.4) !important;
    border: none !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    clip-path: polygon(20% 0%, 80% 0%, 100% 30%, 100% 70%, 80% 100%, 20% 100%, 0% 70%, 0% 30%) !important;
    min-width: 100px !important;
    font-size: 16px !important;
}

.clinic-donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#e8935c, #d87c45);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.clinic-donate-btn:hover {
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: 0 15px 40px rgba(255, 123, 61, 0.6) !important;
}

.clinic-donate-btn:hover::before {
    opacity: 1;
}


/* Mobile Menu Button */
.clinic-mobile-menu-btn {
    display: none;
    background: linear-gradient(#e8935c, #d87c45);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    box-shadow: 0 4px 15px rgba(255, 123, 61, 0.3);
}

.clinic-mobile-menu-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 123, 61, 0.5);
}

.clinic-mobile-menu-btn.active {
    background: #fff;
    color: #e8935c;
    transform: translateY(-50%) rotate(90deg);
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    body {
        padding-top: 80px;
    }

    /* Show mobile menu button */
    .clinic-mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        right: 20px;
    }

    /* Hide desktop top bar */
    .clinic-top-bar {
        display: none;
    }

    /* Menu container adjustments */
    .clinic-menu-container {
        height: 80px;
        overflow: hidden;
        transition: height 0.4s ease;
    }

    .clinic-menu-container.expanded {
        height: 100vh;
        background: #2c3e50 !important;
        overflow-y: auto;
    }

    /* Main nav adjustments */
    .clinic-main-nav {
        height: 80px;
        flex-direction: row;
        padding: 0;
        justify-content: flex-start;
        position: relative;
    }

    /* Logo adjustments for mobile */
    .clinic-logo-container {
        left: 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%) scale(0.8);
        z-index: 1001;
    }

    .clinic-logo-link {
        width: 60px;
        height: 60px;
    }

    /* Navigation center - hidden by default, shown when expanded */
    .clinic-nav-center {
        display: none;
        margin-left: 0;
        width: 100%;
        padding: 20px;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #2c3e50 !important;
        min-height: calc(100vh - 80px);
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        z-index: 999;
    }

    /* Show navigation when menu is expanded */
    .clinic-menu-container.expanded .clinic-nav-center {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Navigation links styling */
    .clinic-nav-links {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .clinic-nav-links > li {
        width: 100%;
    }

    .clinic-nav-links > li > a {
        width: 100%;
        padding: 16px 20px;
        color: #fff !important;
        justify-content: space-between;
        border-radius: 8px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px);
        margin: 0;
        display: flex;
        align-items: center;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .clinic-nav-links > li > a:hover,
    .clinic-nav-links > li.active > a {
        background: linear-gradient(#e8935c, #d87c45) !important;
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(232, 147, 92, 0.3);
        color: #fff !important;
    }

    /* Dropdown arrow icon */
    .clinic-nav-links > li > a i {
        margin-left: auto;
        transition: transform 0.3s ease;
        font-size: 12px;
    }

    .clinic-nav-links > li.active > a i {
        transform: rotate(180deg);
    }

    /* Mobile dropdown styles */
    .clinic-dropdown {
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        display: none !important;
        background: rgba(0, 0, 0, 0.3) !important;
        border-radius: 8px;
        margin: 8px 0 0 0;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        list-style: none;
        padding: 0;
    }

    /* Show dropdown when parent is active */
    .clinic-nav-links > li.active .clinic-dropdown {
        display: block !important;
    }

    .clinic-dropdown li {
        width: 100%;
    }

    .clinic-dropdown li a {
        display: block;
        color: rgba(255, 255, 255, 0.9);
        padding: 14px 20px 14px 35px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-decoration: none;
        transition: all 0.3s ease;
        background: transparent;
    }

    .clinic-dropdown li:last-child a {
        border-bottom: none;
    }

    .clinic-dropdown li a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        padding-left: 45px;
    }

    /* Mobile donate button */
    .clinic-donate-btn-container {
        position: static;
        transform: none;
        margin: 25px 0 15px;
        width: 100%;
        padding: 0;
    }

    .clinic-donate-btn {
        width: 100%;
        padding: 16px !important;
        font-size: 16px !important;
        clip-path: none !important;
        border-radius: 8px !important;
        text-align: center;
        justify-content: center;
        background: linear-gradient(#e8935c, #d87c45) !important;
        color: #fff !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        box-shadow: 0 6px 20px rgba(255, 123, 61, 0.4) !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }

    .clinic-donate-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(255, 123, 61, 0.6) !important;
    }
}

/* Smaller mobile devices */
@media (max-width: 576px) {
    .clinic-logo-container {
        left: 15px;
        transform: translateY(-50%) scale(0.7);
    }

    .clinic-logo-link {
        width: 50px;
        height: 50px;
    }

    .clinic-mobile-menu-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
        right: 15px;
    }

    .clinic-nav-center {
        padding: 15px;
    }

    .clinic-nav-links > li > a {
        padding: 14px 18px;
        font-size: 15px;
    }

    .clinic-dropdown li a {
        padding: 12px 18px 12px 30px;
        font-size: 14px;
    }

    .clinic-dropdown li a:hover {
        padding-left: 35px;
    }
}



        /*CONTACT PAGE STYLES*/
        
        * { box-sizing: border-box; padding: 0; margin: 0; }

body { line-height: 1.7; color: var(--text); background-color: var(--light); }
.flower-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flower-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg=='); opacity: 0.6; }
.flower-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.flower-hero h1 { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; }
.flower-hero p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; }
.flower-contact-info { padding: 6rem 0; background: #fff; position: relative; overflow: hidden; }
.flower-contact-info::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.flower-info-boxes { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-top: 3rem; }
.flower-info-box { background: #fff; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); width: 280px; transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; }
.flower-info-box:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.flower-info-box i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1.5rem; background: rgba(232, 147, 92, 0.1); width: 70px; height: 70px; line-height: 70px; border-radius: 50%; display: inline-block; text-align: center; }
.flower-info-box h3 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--secondary); }
.flower-info-box p { color: var(--text-light); }
.flower-contact-section { padding: 4rem 0; background-color: #f5f7fa; }
.flower-contact-container { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.flower-form-container, .flower-map-container { flex: 1 1 500px; background-color: #fff; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; }
.flower-form-header { background-color: var(--primary); color: #fff; padding: 1.5rem; }
.flower-form-header h3 { font-size: 1.5rem; }
.flower-form-header p { opacity: 0.8; font-size: 0.9rem; }
.flower-form-body { padding: 2rem; }
.flower-form-group { margin-bottom: 1.5rem; }
.flower-form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--text); }
.flower-form-control { width: 100%; padding: 0.8rem 1rem; border: 1px solid #ddd; border-radius: 6px; font-family: 'Inter', sans-serif; transition: border-color 0.3s ease; }
.flower-form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(42, 93, 103, 0.1); }
textarea.flower-form-control { min-height: 150px; resize: vertical; }
.flower-submit-btn { background-color: var(--accent); color: #fff; border: none; padding: 0.8rem 2rem; font-size: 1rem; font-weight: 600; border-radius: 6px; cursor: pointer; transition: all 0.3s ease; width: 100%; }
.flower-submit-btn:hover { background-color: #6aa56c; transform: translateY(-2px); }
.flower-map-header { background-color: var(--primary); color: #fff; padding: 1.5rem; }
.flower-map-header h3 { font-size: 1.5rem; }
.flower-map-header p { opacity: 0.8; font-size: 0.9rem; }
.flower-map-body { padding: 1.5rem; }
.flower-map-wrapper { height: 400px; border-radius: 6px; overflow: hidden; margin-bottom: 1.5rem; }
.flower-map-wrapper iframe { width: 100%; height: 100%; border: none; }
.flower-social-icons { display: flex; justify-content: center; gap: 1rem; }
.flower-social-icon { width: 40px; height: 40px; border-radius: 50%; background-color: #f0f2f5; display: flex; align-items: center; justify-content: center; color: var(--primary); transition: all 0.3s ease; }
.flower-social-icon:hover { background-color: var(--primary); color: #fff; transform: translateY(-3px); }
@media (max-width: 768px) {
  .flower-hero h1 { font-size: 2.2rem; }
  .flower-info-box { width: 100%; }
  .flower-newsletter-form { flex-direction: column; border-radius: 6px; }
  .flower-newsletter-btn { padding: 0.8rem; }
}



/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 200;
    color: var(--kpy-secondary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.8rem;
    font-weight: 200;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

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

/* About Section */
.story-about-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
    margin-bottom: 10px; /* Added spacing */
}

.story-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600267165477-6d4cc741b379?q=80&w=2070&auto=format&fit=crop') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.story-about-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 0; /* Added padding */
}

/*.story-about-content h2 {*/
/*    font-size: 32px;*/
/*    color: var(--kpy-primary);*/
/*    margin-bottom: 2rem;*/
/*    position: relative;*/
/*    display: inline-block;*/
/*}*/

/*.story-about-content h2:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -15px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 100px;*/
/*    height: 5px;*/
/*    background: var(--kpy-secondary);*/
/*}*/

.story-about-content p {
    font-size: 22px;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

/* Mission Section */
.story-mission-section {
    background: linear-gradient(135deg, rgba(143, 106, 0, 0.1), rgba(232, 147, 92, 0.1));
    padding: var(--section-padding);
    position: relative;
    margin: 10px 0; 
}

.story-mission-graphic {
    position: absolute;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23e8935c" opacity="0.2" d="M50,0 C70,20 80,40 100,50 C80,60 70,80 50,100 C30,80 20,60 0,50 C20,40 30,20 50,0 Z"/></svg>') center/contain no-repeat;
    opacity: 0.3;
}

.story-mission-graphic-1 {
    top: 50px;
    left: 50px;
}

.story-mission-graphic-2 {
    bottom: 50px;
    right: 50px;
    transform: rotate(45deg);
}

.story-mission-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 40px; /* Increased padding */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/*.story-mission-container h2 {*/
    font-size: 32px; /* Increased size */
/*    color: var(--kpy-primary);*/
/*    margin-bottom: 2rem;*/
/*    text-align: center;*/
/*}*/

.story-mission-container p {
    font-size: 22px;
    margin-bottom: 2rem;
    text-align: center;
}

.story-mission-highlight {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--kpy-primary);
    text-align: center;
    padding: 30px;
    margin: 60px 0; /* Increased margin */
    position: relative;
    background: rgba(232, 147, 92, 0.1);
    border-radius: 8px;
}

.story-mission-highlight:before, 
.story-mission-highlight:after {
    content: '"';
    font-size: 4rem;
    color: var(--warm-orange);
    opacity: 0.3;
    position: absolute;
}

.story-mission-highlight:before {
    top: 0;
    left: 20px;
}

.story-mission-highlight:after {
    bottom: -30px;
    right: 20px;
}

/* Vision Section */
.story-vision-section {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?q=80&w=2022&auto=format&fit=crop') fixed center/cover;
    padding: 80px 20px; 
    color: #fff;
    text-align: center;
    position: relative;
    margin: 30px 0; 
}

.story-vision-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 40px 0; /* Added padding */
}

/*.story-vision-content h2 {*/
/*    font-size: 3rem;*/
/*    color: var(--kpy-secondary);*/
/*    margin-bottom: 2rem;*/
/*}*/

.story-vision-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #fff;
}

.story-vision-icon {
    font-size: 4rem;
    color: var(--kpy-secondary);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Content Sections */
.story-content-section {
    padding: 80px 0;
    margin: 40px 0;
}

.story-section-title {
    text-align: center;
    margin-bottom: 60px;
}

/*.story-section-title h2 {*/
/*    font-size: 2.5rem;*/
/*    color: var(--kpy-primary);*/
/*    margin-bottom: 1rem;*/
/*}*/

.story-section-title p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Two Column Layout */
.story-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.story-two-column img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.story-two-column h3 {
    font-size: 1.8rem;
    color: var(--kpy-primary);
    margin-bottom: 20px;
}

.story-two-column p {
    margin-bottom: 20px;
}

/* Full Width Section */
.story-full-width-section {
    background-color: var(--kpy-secondary);
    padding: var(--section-padding);
    color: var(--dark);
}

.story-full-width-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/*.story-full-width-content h2 {*/
/*    font-size: 2.2rem;*/
/*    margin-bottom: 20px;*/
/*}*/

/* Values List */
.story-values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.story-value-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.story-value-item:hover {
    transform: translateY(-10px);
}

.story-value-icon {
    font-size: 2.5rem;
    color: var(--kpy-primary);
    margin-bottom: 20px;
}

.story-value-title {
    font-size: 1.5rem;
    color: var(--kpy-primary);
    margin-bottom: 15px;
}

/* Team Grid */
.story-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.story-team-member {
    text-align: center;
}

.story-member-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.story-member-name {
    font-size: 1.3rem;
    color: var(--kpy-primary);
    margin-bottom: 5px;
}

.story-member-role {
    color: #555;
    font-weight: 200;
    margin-bottom: 15px;
}

/* Stats Container */
.story-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    text-align: center;
}

.story-stat-number {
    font-size: 3rem;
    font-weight: 200;
    color: var(--kpy-primary);
    margin-bottom: 10px;
}

.story-stat-label {
    font-size: 1.1rem;
    color: var(--dark);
}

.story-social-links {
    margin: 30px 0;
}

.story-social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.story-social-links a:hover {
    color: var(--kpy-secondary);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .story-two-column {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .story-mission-container {
        padding: 30px;
    }
    
    .story-mission-highlight {
        font-size: 1.2rem;
        padding: 20px;
    }
    
    /*.story-about-content h2, */
    /*.story-vision-content h2 {*/
    /*    font-size: 28px;*/
    /*}*/
    
    .story-about-content p, 
    .story-vision-content p {
        font-size: 18px;
    }
    
    .story-mission-section,
    .story-vision-section,
    .story-about-section {
        margin: 40px 0;
        padding: 40px 20px;
    }
}

/* Animation Styles */
.story-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.story-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/*FOOTER STYLES*/

.sunflower-footer { position: relative; background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat; color: var(--light-cream); padding: 60px 20px 40px; border-radius: 12px 12px 0 0; box-shadow: 0 -5px 20px rgba(0,0,0,0.15); overflow: hidden; }

.sunflower-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(90, 74, 26, 0.95) 0%, rgba(138, 107, 59, 0.85) 100%); z-index: 0; }

.footer-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; color: #fff; }

.footer-column h3 { font-size: 18px; color: #fff; margin-bottom: 15px; position: relative; }

.footer-column h3::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 40px; height: 2px; background-color: var(--primary-yellow); color: #fff; }

.footer-column p, .footer-column a { color: #fff; line-height: 1.6; font-size: 16px; margin-bottom: 12px; display: block; text-decoration: none; transition: all 0.3s ease; }

.footer-column a:hover { color: var(--primary-yellow); transform: translateX(4px); }

.footer-bottom { position: relative; z-index: 1; text-align: center; padding-top: 25px; margin-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.15); font-size: 13px; color: rgba(245, 245, 245, 0.7); }

.back-to-top { position: fixed; bottom: 25px; right: 25px; width: 45px; height: 45px; background-color: var(--primary-brown); color: var(--light-cream); border: 2px solid var(--primary-yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; cursor: pointer; box-shadow: 0 3px 10px rgba(0,0,0,0.3); transition: all 0.3s ease; z-index: 999; }

.back-to-top:hover { transform: translateY(-5px); background-color: #8a6b3b; }

.sunflower-icon { display: inline-block; width: 28px; height: 28px; background-color: var(--primary-yellow); border-radius: 50%; margin-right: 8px; vertical-align: middle; }

@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; }
}


/*WHO WE ARE PAGE STYLES*/

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Barlow', sans-serif; }

body { background-color: var(--light); color: var(--text); overflow-x: hidden; line-height: 1.6; }

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; font-weight: 200; color: var(--kpy-secondary); text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }

.tagline { font-size: 1.8rem; font-weight: 200; margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; color: #fff; }

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

.story-about-section { position: relative; padding: var(--section-padding); overflow: hidden; }

.story-about-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('assets/images/sunflower 3.jpg') center/cover; opacity: 0.15; z-index: 0; }

.story-about-content { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; text-align: center; }

/*.story-about-content h2 { font-size: 32px; color: var(--kpy-primary); margin-bottom: 2rem; position: relative; display: inline-block; }*/

/*.story-about-content h2:after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 100px; height: 5px; background: var(--kpy-secondary); }*/

.story-about-content p { font-size: 22px; margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }

.story-mission-section { background: linear-gradient(135deg, rgba(143, 106, 0, 0.1), rgba(232, 147, 92, 0.1)); padding: var(--section-padding); position: relative; }

.story-mission-graphic { position: absolute; width: 200px; height: 200px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23e8935c" opacity="0.2" d="M50,0 C70,20 80,40 100,50 C80,60 70,80 50,100 C30,80 20,60 0,50 C20,40 30,20 50,0 Z"/></svg>') center/contain no-repeat; opacity: 0.3; }

.story-mission-graphic-1 { top: 50px; left: 50px; }

.story-mission-graphic-2 { bottom: 50px; right: 50px; transform: rotate(45deg); }

.story-mission-container { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; background: #fff; padding: 60px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/*.story-mission-container h2 { font-size: 22px; color: var(--kpy-primary); margin-bottom: 2rem; text-align: center; }*/

.story-mission-container p { font-size: 22px; color: #555; margin-bottom: 2rem; text-align: center; }

.story-mission-highlight { font-size: 1.5rem; font-style: italic; color: var(--kpy-primary); text-align: center; padding: 30px; margin: 40px 0; position: relative; }

.story-mission-highlight:before, .mission-highlight:after { content: '"'; font-size: 4rem; color: var(--warm-orange); opacity: 0.3; position: absolute; }

.story-mission-highlight:before { top: 0; left: 20px; }

.story-mission-highlight:after { bottom: -30px; right: 20px; }

.story-vision-section { background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?q=80&w=2022&auto=format&fit=crop') fixed center/cover; padding: var(--section-padding); color: #fff; text-align: center; position: relative; }

.story-vision-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }

/*.story-vision-content h2 { font-size: 3rem; color: var(--kpy-secondary); margin-bottom: 2rem; }*/

.story-vision-content p { font-size: 1.3rem; line-height: 1.8; margin-bottom: 2rem; }

.story-vision-icon { font-size: 4rem; color: var(--kpy-secondary); margin-bottom: 2rem; animation: float 3s ease-in-out infinite; }

@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }



.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.two-column img { width: 100%; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.two-column h3 { font-size: 1.8rem; color: var(--kpy-primary); margin-bottom: 20px; }

.two-column p { margin-bottom: 20px; }

.full-width-section { background-color: var(--kpy-secondary); padding: var(--section-padding); color: var(--dark); }

.full-width-content { max-width: 800px; margin: 0 auto; text-align: center; }

/*.full-width-content h2 { font-size: 2.2rem; margin-bottom: 20px; }*/

.values-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }

.value-item { text-align: center; padding: 30px; background-color: #fff; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }

.value-item:hover { transform: translateY(-10px); }

.value-icon { font-size: 2.5rem; color: var(--kpy-primary); margin-bottom: 20px; }

.value-title { font-size: 1.5rem; color: var(--kpy-primary); margin-bottom: 15px; }

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

.team-member { text-align: center; }

.member-photo { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }

.member-name { font-size: 1.3rem; color: var(--kpy-primary); margin-bottom: 5px; }

.member-role { color: var(--warm-orange); font-weight: 200; margin-bottom: 15px; }

.stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin: 60px 0; text-align: center; }

.stat-number { font-size: 3rem; font-weight: 200; color: var(--kpy-primary); margin-bottom: 10px; }

.stat-label { font-size: 1.1rem; color: var(--dark); }

.cta-section { background-color: var(--warm-orange); padding: var(--section-padding); text-align: center; color: #fff; }

/*.cta-section h2 { font-size: 32px; margin-bottom: 20px; }*/

.cta-button { display: inline-block; background: var(--dark); color: #fff; padding: 15px 40px; border-radius: 50px; font-size: 22px; font-weight: 200; text-decoration: none; margin-top: 20px; transition: all 0.3s ease; }

.cta-button:hover { background: var(--kpy-primary); transform: translateY(-3px); }

.social-links { margin: 30px 0; }

.social-links a { color: #fff; font-size: 1.5rem; margin: 0 15px; transition: color 0.3s ease; }

.social-links a:hover { color: var(--kpy-secondary); }

@media (max-width: 768px) {
  .two-column { grid-template-columns: 1fr; }
  h1 { font-size: 2.5rem; }
  .tagline { font-size: 1.4rem; }
  .mission-container { padding: 30px; }
  .mission-highlight { font-size: 1.2rem; padding: 20px; }
  /*.story-about-content h2, .vision-content h2 { font-size: 28px; }*/
  .story-about-content p, .vision-content p { font-size: 25px; }
}

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }

.fade-in.visible { opacity: 1; transform: translateY(0); }


/*TEAM MEMBERS SYTLES*/

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Barlow', sans-serif; font-weight: 200; font-size: 17px; line-height: 1.7; color: var(--dark); background: radial-gradient(ellipse at center, #ffffff 0%, var(--light) 100%); min-height: 100vh; overflow-x: hidden; }

.container { max-width: 1600px; margin: 0 auto; padding: 0 40px; }

.team-section { padding: 10px 0; background: transparent; }



.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 80px; }

.team-card { position: relative; background: transparent; border-radius: 0; overflow: visible; transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); cursor: pointer; height: 500px; }

.card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); transform-style: preserve-3d; }

.team-card:hover .card-inner { transform: rotateY(180deg); }

.card-front, .card-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 30px; overflow: hidden; }

.card-back { transform: rotateY(180deg); background: linear-gradient(135deg, var(--kpy-primary) 0%, var(--warm-orange) 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; color: #fff; text-align: center; padding: 60px 40px; }

.card-front { background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,0.12); border: 1px solid rgba(143, 106, 0, 0.1); }

.photo-container { position: relative; width: 100%; height: 70%; overflow: hidden; border-radius: 30px 30px 0 0; }

.member-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; filter: grayscale(0%) contrast(1.1) brightness(1.05); }

.team-card:hover .member-photo { transform: scale(1.1); }

.photo-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(143, 106, 0, 0.2) 0%, rgba(232, 147, 92, 0.3) 50%, rgba(255, 215, 10, 0.2) 100%); opacity: 0; transition: opacity 0.6s ease; }

.team-card:hover .photo-overlay { opacity: 1; }

.card-content { position: absolute; bottom: 0; left: 0; right: 0; background: #fff; padding: 40px 30px; text-align: center; height: 30%; display: flex; flex-direction: column; justify-content: center; }

.member-name { font-size: 26px; font-weight: 300; color: var(--dark); margin-bottom: 12px; letter-spacing: 0.5px; }

.member-role { font-size: 18px; font-weight: 200; color: var(--kpy-primary); text-transform: uppercase; letter-spacing: 1.5px; }

.social-media { display: flex; justify-content: center; gap: 25px; margin-top: 30px; }

.social-link { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; text-decoration: none; transition: all 0.4s ease; backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.3); }

.social-link:hover { background: #fff; color: var(--kpy-primary); transform: translateY(-5px) scale(1.1); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }

.back-quote { font-size: 22px; font-weight: 200; line-height: 1.6; font-style: italic; margin-bottom: 30px; opacity: 0.95; color: #fff; }

.team-card:nth-child(1) { transform: rotate(-1deg); }
.team-card:nth-child(2) { transform: rotate(1deg) translateY(20px); }
.team-card:nth-child(3) { transform: rotate(-0.5deg); }
.team-card:nth-child(4) { transform: rotate(0.8deg) translateY(-15px); }
.team-card:nth-child(5) { transform: rotate(-1.2deg); }
.team-card:nth-child(6) { transform: rotate(0.6deg) translateY(10px); }

.team-card:hover { transform: rotate(0deg) translateY(-20px) scale(1.05); z-index: 10; }

@media (max-width: 1200px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 3rem; }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-card { height: 450px; }
  .container { padding: 0 20px; }
  .story-section-title h3 { font-size: 2.8rem; }
  /*.story-section-title h2 { font-size: 2.8rem; }*/
  .story-section-title h1 { font-size: 2.8rem; }
}

.team-card::before { content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px; background: linear-gradient(45deg, var(--kpy-secondary), var(--warm-orange), var(--kpy-primary)); border-radius: 35px; z-index: -1; opacity: 0; transition: opacity 0.6s ease; }

.team-card:hover::before { opacity: 0.3; animation: glowPulse 2s ease-in-out infinite alternate; }

@keyframes glowPulse { 0% { opacity: 0.3; } 100% { opacity: 0.6; } }





/*.story-section-title, .story-section-title h2 {text-align: center; font-size: 3.8rem; font-weight: 200; color: var(--kpy-primary); margin-bottom: 25px; letter-spacing: -0.5px; left: 50%;}*/

/*.story-section-title h2:after { content: ''; position: absolute; bottom: -10px; left: 50%;  width: 80px; height: 4px; background: var(--kpy-secondary); }*/

.story-section-title p { font-size: 20px; font-weight: 200; color: #666; max-width: 600px; margin: 0 auto; letter-spacing: 0.3px; }


/*BREADCRUMB STYLES*/

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; }

.page-hero { position: relative; color: #fff; overflow: hidden; height: 350px; display: flex; flex-direction: column; justify-content: center; padding: 100px 0 80px 0; background-image: url('https://images.unsplash.com/photo-1549741669-eab99fe172a8?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); background-size: cover; background-position: center; background-attachment: fixed; }

.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(232, 147, 92, 0.75); backdrop-filter: blur(1px); z-index: 1; }

.page-hero::after { 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"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="80" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="2" fill="rgba(255,255,255,0.12)"/><circle cx="75" cy="80" r="1.2" fill="rgba(255,255,255,0.08)"/><circle cx="10" cy="60" r="0.8" fill="rgba(255,255,255,0.18)"/><circle cx="60" cy="15" r="1.8" fill="rgba(255,255,255,0.06)"/></svg>') repeat; animation: float 25s ease-in-out infinite; z-index: 1; }

@keyframes float { 0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 1; } 33% { transform: translateY(-15px) translateX(10px) rotate(120deg); opacity: 0.8; } 66% { transform: translateY(-5px) translateX(-8px) rotate(240deg); opacity: 0.9; } }

.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }

.hero-breadcrumb { margin-bottom: 40px; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; list-style: none; margin: 0; padding: 0; font-size: 14px; justify-content: center; }

.breadcrumb-item { display: flex; align-items: center; }
.breadcrumb-item:not(:last-child)::after { content: '→'; margin: 0 12px; color: rgba(255, 255, 255, 0.8); font-size: 14px; font-weight: 600; }
.breadcrumb-link { color: rgba(255, 255, 255, 0.95); text-decoration: none; padding: 8px 16px; border-radius: 25px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.25); font-weight: 500; position: relative; overflow: hidden; }
.breadcrumb-link::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.5s; }
.breadcrumb-link:hover::before { left: 100%; }
.breadcrumb-link:hover { color: #fff; background: rgba(255, 255, 255, 0.25); transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); border-color: rgba(255, 255, 255, 0.4); }
.breadcrumb-link:focus { outline: 2px solid rgba(255, 255, 255, 0.9); outline-offset: 2px; }
.breadcrumb-current { color: #fff; font-weight: 700; padding: 8px 20px; background: rgba(255, 255, 255, 0.3); border-radius: 25px; backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.4); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.home-icon { width: 16px; height: 16px; margin-right: 6px; vertical-align: text-bottom; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); }
.hero-content { text-align: center; animation: fadeInUp 1.2s ease-out; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; margin-bottom: 20px; color: #fff; line-height: 1.1; letter-spacing: -0.02em;  }
.hero-subtitle { font-size: clamp(1.1rem, 3vw, 1.5rem); margin-bottom: 25px; opacity: 0.95; max-width: 650px; margin-left: auto; margin-right: auto; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); font-weight: 400; }
.hero-description { font-size: 17px; opacity: 0.92; max-width: 550px; margin: 0 auto 35px auto; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); line-height: 1.7; }.hero-actions { margin-top: 40px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn { padding: 14px 32px; border-radius: 35px; text-decoration: none; font-weight: 600; font-size: 16px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer; position: relative; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.6s; }
.btn:hover::before { left: 100%; }
.btn-primary { background: #fff; color: #e8935c; box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2); }
.btn-primary:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25); background: rgba(255, 255, 255, 0.95); }
.btn-outline { background: rgba(255, 255, 255, 0.1); color: #fff; border: 2px solid rgba(255, 255, 255, 0.6); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.2); color: #fff; transform: translateY(-4px) scale(1.05); border-color: #fff; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); }
.hero-decoration { position: absolute; top: 30px; right: 30px; width: 120px; height: 120px; border: 3px solid rgba(255, 255, 255, 0.2); border-radius: 50%; animation: decorationFloat 6s ease-in-out infinite; backdrop-filter: blur(10px); z-index: 2; }
@keyframes decorationFloat { 0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; border-color: rgba(255, 255, 255, 0.2); } 50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; border-color: rgba(255, 255, 255, 0.4); } }
.hero-decoration::after { content: '✨'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 35px; animation: sparkle 3s ease-in-out infinite; }
@keyframes sparkle { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.2); } }
@media (max-width: 768px) {
  .page-hero { padding: 80px 0 60px 0; min-height: 350px; background-attachment: scroll; }
  .hero-container { padding: 0 15px; }
  .breadcrumb { font-size: 13px; justify-content: center; }
  .breadcrumb-item:not(:last-child)::after { margin: 0 8px; }
  .breadcrumb-link, .breadcrumb-current { padding: 6px 12px; font-size: 12px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 220px; justify-content: center; padding: 12px 28px; }
  .hero-decoration { width: 80px; height: 80px; top: 20px; right: 20px; }
  .hero-decoration::after { font-size: 24px; }
}
@media (max-width: 480px) {
  .breadcrumb { flex-direction: column; gap: 8px; }
  .breadcrumb-item:not(:last-child)::after { display: none; }
  .hero-decoration { display: none; }
}




/*CHILDREN'S STORIES STYLES*/

:root {
            --kpy-primary: #8f6a00;
            --kpy-secondary: #ffd70a;
            --warm-orange: #e8935c;
            --dark: #1a1a1a;
            --light: #f8f9fa;
        }

* {margin: 0; padding: 0; box-sizing: border-box;}

body {line-height: 1.6; color: var(--dark); background: var(--light); overflow-x: hidden;}
.children-stories-container {max-width: 1400px; margin: 0 auto; padding: 0 20px;}

        /* Animated Background */
        .children-stories-floating-elements {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: -1;
        }

        .children-stories-floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .children-stories-shape-1 { top: 20%; left: 10%; animation-delay: 0s; }
        .children-stories-shape-2 { top: 60%; right: 10%; animation-delay: 2s; }
        .children-stories-shape-3 { bottom: 30%; left: 15%; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* Header */
        .children-stories-header {
            background: linear-gradient(135deg, var(--kpy-primary), var(--warm-orange));
            color: white;
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .children-stories-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,215,10,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .children-stories-h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .children-stories-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Stories Section */
        .children-stories-section {
            padding: 5rem 0;
            position: relative;
        }

        .children-stories-section-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        .children-stories-section-title {
            font-size: 2.5rem;
            color: var(--kpy-primary);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            align-items: center;
            justify-content: center;
        }

        .children-stories-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--kpy-secondary), var(--warm-orange));
            border-radius: 2px;
        }

        .children-stories-section-description {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Stories Grid */
        .children-stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        /* Story Cards */
        .children-stories-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
        }

        .children-stories-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--kpy-secondary), var(--warm-orange));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .children-stories-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .children-stories-card:hover::before {
            transform: scaleX(1);
        }

        .children-stories-card-image-container {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .children-stories-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .children-stories-card:hover .children-stories-card-image {
            transform: scale(1.1);
        }

        .children-stories-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, var(--kpy-primary)40, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .children-stories-card:hover .children-stories-image-overlay {
            opacity: 1;
        }

        .children-stories-age-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--kpy-secondary);
            color: var(--dark);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .children-stories-card-content {
            padding: 2rem;
            position: relative;
        }

        .children-stories-name {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--kpy-primary);
            margin-bottom: 0.5rem;
        }

        .children-stories-condition {
            color: var(--warm-orange);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .children-stories-preview {
            color: #666;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .children-stories-progress-section {
            margin-bottom: 1.5rem;
        }

        .children-stories-progress-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .children-stories-progress-bar {
            width: 100%;
            height: 8px;
            background: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .children-stories-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--kpy-primary), var(--warm-orange));
            border-radius: 10px;
            transition: width 2s ease-in-out;
            position: relative;
        }

        .children-stories-progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .children-stories-read-more-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--kpy-primary), var(--warm-orange));
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .children-stories-read-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .children-stories-read-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(143, 106, 0, 0.3);
        }

        .children-stories-read-more-btn:hover::before {
            left: 100%;
        }

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

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

        .children-stories-modal-content {
            position: relative;
            background: white;
            margin: 2% auto;
            padding: 0;
            width: 90%;
            max-width: 900px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
            animation: slideUp 0.4s ease;
            max-height: 95vh;
            overflow-y: auto;
        }

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

        .children-stories-modal-header {
            position: relative;
            height: 300px;
            background: linear-gradient(135deg, var(--kpy-primary), var(--warm-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .children-stories-modal-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 1200 120"><path d="M0,80L80,85C160,90,320,100,480,95C640,90,800,70,960,65C1120,60,1280,70,1360,75L1440,80V120H0Z" fill="rgba(255,255,255,0.1)"/></svg>') bottom;
            background-size: cover;
        }

        .children-stories-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: rgba(0,0,0,0.3);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .children-stories-modal-close:hover {
            background: var(--warm-orange);
            transform: scale(1.1);
        }

        .children-stories-modal-child-info {
            position: relative;
            z-index: 2;
        }

        .children-stories-modal-child-name {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .children-stories-modal-child-details {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .children-stories-modal-body {
            padding: 3rem;
        }

        .children-stories-modal-story-section {
            margin-bottom: 3rem;
        }

        .children-stories-modal-section-title {
            font-size: 1.8rem;
            color: var(--kpy-primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 20px;
        }

        .children-stories-modal-section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 30px;
            background: linear-gradient(180deg, var(--kpy-secondary), var(--warm-orange));
            border-radius: 3px;
        }

        .children-stories-modal-story-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 2rem;
        }

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

        .children-stories-achievement-item {
            background: linear-gradient(135deg, var(--light), #fff);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 5px solid var(--kpy-secondary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .children-stories-achievement-title {
            font-weight: bold;
            color: var(--kpy-primary);
            margin-bottom: 0.5rem;
        }

        /* Statistics */
        .children-stories-stats-container {
            background: linear-gradient(135deg, var(--kpy-secondary), var(--warm-orange));
            padding: 3rem 0;
            margin: 4rem 0;
            border-radius: 25px;
            text-align: center;
        }

        .children-stories-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .children-stories-stat-item {
            color: var(--dark);
        }

        .children-stories-stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            display: block;
        }

        .children-stories-stat-label {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .children-stories-h1 {
                font-size: 2.2rem;
            }

            .children-stories-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .children-stories-modal-content {
                width: 95%;
                margin: 5% auto;
            }

            .children-stories-modal-body {
                padding: 2rem 1.5rem;
            }

            .children-stories-achievements-grid {
                grid-template-columns: 1fr;
            }

            .children-stories-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .children-stories-card {
                margin: 0 10px;
            }
            
            .children-stories-modal-child-name {
                font-size: 2rem;
            }
            
            .children-stories-stats-grid {
                grid-template-columns: 1fr;
            }
        }