
:root{
    --rose-1: #ffdde1;
    --rose-2: #ffb6b9;
    --accent: #a36c74;
    --mint: #20948B;
    --text: #3b2b2b;
    --muted: #6b6b6b;
    --bg: #fffafc;
}

body {
    background: linear-gradient(180deg, #fff, #fffafc 60%);
    font-family: 'Merriweather', serif ;
    color:var(--text);
}

/* HERO */

.hero-card {
    position: relative;
    z-index:2;
    padding: 30px;
    text-align:center;
    color:#fff;
   border-radius: 14px;
    backdrop-filter: blur(4px);
     border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 50px rgba(16,24,32,0.35);
}
.hero-title {

    font-size: 3.4rem;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.hero-sub {

    font-size:1rem;
    opacity:0.95;
    color: rgba(255,255,255,0.95);
}

/* PETALS */
.petal {
    position: absolute;
    font-size: 3.2rem;
    opacity: 0.14;
    animation: floatY 7s ease-in-out infinite;
}
.petal.small { font-size:2.4rem; opacity:0.12; animation-duration:9s; }
.petal.left { left:6%; bottom:18%; }
.petal.right { right:8%; top:12%; }

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

/* CONTAINER */
.container-lg {
    max-width: 1100px;
    margin: auto;
    padding: 56px 20px;
}

/* FOUNDER */
.founder {
    display:grid;
    grid-template-columns: 1fr 480px;
    gap:20px;
    align-items:start;
    margin-bottom:48px;
}
.founder-portrait {
    width:100%;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(16,24,32,0.12);
}
.founder-portrait img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.founder-content h2 {

    color:var(--accent);
    font-size:2rem;
}

.lead-text {

    color:#444;
    line-height:1.7;
    font-size:1rem;
}

/* STATS */
.stats {
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin:20px 0;
}
.stat-card {
    flex:1 1 180px;
    padding:14px;
    border-radius:12px;
    background:#fff;
    text-align:center;
    box-shadow:0 10px 24px rgba(0,0,0,0.05);
}
.stat-number {

    font-size:1.4rem;
    color:var(--mint);
    font-weight:600;
}
.stat-label { color:var(--muted); font-size:0.9rem; }

/* TIMELINE */
.timeline {
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}
.timeline-item {
    flex:1 1 240px;
    padding:14px;
    background:#fff;
    border-left:4px solid var(--rose-2);
    border-radius:10px;
    box-shadow:0 8px 22px rgba(0,0,0,0.04);
}
.timeline-item h4 {

    color:var(--accent);
    margin:0 0 6px 0;
}

/* SIGNATURE */
.signature {
    margin-top:14px;
    display:flex;
    align-items:center;
    gap:12px;
}
.sig-text { color:var(--muted); }

/* GALLERY */
.gallery {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}
.gallery .card {
    overflow:hidden;
    border-radius:12px;
}
.gallery img {
    width:100%;
    height:480px;
    object-fit:cover;
    transition:0.3s;
}
.gallery .card:hover img { transform:scale(1.05); }

/* COUNTRIES */
.countries {
    margin-top:12px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.country {
    padding:8px 12px;
    font-size:0.9rem;
    border-radius:50px;
    background:rgba(255,183,189,0.14);
    color:var(--accent);
    font-weight:600;
}

/* MOBILE FIXES */
@media (max-width:768px) {
    .hero-title { font-size:2rem; }
    .hero-sub { font-size:0.85rem; }
    .petal { display:none; }

    .founder { display:block; }
    .founder-portrait { margin-bottom:18px; }

    .lead-text { text-align:justify; }

    .gallery { grid-template-columns:1fr; }
    .gallery img { height:380px; }
}
