body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f7f9f7;
    color: #222;
}

/* HEADER */
.header {
    text-align: center;
    padding: 20px;
    background: #2e7d32;
    color: white;
}

/* HERO */
.hero {
    text-align: center;
    padding: 40px 20px;
    background: white;
}

/* HERO FLEX LAYOUT */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Candidate Image */
.candidate-box img {
    width: 180px;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}

/* SYMBOL BOX */
.symbol-box {
    padding: 15px;
    width: 200px;
    background: #f1f8f2;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #2e7d32;
}

.symbol-box img {
    width: 80px;
    margin-bottom: 10px;
}

.symbol-box p {
    margin: 5px 0;
    font-size: 14px;
    color: #2e7d32;
}

.symbol-box h3 {
    margin: 5px 0;
    font-size: 20px;
    font-weight: bold;
    color: #d32f2f;
}

/* TITLE */
.section-title-genz {
    text-align: center;
    margin-bottom: 25px;
}

.tamil-main {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #2e7d32;
}

.english-sub {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
}

/* PROMISES */
.promises {
    padding: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
}

/* CARDS */
.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.card span {
    display: block;
    font-size: 11px;
    color: #777;
    margin-top: 5px;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
}

/* ACCOUNTABILITY */
.accountability {
    margin: 30px 20px;
    padding: 20px;
    background: #e8f5e9;
    border-left: 5px solid #2e7d32;
    border-radius: 10px;
}

/* FLOATING MESSAGE */
.floating-catch {
    position: fixed;
    right: 20px;
    bottom: 160px;
    width: 220px;
    padding: 15px;
    background: linear-gradient(135deg, #ffffff, #e8f5e9);
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
    text-align: center;
    z-index: 1000;
}

.floating-catch h3 {
    margin: 0;
    font-size: 16px;
    color: #2e7d32;
}

.floating-catch p {
    margin: 5px 0;
    font-weight: bold;
}

.floating-catch span {
    font-size: 11px;
    color: #777;
}

/* PDF BUTTON */
.pdf-button {
    position: fixed;
    right: 20px;
    bottom: 100px;
    background: #2e7d32;
    color: white;
    padding: 12px 15px;
    border-radius: 25px;
    cursor: pointer;
}

/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* MODAL */
.pdf-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    height: 80%;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1100;
}

.pdf-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* HEADER */
.pdf-header {
    padding: 12px;
    background: #2e7d32;
    color: white;
    display: flex;
    justify-content: space-between;
}

/* IFRAME */
.pdf-modal iframe {
    flex: 1;
    border: none;
}

/* DOWNLOAD BUTTON */
.download-btn {
    display: inline-block;
    margin: 10px auto;
    padding: 12px 20px;
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: 0.3s;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(46,125,50,0.4);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #777;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .hero-content {
        flex-direction: column;
    }

    .symbol-box {
        width: 90%;
    }
}