/* style.css */
:root {
    --primary-color: #0056D2; /* Tech Blue */
    --secondary-color: #2ACCCF; /* AI Cyan */
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://source.unsplash.com/1600x900/?technology,education');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #000;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

/* Section Styling */
.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--light-bg);
}

h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

/* Cards (Mission & Programs) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-color);
}

/* Team Table */
.team-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.team-table th, .team-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.team-table th {
    background-color: var(--primary-color);
    color: white;
}


/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.logo-circle {
    /* Bentuk: Membuat gambar menjadi lingkaran */
    border-radius: 50%;
    
    /* Latar Belakang: Memberi warna putih */
    background-color: white;
    
    /* Spasi: Menambah sedikit jarak di sekitar logo di dalam lingkaran */
    padding: 5px; 
    
    /* Efek: Tambahkan sedikit bayangan agar terlihat menonjol (Opsional) */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}