body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f4f7f6;
    color: #333;
}
.container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}
nav {
    background: #6a1b9a; /* Purple branding */
    color: #fff;
    padding: 1rem 0;
}
nav ul {
    float: right;
    list-style: none;
    margin-top: 5px;
}
nav li { display: inline; margin-left: 20px; }
nav a { color: #fff; text-decoration: none; font-weight: bold; }
.logo { font-size: 1.5rem; font-weight: bold; text-decoration: none; color: white; }

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('biju_photo.jpg'); /* Replace with your landscape photo */
    background-size: cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
}
.card {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.btn {
    display: inline-block;
    background: #1976d2; /* Professional Blue */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
    margin-top: 50px;
}
iframe { border: 2px solid #6a1b9a; border-radius: 5px; }
/* Report Page Custom Style */
.report-container {
    padding: 20px 0;
}
.download-section {
    text-align: right;
    margin-bottom: 20px;
}
.download-btn {
    background: #e91e63; /* ??? ??? ? ?????? ?? */
    padding: 12px 25px;
    font-size: 1.1rem;
}
.content-display h3 {
    color: #6a1b9a;
    border-left: 5px solid #6a1b9a;
    padding-left: 10px;
    margin-top: 30px;
    background: #f3e5f5;
    padding: 10px;
}
.mission-box {
    background: #1976d2;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
}
.mission-box h3 {
    color: white;
    background: transparent;
    border: none;
    padding: 0;
}

/* Hero Section Layout */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 20px;
    flex-wrap: wrap;
    background: #f9f9f9;
    border-radius: 15px;
}

.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 6px solid #6a1b9a; /* ????? ???????? ????? ?? */
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Election Symbol Box */
.symbol-box {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin: 20px 0;
    border: 2px solid #6a1b9a;
    box-shadow: 0 4px 10px rgba(106, 27, 154, 0.2);
}

.symbol-img {
    width: 80px; /* ?????? ???? ??? ?????? ?????? */
    height: auto;
    margin-right: 15px;
}

.symbol-text p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.constituency-info {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 25px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .hero-flex { flex-direction: column; text-align: center; }
    .symbol-box { flex-direction: column; border-radius: 20px; }
    .symbol-img { margin-right: 0; margin-bottom: 10px; }
}

/* Center the social feed title */
.social-updates .section-title {
    margin-bottom: 20px;
    text-align: center;
}

/* Fix for Juicer Social Feed */
.social-updates {
    margin: 40px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.juicer-feed .referral {
    display: none !important; /* Removes 'Powered by Juicer' link */
}

/* Match the 'Load More' button to your theme */
.juicer-button {
    background-color: #6a1b9a !important; 
    color: white !important;
    border-radius: 50px !important;
    font-weight: bold !important;
}

/* Ensure images don't overflow on mobile */
.juicer-feed.modern li.feed-item {
    border: 1px solid #eee !important;
    border-radius: 10px !important;
}