 body, html {
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
            background: #f7f7f7;
            color: #222;
            scroll-behavior: smooth;
        }
        .parallax {
            /* background-image: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1500&q=80'); */
            background-image: url("images/home.png");
            min-height: 60vh;
            background-attachment: fixed;
            background-position: top;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
            flex-direction: column;
        }
        .parallax h1 {
            font-size: 3rem;
            margin: 0;
            letter-spacing: 2px;
        }
        .parallax p {
            font-size: 1.5rem;
            margin-top: 1rem;
            max-width: 600px;
            text-align: center;
        }
        section {
            padding: 60px 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .messages {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        .message-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            padding: 30px 24px 24px 24px;
            width: 320px;
            transition: transform 0.2s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .message-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 8px 32px rgba(0,0,0,0.13);
        }
        .message-card img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 16px;
            border: 3px solid #6c63ff22;
        }
        .message-card .caption {
            font-size: 0.95rem;
            color: #888;
            margin-bottom: 10px;
            text-align: center;
        }
        .message-card .message-text {
            font-size: 1.08rem;
            margin-bottom: 18px;
            text-align: center;
        }
        .message-card .author {
            margin-top: 8px;
            font-weight: bold;
            color: #6c63ff;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .message-card .view-more-btn {
            margin-top: 16px;
            padding: 8px 18px;
            background: #6c63ff;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .message-card .view-more-btn:hover {
            background: #554ee0;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .gallery img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.10);
            transition: transform 0.2s;
            object-fit: cover;
            height: 420px;
        }
        .gallery img:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 24px rgba(0,0,0,0.18);
        }
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 36px;
            color: #6c63ff;
            letter-spacing: 1px;
        }
        @media (max-width: 600px) {
            /* .parallax{
                background-image: url("images/amandaateh-herosection.jpeg");
            } */
            .parallax h1 { font-size: 25px; }
            .parallax p { font-size: 1.2rem; }
            .message-card { width: 100%; }
            .gallery img { height: 420px; }
        }
        /* Scroll effect */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
        }
        .fade-in.visible {
            opacity: 1;
            transform: none;
        }