 
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}
 
/*=====PUNCAK ALAM====*/

.hero-section-palam {
    position: relative;
    width: 100%;
    
    background-image:
        linear-gradient(rgba(46,26,71,0.7), rgba(46,26,71,0.3)),
        url('../image/uitm\ puncak\ alam.jpg');
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 80px 50px;
    flex-direction: column;
    gap: 20px;
    padding: 60px 20px;

    clip-path: ellipse(150% 100% at 50% 0%);
    z-index: 1;

}

/* ===== HERO TEXT ===== */
.hero-text-container {
    color: white;
    text-align: center;
    width: 100%;
}

.hero-text-container h1 {
    font-size: 50px;
    margin: 0 auto 10px;
    font-weight: bold;
}

.purple-line {
    width: 90px;
    height: 4px;
    background: #7b4dff;
    margin: 0 auto 15px;
    border-radius: 5px;
}




.puncak-alam-section {
    padding: 40px 50px;
    text-align: center;
    background: #f4f6f8;

}

        .pa-card-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;

            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            padding: 20px;
            margin: 40px auto 0 auto;
            max-width: 1200px;
            width: 100%;
        }

        .pa-card {
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
            transition: 0.3s;

            flex: 0 1 calc(18% - 18px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 150px;
            text-decoration: none;
            color: #000000;
            font-weight: bold;
            text-align: center;
            border: 1px solid #d8bfff;
   
        }

        .pa-card:hover {
            transform: translateY(-20px);

        }

        /*color*/
        .purple { 
            background: linear-gradient(135deg, #dfd1f4, #efeaf7); 
            border: 1px solid #dcd0ff;
        }

        .pa-card h3 {
            margin: 0;
            font-size: 20px;
            color: #333;
        }

        .pa-card i {
            font-size: 40px;      /* Saiz ikon yang ideal */
            color: #5b1d6d;      /* Warna ungu gelap (ikut tema h2 anda) */
            margin-bottom: 15px; /* Jarak antara ikon dan tajuk */
            transition: 0.3s;    /* Animasi halus */
        }

        /* Animasi Ikon semasa Hover */
        .pa-card:hover i {
            transform: scale(1.2) rotate(5deg); /* Ikon membesar & senget sikit */
            color: #7a0059;                    /* Warna bertukar sikit */
        }

        /* Kemaskan Teks dalam Kotak */
        .pa-card h3 {
            font-size: 15px;     /* Saiz tajuk yang lebih kemas */
            margin: 0;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pa-card p {
            font-size: 12px;
            color: #888;         /* Warna kelabu cair untuk '...' */
            margin-top: 8px;
        }
