:root {
    --primary-color: #b411ba;
    /* Updated Theme Color */
    --secondary-color: #6f42c1;
    /* Purple */
    --accent-color: #ffc107;
    --light-bg: #f8f9fa;
    --dark-text: #343a40;
    --font-main: 'Mukta', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.section-padding {
    padding: 80px 0;
}

.bg-soft-purple {
    background-color: #f3f0fc;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    color: var(--secondary-color) !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    margin-left: 15px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('hero-bg.png') no-repeat center center/cover;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.85) 0%, rgba(180, 17, 186, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-img {
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 360px;
    height: 360px;
    object-fit: cover;
    margin-bottom: 20px;
    display: none;
    /* Hidden on large screens if we use side layout, but user requested BANNER style with headline. We'll center content. */
}

/* For this specific request, the user wants a highlight candidate photo in Hero or Banner? 
   "Full-width banner with candidate photo, headline & buttons."
   I'll put the candidate photo in a column or centered. Let's do a flex layout.
*/

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.3s box-shadow 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(180, 17, 186, 0.4);
    background-color: #8a0d8f;
    color: white;
}

.btn-outline-light-custom {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--secondary-color);
}

/* About Section */
.about-img-container {
    position: relative;
    padding: 20px;
}

.about-img {
    width: 470px;
    height: auto;
    /* border-radius: 85% 15% 78% 22% / 34% 66% 34% 66%; */
    border-radius: 50px 16px 50px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    /* border: 10px solid white; */
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {

    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    background: rgba(180, 17, 186, 0.1);
    padding: 9px 15px 8px 14px;
    border-radius: 50%;
}

/* Vision Mission - Transparent Blur Glass Design */
.vm-card {
    background: white;
    padding: 1.5rem 1rem;
    /* Smaller padding */
    border-radius: 20px;
    /* Stronger glass shadow */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    height: 100%;
    transition: all 0.4s ease;
    /* Border with slight transparency */
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    text-align: center;
}



/* Gradient Border Bottom Effect */
.vm-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transition: all 0.3s;
}

.vm-card.mission::after {
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.vm-card:hover {
    transform: translateY(-5px);
    /* background: rgba(255, 255, 255, 0.85); */
    box-shadow: 0 15px 40px rgba(111, 66, 193, 0.15);
    border-color: white;
}

.vm-card:hover::after {
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.vm-icon-box {
    width: 60px;
    height: 60px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    font-size: 1.8rem;
    border: 2px solid rgba(111, 66, 193, 0.1);
}

.vm-card.mission .vm-icon-box {
    color: var(--primary-color);
    border-color: rgba(180, 17, 186, 0.1);
}

.vm-card:hover .vm-icon-box {
    transform: rotate(10deg);
    background: var(--secondary-color);
    color: white;
    border-color: transparent;
}

.vm-card.mission:hover .vm-icon-box {
    background: var(--primary-color);
}

.vm-title {
    font-weight: 800;
    font-size: 1.25rem;
    /* Smaller title */
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vm-card.mission .vm-title {
    color: var(--primary-color);
}

.vm-card .vm-title {
    color: var(--secondary-color);
}

.vm-list {
    text-align: left;
    margin-top: 1rem;
    padding-left: 0;
    font-size: 1.2rem;
    /* Compact text */
    display: inline-block;
    /* To center the block of text */
}

.vm-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #666;
    transition: transform 0.2s;
}

.vm-list li:hover {
    transform: translateX(3px);
    color: var(--dark-text);
}

.vm-list li::before {
    content: "\F272";
    /* Bootstrap Icon chevron-right */
    font-family: "bootstrap-icons";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.vm-card.mission .vm-list li::before {
    color: var(--primary-color);
}

/* Initiatives (Why Choose Me) - Premium Design */
.initiative-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft, deep shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    text-align: center;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.initiative-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(180, 17, 186, 0.03) 0%, rgba(111, 66, 193, 0.03) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(180, 17, 186, 0.15);
    border-color: rgba(180, 17, 186, 0.2);
}

.initiative-card:hover::before {
    opacity: 1;
}

/* Icon Styling */
.initiative-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(180, 17, 186, 0.08);
    color: var(--primary-color) !important;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.initiative-card:hover .initiative-icon {
    background: var(--primary-color);
    color: white !important;
    transform: rotateY(180deg);
}

.initiative-icon:hover {

    color: white;
    transform: rotateY(180deg);
}

.initiative-card h4 {
    color: #333;
    transition: color 0.3s;
}

.initiative-card:hover h4 {
    color: var(--primary-color);
}

.initiative-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Gallery */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Message */
.quote-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

/* Contact */
.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(111, 66, 193, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Footer */
footer {
    background: #212529;
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

    .hero-img {
        display: inline-block;
        margin-bottom: 20px;
    }

    .btn-outline-light-custom {
        margin-top: 10px;
        margin-left: 0;
    }

    /* Navbar Mobile Adjustments */
    .navbar-brand {
        font-size: 1.1rem;
        max-width: 80%;
        /* Prevent overlap */
    }

    .navbar-brand img {
        width: 50px;
        height: auto;
    }

    .navbar-toggler {
        border-color: transparent;
        /* Cleaner look */
        margin-left: auto;
        /* Force to right if wrapping occur, though row nowrap is better */
    }

    /* Ensure flex container wraps so menu drops down */
    .navbar>.container {
        flex-wrap: wrap;
    }
}

/* Campaign Posters */
.poster-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}

.poster-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(180, 17, 186, 0.2);
}

.poster-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    /* Shows full poster */
    background: #f8f9fa;
    border-bottom: 4px solid var(--secondary-color);
}

.poster-body {
    padding: 20px;
    background: white;
    text-align: center;
}

.poster-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}