body {
        margin: 0;
        font-family: 'PT Sans', sans-serif;
        background-color: #fafafa;
        color: #222;
        overflow-x: hidden;
    }

    /* ---------- Hero Section ---------- */
   .hero {
      position: relative;
      height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      background: url('https://cdn.pixabay.com/photo/2020/06/09/15/32/camp-5278843_640.png') center/cover no-repeat;
    }

    .hero h1 {
        font-size: 4rem;
        letter-spacing: 1px;
        animation: fadeInDown 2s ease forwards;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.3rem;
        max-width: 700px;
        line-height: 1.6;
        animation: fadeInUp 2s ease forwards;
    }

    /* ---------- Content Section ---------- */
    .content {
        padding: 4rem 10%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        background: linear-gradient(180deg, #f9fff9 0%, #e8ffe8 100%);
    }

    /* ---------- Card Design ---------- */
    .card {
        width: 100%;
        max-width: 1000px; /* landscape style on desktop */
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.078);
        padding: 2rem 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(40px);
    }

    .card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        cursor: pointer;
    }

    .card h2 {
        color: #ff9800;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

    .card p {
        color: #555;
        line-height: 1.7;
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }

    .bold {
        font-weight: 600;
        color:#ff9800;
    }

    /*Founder's css code*/
    #founder {
        text-decoration: none;
        color: #555
    }


    /* ---------- Animations ---------- */
    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-50px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(50px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 1024px) {
        .card {
            max-width: 90%; /* adjust width for smaller screens */
        }
    }

    @media (max-width: 768px) {
        .hero h1 { font-size: 2.8rem; }
        .hero p { font-size: 1rem; }
        .card {
            max-width: 100%; /* mobile takes full width */
            padding: 1.5rem;
        }
    }