:root {
            --primary-color: #d35400;
            --dark-color: #a84300;
            --light-color: #ff8c42;
            --white: #ffffff;
            --light-bg: #f9f9f9;
            --dark-text: #333333;
        }
        
        body { 
            font-family: 'Hind', sans-serif;
            color: var(--dark-text);
            background-color: var(--white);
            line-height: 1.6;
        }
        
        .hindi-text {
            font-family: 'Hind', sans-serif;
        }
        
        header { 
            background: var(--white); 
            border-bottom: 3px solid var(--primary-color);
        }
        
        .navbar-brand { 
            font-weight: 700; 
            font-size: 1.5rem; 
            color: var(--primary-color) !important;
        }
        
        .nav-link {
            color: var(--dark-text) !important;
            padding: 10px 16px !important;
            border-right: 1px solid #e0e0e0;
            font-weight: 500;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
            background-color: rgba(211, 84, 0, 0.05);
            border-bottom: 3px solid var(--primary-color);
        }
        
        .dropdown-menu {
            border: 2px solid var(--primary-color) !important;
        }
        
        .dropdown-menu .dropdown-item:hover {
            background-color: rgba(211, 84, 0, 0.1);
            color: var(--primary-color);
        }
        
        .carousel-caption { 
            background: rgba(0,0,0,0.6); 
            border-radius: 10px; 
        }
        
        .quick-buttons .btn {
            width: 100%;
            margin-bottom: 10px;
            border-radius: 15px;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
        }
        
        .btn-success {
            background-color: var(--light-color);
            border-color: var(--light-color);
        }
        
        .btn-success:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .impact-card { 
            border: none; 
            border-radius: 15px; 
            box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
            transition: all 0.3s;
        }
        
        .impact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(211, 84, 0, 0.2);
        }
        
        .timeline {
            position: relative;
            margin: 30px 0;
            padding-left: 30px;
            border-left: 3px solid var(--primary-color);
        }
        
        .timeline-item { 
            margin-bottom: 20px; 
        }
        
        .timeline-year {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        footer {
            background: var(--dark-color);
            color: var(--white);
            padding: 30px 0;
        }
        
        .footer-links a { 
            color: var(--white); 
            text-decoration: none; 
            margin: 0 10px; 
        }
        
        .gallery img { 
            border-radius: 10px; 
            transition: transform 0.3s; 
        }
        
        .gallery img:hover { 
            transform: scale(1.05); 
        }

        .text-orange { 
            color: var(--primary-color); 
        }
        
        .bg-orange {
            background-color: var(--primary-color);
        }
        
        #impact { 
            background-color: var(--white); 
            border-top: 3px solid var(--primary-color); 
        }
        
        .circle-border {
            border: 3px solid var(--primary-color);
            border-radius: 50%;
            width: 320px;
            height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin: auto;
            padding: 20px;
            background-color: rgba(211, 84, 0, 0.05);
        }
        
        .impact-card {
            border: 2px solid var(--primary-color);
            border-radius: 15px;
            color: var(--primary-color);
            background: var(--white);
            transition: all 0.3s;
            height: 100%;
            padding: 25px 15px;
        }
        
        .impact-card:hover {
            background: rgba(211, 84, 0, 0.05);
            box-shadow: 0 5px 15px rgba(211, 84, 0, 0.2);
        }
        
        .impact-card h5 { 
            font-size: 1.1rem; 
            font-weight: 600;
        }
        
        .impact-card p { 
            font-size: 0.95rem; 
        }
        
        .down-arrow i { 
            color: var(--primary-color); 
        }
        
        @media (max-width: 992px) {
            .circle-border { 
                width: 260px; 
                height: 260px; 
            }
            
            .navbar-nav .nav-link {
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
            }
        }
        
        .border-orange { 
            border: 2px solid var(--primary-color) !important; 
        }
        
        .donate-box {
            background-color: var(--primary-color);
            border-top-left-radius: 100px;
            border-bottom-right-radius: 100px;
            min-height: 300px;
        }
        
        .thumb {
            cursor: pointer;
            width: 120px;
            height: 80px;
            object-fit: cover;
            transition: 0.3s;
            border-radius: 8px;
        }
        
        .thumb:hover, .thumb.active {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
        }
        
        .image-caption { 
            font-weight: 500; 
        }
        
        @media (max-width: 992px) {
            .donate-box { 
                border-radius: 50px; 
                margin-top: 20px; 
            }
        }
        
        .section-title {
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 30px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .candidate-photo {
            border: 5px solid var(--primary-color);
            border-radius: 10px;
        }
        
        .criminal-case {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 5px;
            padding: 15px;
            margin: 15px 0;
        }
        
        .asset-details {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
        }
        
        .mobile-nav-toggler {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 8px 15px;
        }
        
        /* Press Section Styles */
        .press-section {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 25px;
        }
        
        .press-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .press-item {
            border-left: 3px solid var(--primary-color);
            padding-left: 15px;
            margin-bottom: 20px;
        }
        
        .press-date {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Twitter Section Styles */
        .twitter-section {
            background-color: #f5f8fa;
            border-radius: 10px;
            padding: 25px;
        }
        
        .twitter-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .twitter-profile {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .twitter-profile-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
            background-color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .twitter-handle {
            color: #657786;
            font-size: 0.9rem;
        }
        
        .twitter-follow-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 20px;
            padding: 5px 15px;
            font-weight: 600;
            margin-left: auto;
        }
        
        .twitter-timeline {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .twitter-timeline::-webkit-scrollbar {
            width: 5px;
        }
        
        .twitter-timeline::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .twitter-timeline::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }
        
        .twitter-tweet {
            background-color: white;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .tweet-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .tweet-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            background-color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .tweet-user {
            font-weight: 600;
        }
        
        .tweet-handle {
            color: #657786;
            font-size: 0.9rem;
        }
        
        .tweet-content {
            margin-bottom: 10px;
        }
        
        .tweet-date {
            color: #657786;
            font-size: 0.8rem;
        }
        .quick-btn {
  transition: all 0.3s ease;
  border: 3px solid transparent;
}
.quick-btn:hover {
  transform: translateY(-8px);
  border-color: #ff6600;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.leader-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.quick-btn:hover .leader-img {
  transform: scale(1.08);
}
.hindi-text {
  font-family: 'Noto Sans Devanagari', sans-serif;
}
/* Fixed Image Sizes for Press Gallery */
        .press-gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px 10px 0 0;
        }

        /* Fixed Image Sizes for Main Gallery */
        .main-gallery-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Fixed Thumbnail Sizes */
        .gallery-thumb {
            width: 120px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-thumb:hover, .gallery-thumb.active {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .press-gallery-img {
                height: 200px;
            }
            .main-gallery-img {
                height: 300px;
            }
            .gallery-thumb {
                width: 100px;
                height: 70px;
            }
        }

        @media (max-width: 576px) {
            .press-gallery-img {
                height: 180px;
            }
            .main-gallery-img {
                height: 250px;
            }
            .gallery-thumb {
                width: 80px;
                height: 60px;
            }
        }