/* style.css - Cleaned and Optimized */
:root {
    --congress-red: #D50000;
    --congress-green: #0B6623;
    --white: #FFFFFF;
    --dark-green: #064518;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Mukta', 'Noto Sans Devanagari', 'Hind', sans-serif;
    overflow-x: hidden;
    color: #222;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nepali-text {
    font-family: 'Noto Sans Devanagari', 'Hind', sans-serif;
}

a {
    text-decoration: none;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    padding: 15px 0;
}

.navbar.sticky-top {
    top: 0;
    z-index: 1050;
}

.navbar-brand img {
    height: 45px;
}

.tree-icon {
    width: 35px;
    height: 35px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%230B6623"><path d="M50 10 L65 40 L80 35 L70 60 L85 80 L60 75 L50 95 L40 75 L15 80 L30 60 L20 35 L35 40 Z"/></svg>') no-repeat center;
    background-size: contain;
    display: inline-block;
    margin-right: 8px;
}

.nav-link {
    font-weight: 600;
    color: #222 !important;
    margin: 0 10px;
    font-size: 1.1rem;
}

.nav-link:hover {
    color: var(--congress-red) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--congress-red) 0%, var(--congress-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* .hero-watermark {
    position: absolute;
    right: 5%;
    top: 20%;
    opacity: 0.1;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white"><path d="M50 5 L70 40 L95 35 L80 65 L90 90 L60 80 L50 95 L40 80 L10 90 L20 65 L5 35 L30 40 Z"/></svg>') no-repeat;
    background-size: contain;
    animation: slowRotate 60s infinite linear;
    pointer-events: none;
} */

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.hero-slogan {
    font-size: 2rem;
    margin: 20px 0;
    min-height: 80px;
    border-right: 3px solid white;
    display: inline-block;
    padding-right: 10px;
}

.hero-buttons .btn {
    padding: 14px 30px;
    margin: 10px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-custom {
    background: white;
    color: var(--congress-red);
}

.btn-primary-custom:hover {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--congress-green);
}



/* ===== SECTION HEADINGS ===== */
.section-heading {
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    margin-bottom: 50px;
    color: var(--congress-green);
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--congress-red);
}

/* ===== TIMELINE ===== */
.timeline-item {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--congress-red);
    margin-bottom: 30px;
    transition: 0.3s;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(213, 0, 0, 0.1);
    /* color: black; */
}

/* ===== VISION CARDS ===== */
.vision-card {
    background: white;
    border-radius: 30px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-bottom: 5px solid transparent;
    height: 100%;
}

.vision-card:hover {
    border-bottom-color: var(--congress-red);
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0, 102, 34, 0.2);
}

.vision-card i {
    font-size: 4rem;
    color: var(--congress-green);
    margin-bottom: 20px;
}

/* ===== COUNTER SECTION ===== */
.counter-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, #f9f9f9, white);
    border-radius: 40px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.03);
}

.counter {
    font-size: 5rem;
    font-weight: 800;
    color: var(--congress-red);
    line-height: 1;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CONTACT FORM ===== */
.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    padding: 15px 0;
    font-family: 'Noto Sans Devanagari';
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: none;
    border-bottom-color: var(--congress-red);
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
}

/* ===== CAMPAIGN TICKER ===== */
.campaign-ticker {
    background: var(--congress-red);
    color: white;
    padding: 10px 0;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
}

.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ===== PARALLAX ===== */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== NEPALI FLAG ANIMATION ===== */
.flag-wave {
    background: linear-gradient(90deg, #DC143C 0%, #DC143C 50%, #003893 50%, #003893 100%);
    height: 5px;
    width: 100%;
    background-size: 200% 100%;
    animation: wave 3s infinite;
}

@keyframes wave {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

/* ===== LOADER ===== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-tree {
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%230B6623"><path d="M50 10 L65 40 L80 35 L70 60 L85 80 L60 75 L50 95 L40 75 L15 80 L30 60 L20 35 L35 40 Z"/></svg>') no-repeat;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    color: #aaa;
    padding: 40px 0;
}

.footer-tree {
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23D50000"><path d="M50 10 L65 40 L80 35 L70 60 L85 80 L60 75 L50 95 L40 75 L15 80 L30 60 L20 35 L35 40 Z"/></svg>') no-repeat;
}

/* ===== GALLERY ===== */
.gallery-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.gallery-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0) !important;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item.hidden {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FILTER BUTTONS ===== */
.filter-btn {
    padding: 15px 35px;
    border: 2px solid;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.filter-btn.active {
    background: linear-gradient(145deg, #0B6623, #0a5a1f) !important;
    color: white !important;
    border-color: transparent !important;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(11, 102, 35, 0.4) !important;
}

.filter-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover .btn-shine {
    left: 100%;
}

/* ===== FANCYBOX CUSTOM ===== */
.fancybox-container {
    --fancybox-bg: rgba(0, 0, 0, 0.98);
}

.fancybox-button {
    /* background: #0B6623 !important; */
    /* border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    margin: 0 20px !important;
    transition: all 0.3s ease !important;
    border: 3px solid #FFD700 !important; */
    /* color: white !important; */
    /* opacity: 0.9 !important; */
    /* height: 60px !important;
    width: 60px !important;
    color: white !important;
    
    border-radius: 50% !important; 
    z-index: 8888; */
    
}


.fancybox-infobar {
    font-family: 'Mukta', sans-serif !important;
    background: rgba(11, 102, 35, 0.9) !important;
    padding: 8px 25px !important;
    border-radius: 50px !important;
    color: white !important;
    font-size: 18px !important;
    border: 2px solid #FFD700 !important;
    top: 20px !important;
    left: 20px !important;
}

.fancybox-caption {
    font-family: 'Mukta', sans-serif !important;
    background: linear-gradient(135deg, rgba(11, 102, 35, 0.95), rgba(213, 0, 0, 0.95)) !important;
    border-radius: 60px !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    color: white !important;
    border: 2px solid #FFD700 !important;
    max-width: 80% !important;
    margin: 0 auto 20px !important;
    text-align: center !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 20px !important;
}

.fancybox-toolbar {
    top: 20px !important;
    right: 20px !important;
}

.fancybox-toolbar .fancybox-button {
    width: 50px !important;
    height: 50px !important;
    margin: 0 5px !important;
}

.fancybox-thumbs {
    background: rgba(0, 0, 0, 0.8) !important;
    border-top: 3px solid #0B6623 !important;
}

.fancybox-thumbs__list a:before {
    border: 3px solid #D50000 !important;
}

.fancybox-loading {
    border: 6px solid rgba(255, 215, 0, 0.3) !important;
    border-top-color: #D50000 !important;
    border-right-color: #0B6623 !important;
}

.fancybox-progress {
    background: linear-gradient(90deg, #D50000, #0B6623, #FFD700) !important;
    height: 4px !important;
}

/* ===== VISION CARD PREMIUM ===== */
.vision-card-premium {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vision-card-premium:hover {
    transform: translateY(-20px) scale(1.02) !important;
    box-shadow: 0 50px 80px rgba(11, 102, 35, 0.3), 0 30px 50px rgba(213, 0, 0, 0.2) !important;
}

.vision-card-premium:hover .hover-shine {
    transform: translateX(100%) !important;
}

/* ===== ACHIEVEMENT CARDS ===== */
.achievement-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 40px 70px rgba(11, 102, 35, 0.25), 0 25px 50px rgba(213, 0, 0, 0.2) !important;
}

.achievement-card:hover .hover-shine {
    transform: translateX(100%) !important;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card-premium {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.4), 0 0 0 5px #FFD700 !important;
}

/* ===== STATS CARDS ===== */
.stats-card {
    transition: all 0.4s ease;
    cursor: pointer;
}

.stats-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 215, 0, 0.2) !important;
    border-color: #FFD700 !important;
}

/* ===== HIGHLIGHT CARDS ===== */
.highlight-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.highlight-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 215, 0, 0.15) !important;
    border-color: #FFD700 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== TIMELINE PREMIUM ===== */
.timeline-item-premium {
    transition: all 0.3s ease;
}

.timeline-item-premium:hover {
    transform: translateX(10px);
    /* color: black; */
}
.timeline-item-premium:hover .timeline-number{
    color: black !important;
}
.timeline-item-premium:hover [style*="background:"] {
    background: rgba(255, 215, 0, 0.08) !important;
    /* color: white; */
}

/* ===== BIO CARDS ===== */
.bio-card,
.timeline-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bio-card:hover,
.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.12) !important;
}

/* ===== BUTTON STYLES ===== */
.btn-outline-warning:hover,
.btn-outline-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ===== CAROUSEL INDICATORS ===== */
[data-bs-target] {
    transition: all 0.3s ease;
}

[data-bs-target]:hover {
    transform: scale(1.1);
    background: #FFD700 !important;
}

/* ===== VIDEO WRAPPER ===== */
.video-wrapper iframe {
    min-height: 300px;
    min-width: 500px;
}

.video-premium-wrapper img {
    transition: all 0.5s ease;
}

.video-premium-wrapper:hover img {
    opacity: 1 !important;
    transform: scale(1.05);
}

/* ===== DECORATIVE ELEMENTS ===== */
#speech [style*="radial-gradient"],
#testimonials [style*="radial-gradient"],
#contact [style*="radial-gradient"] {
    opacity: 0.05 !important;
}

#speech [style*="font-size: 12rem"],
#testimonials [style*="font-size: 10rem"],
#contact [style*="font-size: 8rem"] {
    opacity: 0.02 !important;
    color: #0B6623 !important;
}

#speech [style*="🎤"],
#speech [style*="📢"],
#testimonials [style*="🗣️"],
#testimonials [style*="💬"] {
    opacity: 0.03 !important;
    color: #0B6623 !important;
}

#speech [style*="soundWave"] {
    background: #0B6623 !important;
    opacity: 0.2 !important;
}

/* ===== ANIMATIONS ===== */
@keyframes floatSlow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 30px) rotate(10deg);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes quotePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 40% 60% 30% 70%;
    }

    25% {
        border-radius: 60% 40% 70% 30%;
    }

    50% {
        border-radius: 30% 70% 40% 60%;
    }

    75% {
        border-radius: 70% 30% 60% 40%;
    }
}

@keyframes soundWave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.5);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes drive {
    0% {
        left: 10%;
    }

    100% {
        left: 80%;
    }
}

@keyframes progressLoad {
    from {
        width: 0%;
    }

    to {
        width: 85%;
    }
}

@keyframes barPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(1.3);
        opacity: 0.8;
    }
}

@keyframes cameraShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-10deg);
    }
}

@keyframes phoneRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(-10deg);
    }
}

@keyframes treeRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #064518;
}

::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D50000;
}

/* ===== WHITE BACKGROUND SECTIONS ===== */
#contact,
#speech,
#testimonials {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
}

/* ===== SECTION HEADERS WHITE VERSION ===== */
#contact .display-3.fw-bold.text-white,
#speech .display-3.fw-bold.text-white,
#testimonials .display-3.fw-bold.text-white {
    color: #0B6623 !important;
    text-shadow: 3px 3px 0 rgba(213, 0, 0, 0.1) !important;
}

#contact .lead.text-white-50,
#speech .text-white-50,
#testimonials .lead.text-white-50 {
    color: #4a4a4a !important;
}

/* ===== BADGE STYLES ===== */
#speech .badge.bg-warning,
#testimonials .badge.bg-warning,
#testimonials .badge.bg-warning {
    background: #0B6623 !important;
    color: white !important;
}

/* ===== QUOTE CARD ===== */
#speech .quote-card {
    background: white !important;
    border: 3px solid rgba(11, 102, 35, 0.2) !important;
}

#speech .quote-card .text-white,
#testimonials .testimonial-card-premium .text-white {
    color: #333 !important;
}

#speech .quote-card .text-white-50,
#testimonials .testimonial-card-premium .text-white-50 {
    color: #666 !important;
}

#speech .quote-card .text-warning,
#testimonials .testimonial-card-premium .text-warning {
    color: #D50000 !important;
}

#speech .quote-card h4.text-warning {
    color: #D50000 !important;
}

#speech .quote-card .badge.bg-success,
#testimonials .testimonial-card-premium .badge.bg-success {
    background: #0B6623 !important;
    color: white !important;
}

#testimonials .testimonial-card-premium .badge.bg-danger {
    background: #D50000 !important;
    color: white !important;
}

#testimonials .testimonial-card-premium .badge.bg-warning {
    background: #FFD700 !important;
    color: #333 !important;
}

/* ===== VIDEO SECTION ===== */
#speech .video-premium-wrapper .text-white-50 {
    color: #666 !important;
}

#speech .video-premium-wrapper .btn-outline-warning {
    border-color: #0B6623 !important;
    color: #0B6623 !important;
}

#speech .video-premium-wrapper .btn-outline-warning:hover {
    background: #0B6623 !important;
    color: white !important;
}

#speech .video-premium-wrapper .btn-outline-danger {
    border-color: #D50000 !important;
    color: #D50000 !important;
}

#speech .video-premium-wrapper .btn-outline-danger:hover {
    background: #D50000 !important;
    color: white !important;
}

/* ===== HIGHLIGHT CARDS WHITE ===== */
#speech .highlight-card {
    background: white !important;
    border: 2px solid rgba(11, 102, 35, 0.1) !important;
}

#speech .highlight-card h5.text-white {
    color: #0B6623 !important;
}

#speech .highlight-card p.text-white-50 {
    color: #666 !important;
}

#speech .highlight-card .text-warning {
    color: #D50000 !important;
}

/* ===== TESTIMONIAL CARDS WHITE ===== */
#testimonials .testimonial-card-premium {
    background: white !important;
    border: 3px solid rgba(11, 102, 35, 0.1) !important;
}

/* ===== STATS CARDS WHITE ===== */
#testimonials .stats-card {
    background: white !important;
}

#testimonials .stats-card h3.text-white {
    color: #0B6623 !important;
}

#testimonials .stats-card p.text-white-50 {
    color: #666 !important;
}

#testimonials .stats-card .text-warning {
    color: #D50000 !important;
}

/* ===== NAVIGATION CONTROLS WHITE ===== */
#testimonials .btn-outline-warning {
    border-color: #0B6623 !important;
    color: #0B6623 !important;
}

#testimonials .btn-outline-warning:hover {
    background: #0B6623 !important;
    color: white !important;
}

/* ===== CAROUSEL INDICATORS WHITE ===== */
#testimonials [data-bs-target] {
    background: rgba(11, 102, 35, 0.3) !important;
    border: 2px solid #0B6623 !important;
}

#testimonials [data-bs-target].active {
    background: #0B6623 !important;
}

/* ===== CONTACT SECTION ===== */
#contact .contact-card {
    background: white !important;
    border: 3px solid rgba(11, 102, 35, 0.2) !important;
}

#contact .contact-card h3.text-white {
    color: #0B6623 !important;
}

#contact .contact-form input,
#contact .contact-form textarea {
    background: #f8f9fa !important;
    border: 2px solid rgba(11, 102, 35, 0.2) !important;
    color: #333 !important;
}

#contact .contact-form input::placeholder,
#contact .contact-form textarea::placeholder {
    color: #6c757d !important;
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
    background: white !important;
    border-color: #0B6623 !important;
    box-shadow: 0 0 20px rgba(11, 102, 35, 0.2) !important;
}

#contact .contact-form .text-warning {
    color: #0B6623 !important;
}

#contact .info-card {
    background: white !important;
    border: 3px solid rgba(213, 0, 0, 0.2) !important;
}

#contact .info-card h4.text-warning {
    color: #D50000 !important;
}

#contact .info-card p.text-white,
#contact .info-card p.text-white i {
    color: #333 !important;
}

#contact .info-card p i.text-warning {
    color: #D50000 !important;
}

#contact .quick-card {
    background: white !important;
}

#contact .quick-card h5.text-warning {
    color: #0B6623 !important;
}

#contact .quick-card p.text-white {
    color: #333 !important;
}

#contact .quick-card .badge.bg-success {
    background: #0B6623 !important;
    color: white !important;
}

#contact .social-card {
    background: white !important;
    border: 3px solid rgba(11, 102, 35, 0.2) !important;
}

#contact .social-card h4.text-warning {
    color: #0B6623 !important;
}

#contact .social-card .social-icon {
    background: #0B6623 !important;
    color: white !important;
}

#contact .social-card .social-icon:hover {
    background: #D50000 !important;
}

#contact .hours-card {
    background: white !important;
}

#contact .hours-card h4.text-warning {
    color: #D50000 !important;
}

#contact .hours-card p.text-white {
    color: #333 !important;
}

#contact .hours-card .text-warning {
    color: #0B6623 !important;
}

#contact .cta-banner {
    background: linear-gradient(135deg, rgba(213, 0, 0, 0.05), rgba(11, 102, 35, 0.05)) !important;
    border: 3px solid #0B6623 !important;
}

#contact .cta-banner h3.text-white {
    color: #0B6623 !important;
}

#contact .cta-banner p.text-white-50 {
    color: #4a4a4a !important;
}

#contact .cta-banner .btn-warning {
    background: #0B6623 !important;
    color: white !important;
    border: none !important;
}

#contact .cta-banner .btn-warning:hover {
    background: #D50000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#contact .fa-phone-alt {
    color: #0B6623 !important;
    animation: phoneRing 2s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 1.8rem !important;
    }

    .counter {
        font-size: 4rem !important;
    }

    .achievement-card {
        margin-bottom: 20px;
    }

    .vision-card-premium {
        margin-bottom: 20px;
    }

    .quote-card {
        border-radius: 50px 20px 50px 20px !important;
        padding: 30px 20px !important;
    }

    .testimonial-card-premium {
        padding: 30px 20px !important;
    }

    .bio-card,
    .timeline-card {
        padding: 30px 20px !important;
    }

    .timeline-item-premium {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .timeline-item-premium [style*="width: 70px"] {
        margin-bottom: 15px;
    }

    [style*="position: absolute; left: 35px"] {
        display: none !important;
    }

    .fs-3 {
        font-size: 1.5rem !important;
    }

    .btn-outline-warning {
        width: 50px !important;
        height: 50px !important;
    }

    .btn-outline-warning i {
        font-size: 1.2rem !important;
    }

    .fancybox-button {
        width: 45px !important;
        height: 45px !important;
        margin: 0 5px !important;
    }

    .fancybox-caption {
        font-size: 14px !important;
        padding: 10px 20px !important;
    }

    [style*="width: 180px"] {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto 20px;
    }

    [style*="font-size: 12rem"] {
        font-size: 8rem !important;
    }

    .filter-btn {
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }

    #contact .display-3 {
        font-size: 2.5rem;
    }

    #contact .social-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }

    #contact .cta-banner {
        border-radius: 50px 20px 50px 20px !important;
        padding: 30px 20px !important;
    }

    .quote-card img {
        width: 120px;
        height: 120px;
    }

    [style*="width: 100px; height: 100px;"] {
        width: 60px !important;
        height: 60px !important;
    }

    #speech .quote-card .text-white,
    #testimonials .testimonial-card-premium .text-white {
        color: #333 !important;
    }
}

/* ===== CAMPAIGN TICKER PREMIUM ===== */
.campaign-ticker-wrapper {
    background: linear-gradient(90deg, var(--congress-red), var(--congress-green));
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #FFD700;
}

.campaign-ticker {
    color: white;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: inline-block;
    animation: tickerScroll 40s linear infinite;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-icon {
    margin: 0 10px;
    font-size: 1.2rem;
}

.ticker-text {
    margin: 0 5px;
}

.ticker-separator {
    margin: 0 15px;
    color: #FFD700;
    font-weight: 800;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ===== NAVBAR PREMIUM ===== */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    padding: 15px 0;
    border-bottom: 3px solid var(--congress-red);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.tree-icon {
    width: 45px;
    height: 45px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%230B6623"><path d="M50 10 L65 40 L80 35 L70 60 L85 80 L60 75 L50 95 L40 75 L15 80 L30 60 L20 35 L35 40 Z"/></svg>') no-repeat center;
    background-size: contain;
    display: inline-block;
    animation: treeFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(11, 102, 35, 0.3));
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--congress-green);
}

.brand-badge {
    background: var(--congress-red);
    color: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 5px;
    border: 2px solid #FFD700;
}

@keyframes treeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.nav-link {
    font-weight: 600;
    color: #222 !important;
    margin: 0 12px;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--congress-red), var(--congress-green));
    transition: width 0.3s ease;
    border-radius: 10px;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--congress-red) !important;
}

/* ===== HERO SECTION PREMIUM ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--congress-red) 0%, var(--congress-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 150px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-tree-left {
    position: absolute;
    left: 5%;
    top: 20%;
    font-size: 15rem;
    opacity: 0.1;
    animation: floatLeft 25s ease-in-out infinite;
}

.floating-tree-right {
    position: absolute;
    right: 5%;
    bottom: 20%;
    font-size: 15rem;
    opacity: 0.1;
    animation: floatRight 25s ease-in-out infinite;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: particleMove 15s ease-in-out infinite;
}

@keyframes floatLeft {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 30px) rotate(10deg);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, -30px) rotate(-10deg);
    }
}

@keyframes particleMove {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}



.hero-badge-wrapper {
    margin-bottom: 25px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 60px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
}

.title-line.accent {
    color: #FFD700;
    font-size: 3rem;
}

.hero-slogan-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 60px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.slogan-prefix {
    font-size: 2rem;
}

.hero-slogan {
    font-size: 2rem;
    font-weight: 600;
    border-right: 4px solid #FFD700;
    display: inline-block;
    padding-right: 15px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        border-color: #FFD700;
    }

    50% {
        border-color: transparent;
    }
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 30px 0;
    position: relative;
    padding: 0 20px;
}

.quote-icon {
    color: #FFD700;
    margin: 0 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.btn-primary-custom {
    background: white;
    color: var(--congress-red);
    padding: 16px 35px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #FFD700;
    color: var(--dark-green);
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 16px 35px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--congress-green);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-custom:hover .btn-shine {
    left: 100%;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-image-wrapper {
    position: relative;
    padding: 30px;
}

.image-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: pulseBackdrop 4s ease-in-out infinite;
}

.leader-image {
    border-radius: 40px 40px 40px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    animation: floatImage 6s ease-in-out infinite;
    transform: scaleX(1);
    position: relative;
    z-index: 2;
    border: 5px solid rgba(255, 215, 0, 0.5);
}

@keyframes floatImage {

    0%,
    100% {
        transform: scaleX(1) translateY(0px);
    }

    50% {
        transform: scaleX(1) translateY(-20px);
    }
}

@keyframes pulseBackdrop {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    z-index: 3;
    animation: floatElement 4s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 0.5s;
}

.element-3 {
    top: 30%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

.experience-badge {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    z-index: 10;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-green);
    line-height: 1.2;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .title-line {
        font-size: 2.5rem;
    }

    .title-line.accent {
        font-size: 2rem;
    }

    .hero-slogan-wrapper {
        padding: 10px 15px;
    }

    .hero-slogan {
        font-size: 1.5rem;
    }

    .slogan-prefix {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat-divider {
        display: none;
    }

    .experience-badge {
        bottom: 5%;
        right: 5%;
        padding: 10px 15px;
    }

    .exp-number {
        font-size: 1.8rem;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .ticker-content {
        font-size: 0.9rem;
    }
}


.about-img {
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}



            /* Animations */
            @keyframes floatSlow {
                0% {
                    transform: translate(0, 0) rotate(0deg);
                }

                100% {
                    transform: translate(30px, 30px) rotate(10deg);
                }
            }

            @keyframes phoneRing {

                0%,
                100% {
                    transform: rotate(0deg);
                }

                10%,
                30%,
                50%,
                70%,
                90% {
                    transform: rotate(10deg);
                }

                20%,
                40%,
                60%,
                80% {
                    transform: rotate(-10deg);
                }
            }

            /* Hover effects */
            .quick-card:hover .btn-shine {
                left: 100%;
            }

            .social-icon:hover {
                box-shadow: 0 0 30px #FFD700 !important;
            }

            /* Form input focus effect */
            .contact-form input:focus,
            .contact-form textarea:focus {
                background: rgba(255, 255, 255, 0.25) !important;
                border-color: #FFD700 !important;
                box-shadow: 0 0 20px rgba(255, 215, 0, 0.3) !important;
                outline: none !important;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .display-3 {
                    font-size: 2.5rem;
                }

                .social-icon {
                    width: 50px !important;
                    height: 50px !important;
                    font-size: 1.5rem !important;
                }

                .cta-banner {
                    border-radius: 50px 20px 50px 20px !important;
                    padding: 30px 20px !important;
                }
            }
       