/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0056b3;
    --secondary-blue: #1e88e5;
    --light-blue: #e3f2fd;
    --red: #d32f2f;
    --dark-red: #b71c1c;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --accent: #ff4081;
    --gray: #666;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header with University Building Background */
header {
    background: linear-gradient(rgba(0, 86, 179, 0.85), rgba(0, 61, 130, 0.9)), 
                url('https://instagram.febb1-1.fna.fbcdn.net/v/t51.2885-19/357639891_2415093551985456_889375887879189096_n.jpg?stp=dst-jpg_s320x320_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby42MDAuYzIifQ&_nc_ht=instagram.febb1-1.fna.fbcdn.net&_nc_cat=100&_nc_oc=Q6cZ2QGS4L8CpUHTZ4DS6VCv6pkCzEeEGtrwSqHoZOJrVAnxfZv6ntWfkc-sWx2b5livp54&_nc_ohc=pACiRagZQekQ7kNvwGl_Wu8&_nc_gid=XM6fGWfABgtNVVFSWEXfjg&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfsSdHDHCE-YHd7Uhg_3L8iYc163FXMfdhoeUHUGSE4xmA&oe=698A96EF&_nc_sid=8b3546');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: left;
    gap: 15px;
}

/* .logo-icon { 
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
} */
.logo-icon {
    width: 100%;
    max-width: 50px;
    aspect-ratio: 1 / 1;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.candidate-name {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.position {
    font-size: 0.9rem;
    opacity: 0.9;
}

.vote-button {
    background-color: var(--red);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.vote-button:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.4);
}

/* Election Countdown */
.countdown-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.countdown-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 5px;
}

.election-date {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 5px;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(to right, var(--light-blue) 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(30, 136, 229, 0.1);
    top: -150px;
    right: -100px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(211, 47, 47, 0.1);
    bottom: -100px;
    left: -50px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.candidate-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame {
    width: 320px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 8px solid var(--white);
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 86, 179, 0.1), rgba(30, 136, 229, 0.1));
    z-index: 1;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.hero-text {
    flex: 1;
}

.tagline {
    color: var(--red);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tagline i {
    font-size: 1.5rem;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    line-height: 1.1;
}

.hero h1 span {
    color: var(--red);
}

.position-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.slogan {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-weight: 600;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.btn {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: rgba(0, 86, 179, 0.05);
    transform: translateY(-3px);
}

/* Manifesto Section */
.manifesto {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--red);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--dark-gray);
    max-width: 800px;
    margin: 25px auto 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.commitment-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border-top: 5px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.commitment-card:nth-child(2) {
    border-top-color: var(--secondary-blue);
}

.commitment-card:nth-child(3) {
    border-top-color: var(--red);
}

.commitment-card:nth-child(4) {
    border-top-color: var(--accent);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.commitment-card:nth-child(2) .card-icon {
    background: rgba(30, 136, 229, 0.1);
    color: var(--secondary-blue);
}

.commitment-card:nth-child(3) .card-icon {
    background: rgba(211, 47, 47, 0.1);
    color: var(--red);
}

.commitment-card:nth-child(4) .card-icon {
    background: rgba(255, 64, 129, 0.1);
    color: var(--accent);
}

.commitment-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.commitment-card ul {
    list-style: none;
    margin-top: 20px;
}

.commitment-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.commitment-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.commitment-card:nth-child(2) ul li::before {
    color: var(--secondary-blue);
}

.commitment-card:nth-child(3) ul li::before {
    color: var(--red);
}

.commitment-card:nth-child(4) ul li::before {
    color: var(--accent);
}

/* Reasons to Vote Section */
.reasons {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.reasons-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reason-box {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--red);
    display: flex;
    gap: 30px;
    align-items: center;
    transition: all 0.3s;
}

.reason-box:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reason-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--red);
    opacity: 0.3;
    min-width: 80px;
}

.reason-content h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Feedback Section */
.feedback-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 5px solid var(--light-blue);
}

.feedback-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.feedback-form-container {
    flex: 1;
    min-width: 300px;
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feedback-form-container h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.feedback-form-container p {
    color: var(--gray);
    margin-bottom: 30px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    transition: all 0.3s;
}

.checkbox-item:hover {
    background: rgba(0, 86, 179, 0.05);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
}

.checkbox-item label {
    font-weight: normal;
    cursor: pointer;
    font-size: 0.95rem;
}

.form-group label input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--primary-blue);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 2px solid #27ae60;
    display: block;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 2px solid #e74c3c;
    display: block;
}

.feedback-info {
    flex: 1;
    min-width: 300px;
}

.issues-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.issue-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.issue-item h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.issue-item h4 i {
    color: var(--accent);
}

.feedback-stats {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.feedback-stats h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.privacy-note {
    background: var(--light-blue);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(0, 86, 179, 0.2);
}

.privacy-note h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-note h4 i {
    color: var(--red);
}

/* Call to Action */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 61, 130, 0.95)), 
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-big-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--red);
    color: var(--white);
    padding: 20px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-big-button:hover {
    background-color: var(--dark-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.election-info {
    margin-top: 30px;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--red);
    bottom: 0;
    left: 0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

.copyright p {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .image-frame {
        width: 280px;
        height: 350px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .feedback-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .slogan {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .reason-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .reason-number {
        min-width: auto;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
    
    .feedback-form-container,
    .feedback-info {
        width: 100%;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .image-frame {
        width: 250px;
        height: 320px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .section-title h2 {
        font-size: 1.9rem;
    }
    
    .commitment-card {
        padding: 25px 20px;
    }
    
    .reason-box {
        padding: 25px;
    }
    
    .cta-big-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .feedback-form-container {
        padding: 25px 20px;
    }
}

