       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family:'Noto Sans Bengali', sans-serif !important;
            overflow-x: hidden !important;
             width: 100%;
        }
        .main-active {
        color: #E63946 !important;
        transform: translateY(-2px);
        }
        /* Animation Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Top Bar */
        .top-section {
            background: linear-gradient(135deg, #298151 0%, #298151 100%);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            animation: fadeIn 0.6s ease;
        }
.footer-logo-wrapper{
            display: inline-block;
            align-items: center;
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            box-shadow: 0px 20px 35px rgba(230, 57, 70, 0.15);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: scaleIn 0.8s ease 0.3s backwards;
        }
        .footer-logo-wrapper img {
            height: 124px;;
            width: auto;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
            transition: transform 0.2s ease;
        }
        .top-bar {
            color: white;
            font-size: 13px;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 45px;
            padding: 10px 0;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: -15px;
            animation: fadeInLeft 0.8s ease 0.1s backwards;
            overflow: hidden;
            position: relative;
           width: 100%;
           max-width: 100%;
        }
.seamless-scroll {
            display: flex;
            width: max-content;
            animation: scrollSeamless 20s linear infinite;
        }

        .seamless-scroll .text-item {
            white-space: nowrap;
            padding-right: 50px;
            font-size: 18px;
            color: #fff;
            font-weight: 500;
        }

        @keyframes scrollSeamless {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        .pdf-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #E63946 0%, #ff4757 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
            transition: all 0.2s ease;
            z-index: 1;
            padding: 8px;
        }

        .pdf-icon:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
        }

        .top-bar-text {
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 7px;
            margin-right: -15px;
            animation: fadeInRight 0.8s ease 0.1s backwards;
        }

        .arrow-buttons {
            display: flex;
            gap: 8px;
        }

        .arrow-buttons button {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            color: white;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .arrow-buttons button:hover {
            background: rgba(230, 57, 70, 0.8);
            border-color: #E63946;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
        }

        .social-links {
            display: flex;
            gap: 7px;
        }

        .social-links a {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .social-links a:hover::before {
            width: 100px;
            height: 100px;
        }

        .social-links a:hover {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .social-links a:nth-child(1):hover {
            background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
            border-color: #1DA1F2;
        }

        .social-links a:nth-child(2):hover {
            background: linear-gradient(135deg, #4267B2 0%, #2d4a8a 100%);
            border-color: #4267B2;
        }

        .social-links a:nth-child(3):hover {
            background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
            border-color: #0077b5;
        }

        .social-links a:nth-child(4):hover {
            background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
            border-color: #E1306C;
        }

        .social-links a i {
            position: relative;
            z-index: 1;
            transition: transform 0.2s ease;
        }

        .social-links a:hover i {
            transform: scale(1.2);
        }

        .user-avatars {
            display: flex;
            align-items: center;
        }

        .user-avatars img {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.3);
            margin-left: -10px;
            transition: all 0.2s ease;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .user-avatars img:first-child {
            margin-left: 0;
        }

        .user-avatars img:hover {
            transform: translateY(-5px) scale(1.1);
            border-color: #E63946;
            z-index: 10;
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
        }

     .main-nav {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid transparent;
            border-image: linear-gradient(90deg, #E63946, #298151) 1;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 65px;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            padding: 12px 12px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            box-shadow: 0px 20px 35px rgba(230, 57, 70, 0.15);
            margin-left: -15px;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .logo-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .logo-wrapper:hover::before {
            left: 100%;
        }

        .logo-wrapper:hover {
            transform: translateY(-2px);
            box-shadow: 0px 25px 45px rgba(230, 57, 70, 0.25);
        }

        .logo-wrapper img {
            height: 70px;
            width: auto;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
            transition: transform 0.2s ease;
        }

        .logo-wrapper:hover img {
            transform: scale(1.05);
        }

        .main-menu {
            display: flex;
            list-style: none;
            gap: 80px;
            margin: 0;
            padding: 0;
        }

        .main-menu li {
            position: relative;
        }

        .main-menu .main-page-li {
            padding: 25px 0px 25px 0px;
        }

        .main-menu > li::after {
            content: '';
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 20px;
            background: linear-gradient(180deg, transparent, #298151, transparent);
            opacity: 0.3;
        }

        .main-menu > li:last-of-type::after {
            display: none;
        }

        .main-menu a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            position: relative;
            padding: 10px 0;
        }

        .main-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #E63946, #ff6b7a);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .main-menu a:hover::before {
            width: 100%;
        }

        .main-menu a:hover {
            color: #E63946;
            transform: translateY(-2px);
        }

        .main-menu .fa-angle-down {
            font-size: 12px;
            transition: transform 0.2s ease;
        }

        .main-menu li.dropdown:hover .fa-angle-down {
            transform: rotate(180deg);
        }

       .menu-toggle {
            background: linear-gradient(135deg, #1d5d3f 0%, #298151 50%, #32a068 100%);
            color: white;
            border: none;
            width: 60px;
            height: 65px;
            cursor: pointer;
            font-size: 22px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-right: -15px;
            position: relative;
            overflow: hidden;
            box-shadow:
                0 10px 30px rgba(41, 129, 81, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        /* Animated background gradient */
        .menu-toggle::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
            opacity: 0;
        }

        /* Ripple effect on hover */
        .menu-toggle:hover::before {
            opacity: 1;
            animation: ripple 1.5s ease-in-out infinite;
        }

        @keyframes ripple {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0;
            }
        }

        /* Shine effect */
        .menu-toggle::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -100%;
            width: 50%;
            height: 200%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: skewX(-25deg);
            transition: left 0.6s ease;
        }

        .menu-toggle:hover::after {
            left: 150%;
        }

        /* Icon container */
        .menu-icon {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            transition: transform 0.4s ease;
        }

        /* Animated dots grid */
        .menu-icon .dot {
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .menu-icon .dot-row {
            display: flex;
            gap: 4px;
        }

        /* Hover effects for button */
        .menu-toggle:hover {
            box-shadow:
                0 15px 40px rgba(41, 129, 81, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 20px rgba(41, 129, 81, 0.4);
            background: linear-gradient(135deg, #298151 0%, #32a068 50%, #3db876 100%);
        }

        .menu-toggle:hover .menu-icon {
            transform: scale(1.1) rotate(180deg);
        }

        .menu-toggle:hover .dot {
            background: #fff;
            box-shadow:
                0 0 10px rgba(255, 255, 255, 0.8),
                0 2px 8px rgba(0, 0, 0, 0.3);
            animation: pulse 0.6s ease infinite alternate;
        }

        .menu-toggle:hover .dot:nth-child(1) {
            animation-delay: 0s;
        }

        .menu-toggle:hover .dot:nth-child(2) {
            animation-delay: 0.1s;
        }

        .menu-toggle:hover .dot:nth-child(3) {
            animation-delay: 0.2s;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.3);
            }
        }

        /* Active/Click state */
        .menu-toggle:active {
            transform: translateY(-2px) scale(1.02);
            box-shadow:
                0 8px 20px rgba(41, 129, 81, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .menu-toggle:active .menu-icon {
            transform: scale(0.95) rotate(180deg);
        }

        /* Glow effect */
        .menu-toggle {
            animation: subtleGlow 3s ease-in-out infinite;
        }

        @keyframes subtleGlow {
            0%, 100% {
                box-shadow:
                    0 10px 30px rgba(41, 129, 81, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }
            50% {
                box-shadow:
                    0 10px 30px rgba(41, 129, 81, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3),
                    0 0 30px rgba(41, 129, 81, 0.3);
            }
        }

        /* Focus state for accessibility */
        .menu-toggle:focus {
            outline: 3px solid rgba(41, 129, 81, 0.5);
            outline-offset: 3px;
        }

        /* Alternative icon style - uncomment to use bars instead */
        .menu-icon-bars {
            display: none; /* Change to flex to use this style */
            flex-direction: column;
            gap: 5px;
            position: relative;
            z-index: 2;
        }

        .menu-icon-bars .bar {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .menu-toggle:hover .menu-icon-bars .bar {
            background: #fff;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .menu-toggle:hover .menu-icon-bars .bar:nth-child(1) {
            transform: translateX(-5px);
        }

        .menu-toggle:hover .menu-icon-bars .bar:nth-child(3) {
            transform: translateX(5px);
        }

        /* Dropdown */
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 53%;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            list-style: none;
            padding: 15px 0;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            min-width: 220px;
            margin-top: 36px;
            opacity: 0;
            animation: fadeInDown 0.1s ease forwards;
            border-top: 3px solid #E63946;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid #E63946;
        }

        .dropdown-menu li {
            margin: 0;
        }

        .dropdown-menu li::after {
            display: none;
        }

        .dropdown-menu li a {
            padding: 12px 24px;
            color: #2c3e50;
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
            border-radius: 8px;
            margin: 0 8px;
            position: relative;
        }

        .dropdown-menu li a:hover {
            background: linear-gradient(90deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
            color: #E63946;
            transform: translateX(5px);
            padding-left: 28px;
        }

        .main-menu li.dropdown:hover .dropdown-menu {
            display: block;
        }

        /* Mobile Sidebar Styles */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 999;
            backdrop-filter: blur(2px);
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            max-width: 85%;
            height: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            transition: right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1000;
            overflow-y: auto;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
            border-left: 3px solid transparent;
            border-image: linear-gradient(180deg, #E63946, #298151) 1;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border-bottom: 2px solid transparent;
            border-image: linear-gradient(90deg, #E63946, #298151) 1;
        }

        .sidebar-header img {
            height: 50px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .close-sidebar {
            background: linear-gradient(135deg, #E63946 0%, #ff4757 100%);
            border: none;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
        }

        .close-sidebar:hover {
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 6px 16px rgba(230, 57, 70, 0.4);
        }

        .sidebar-menu {
            list-style: none;
            padding: 20px 0;
        }

        .sidebar-menu > li {
            border-bottom: 1px solid rgba(41, 129, 81, 0.1);
        }

        .sidebar-menu > li > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #2c3e50;
            text-decoration: none;
            padding: 16px 24px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
        }

        .sidebar-menu > li > a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(230, 57, 70, 0.1), transparent);
            transition: width 0.3s ease;
        }

        .sidebar-menu > li > a:hover::before {
            width: 100%;
        }

        .sidebar-menu > li > a:hover {
            color: #E63946;
            padding-left: 32px;
        }

        .sidebar-dropdown > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-dropdown-menu {
            display: none;
            background: linear-gradient(90deg, rgba(41, 129, 81, 0.05), transparent);
            list-style: none;
            padding: 0;
        }

        .sidebar-dropdown-menu.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                max-height: 0;
            }
            to {
                opacity: 1;
                max-height: 500px;
            }
        }

        .sidebar-dropdown-menu li {
            border-bottom: 1px solid rgba(41, 129, 81, 0.05);
        }

        .sidebar-dropdown-menu a {
            display: block;
            padding: 14px 24px 14px 44px;
            color: #2c3e50;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.2s ease;
            position: relative;
        }

        .sidebar-dropdown-menu a::before {
            content: '→';
            position: absolute;
            left: 28px;
            opacity: 0;
            transition: all 0.2s ease;
            color: #E63946;
        }

        .sidebar-dropdown-menu a:hover {
            color: #E63946;
            padding-left: 50px;
            background: linear-gradient(90deg, rgba(230, 57, 70, 0.08), transparent);
        }

        .sidebar-dropdown-menu a:hover::before {
            opacity: 1;
            left: 32px;
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
            color: #298151;
            font-size: 12px;
        }

        .dropdown-arrow.rotated {
            transform: rotate(180deg);
            color: #E63946;
        }

        /* Active state styling */
        .sidebar-menu .active {
            color: #E63946;
            background: linear-gradient(90deg, rgba(230, 57, 70, 0.1), transparent);
            border-left: 4px solid #E63946;
        }

        /* Mobile Responsive */


        /* Scrollbar styling for sidebar */
        .mobile-sidebar::-webkit-scrollbar {
            width: 6px;
        }

        .mobile-sidebar::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .mobile-sidebar::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #E63946, #298151);
            border-radius: 10px;
        }

        /* Hero Section */
        .hero-section {
            background-color: #2E3D44;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                rgba(0,0,0,0.75),
                rgba(0,0,0,0.85)
            );
            z-index: 1;
        }

        .hero-wrapper {
            position: relative;
            min-height: 720px;
            background: linear-gradient(to bottom right, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
        }

        .bg-city {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.25;
            z-index: 1;
            /* animation: fadeIn 1s ease 0.3s forwards; */
        }

        .flag-eagle-decoration {
            position: absolute;
            left: -100px;
            top: 5%;
            transform: translateY(-50%);
            width: 330px;
            height: auto;
            z-index: 2;
            opacity: 0;
            animation: fadeInLeft 1.1s ease 0.8s forwards, float 3s ease-in-out 1s infinite;
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 10;
            padding: 100px 0 80px 0;
        }

        .hero-main-content {
            max-width: 50%;
        }

        .category-label {
            color: #E63946;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 1s forwards;
        }

        .main-heading {
            font-size: 46px;
            font-weight: 900;
            line-height: 1.1;
            color: white;
            margin-bottom: 30px;
            letter-spacing: -1px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 1.1s forwards;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .main-heading .red-text {
            color: #E63946;
        }

        .description-text {
            font-size: 15px;
            color: #eeeb18;
            margin-bottom: 40px;
            border-left: 3px solid #E63946;
            padding-left: 20px;
            line-height: 1.7;
            opacity: 0;
            animation: fadeInUp 0.8s ease 1.3s forwards;
        }

        .campaign-btn {
            background-color: #E63946;
            color: white;
            padding: 18px 40px;
            border: none;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: all 0.2s;
            letter-spacing: 0.5px;
            opacity: 1;
        }

        .campaign-btn:hover {
            background-color: #d62839;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
        }

        .campaign-btn i {
            font-size: 16px;
            transition: transform 0.2s ease;
        }

        .campaign-btn:hover i {
            transform: translateX(5px);
        }

        .hero-image-wrapper {
            position: absolute;
            right: 0;
            bottom: 0;
            top: 0;
            width: 50%;
            z-index: 5;
        }

        .candidate-img {
            position: absolute;
            right: 48%;
            bottom: 0;
            height: 700px;
            width: auto;
            z-index: 20;
            opacity: 0;
            animation: slideInFromBottom 1.1s ease 1.8s forwards;
        }

        .party-img {
            position: absolute;
            right: 18%;
            bottom: 0;
            height: 240px;
            width: auto;
            z-index: 20;
            margin-bottom: 28rem;
            opacity: 1;
            animation: scaleIn 1s ease 1s forwards;
        }

 .header-section {
    position: relative;
    height: 32.5rem;
    overflow: hidden;
    margin-top: 13rem;
    margin-right: -7rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.hexagon-container {
    position: relative;
    width: 31.25rem;
    height: 31.25rem;
    margin-right: 3.75rem;
    margin-bottom: 1.25rem;
}
.hexagon {
    position: absolute;
    width: 17.125rem;
    height: 17.125rem;
    background-size: cover;
    background-position: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.hexagon.gray {
    right: 4rem;
    bottom: 0.1rem;
    background-image: linear-gradient(rgba(200, 200, 200, 0.4), rgba(200, 200, 200, 0.4));
    z-index: 1;
    transform: scale(1.15);
    animation: fadeIn 0.8s ease 2.1s forwards;
     filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2rem rgba(80, 80, 80, 0.6))
        drop-shadow(2rem 2rem 3rem rgba(60, 60, 60, 0.5))
        drop-shadow(3rem 3rem 4rem rgba(40, 40, 40, 0.4))
        drop-shadow(4rem 4rem 5rem rgba(20, 20, 20, 0.3)) !important;

}

.hexagon.red {
    right: 21rem;
    bottom: 0.1rem;
    background-image: linear-gradient(rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.5));
    z-index: 2;
    animation: fadeIn 0.8s ease 2.3s forwards;
     filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2rem rgba(180, 0, 0, 0.7))
        drop-shadow(2rem 2rem 3rem rgba(140, 0, 0, 0.6))
        drop-shadow(3rem 3rem 4.5rem rgba(100, 0, 0, 0.5))
        drop-shadow(4.5rem 4.5rem 6rem rgba(60, 0, 0, 0.4)) !important;

}
.hexagon.blue {
    right: 12.5rem;
    bottom: 13rem;
    background-image: linear-gradient(rgba(0, 123, 255, 0.5), rgba(0, 123, 255, 0.5));
    transform: scale(1.2);
    z-index: 3;
    animation: fadeIn 0.8s ease 2.6s forwards;
     filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2.5rem rgba(0, 80, 200, 0.8))
        drop-shadow(2rem 2rem 4rem rgba(0, 60, 160, 0.7))
        drop-shadow(3.5rem 3.5rem 5.5rem rgba(0, 40, 120, 0.6))
        drop-shadow(5rem 5rem 7rem rgba(0, 20, 80, 0.5)) !important;

}
.hexagon-border polygon {
    stroke: red;
    stroke-width: 6;
    stroke-dasharray: 8, 6;
    fill: none;
}

.hexagon.gray .hexagon-border polygon {
    stroke: beige;
}

.hexagon.red .hexagon-border polygon {
    stroke: red;
}

.hexagon.blue .hexagon-border polygon {
    stroke: cyan;
}
.hexagon:hover {
    transform: scale(1.05) translateY(-0.625rem);
    opacity: 1 !important;
    filter:
        drop-shadow(0.75rem 0.75rem 0.75rem rgba(0, 0, 0, 0.4))
        drop-shadow(1.5rem 1.5rem 2.5rem rgba(0, 0, 0, 0.3))
        drop-shadow(2.5rem 2.5rem 4rem rgba(0, 0, 0, 0.2));
}
.hexagon.gray:hover {
    transform: scale(1.2) translateY(-0.625rem);
}
.hexagon.blue:hover {
    transform: scale(1.25) translateY(-0.625rem);
}
/* Tablet - landscape and below */

/* Tablet - portrait */

/* Mobile - large */

/* Mobile - small */

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.hexagon {
    position: absolute;
    width: 17.125rem;
    height: 17.125rem;
    opacity: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon.gray::before {
    background-image: linear-gradient(rgba(200, 200, 200, 0.4), rgba(200, 200, 200, 0.4)), url('../assets/frontend/logo/golondo_mor.jpg');
}

.hexagon.red::before {
    background-image: linear-gradient(rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.5)), url('../assets/frontend/logo/flyover.png');
}

.hexagon.blue::before {
    background-image: linear-gradient(rgba(0, 123, 255, 0.5), rgba(0, 123, 255, 0.5)), url('../assets/frontend/logo/ncPxANbtRmPsjJASwar8h.png');
}
        .hero-image-wrapper
                {
                    width: 100%;
                }
                .candidate-img{
                    right: 18%;
                }
                .triangle.blue {
                right: 20%;
                }
                .triangle.red {
                right: 10%;
                }
                .triangle.gray {
                right: 0%;
                }

 /* Decorative floating elements */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(230, 57, 70, 0.05));
            animation: float_lest 6s ease-in-out infinite;
            z-index: 2;
        }

        .floating-shape:nth-child(1) {
            width: 150px;
            height: 150px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            width: 100px;
            height: 100px;
            top: 92%;
            left: -2%;
            animation-delay: 2s;
        }

        .floating-shape:nth-child(3) {
           width: 80px;
            height: 80px;
            top: -4%;
            right: 36%;
            animation-delay: 4s;
        }
        .floating-shape:nth-child(4) {
            width: 80px;
            height: 80px;
            top: 50%;
            right: 27%;
            animation-delay: 4s;
        }

        @keyframes float_lest {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
  /* Enhanced News Section */
        .enhanced-news-section {
            width: 100%;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.21) 0%, #dbc6c647 50%), radial-gradient(circle at 90% 80%, rgba(227, 244, 255, 0.05) 0%, transparent 50%);
        }

        .enhanced-news-container {
            max-width: 1325px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Section Header */
        .enhanced-section-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 1;
        }

        /* Enhanced Button Design */
        .enhanced-section-subtitle {
            display: inline-block;
            color: #E63946;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-top: 18px;
            padding: 12px 32px;
            background: rgba(230, 57, 70, 0.12);
            border-radius: 50px;
            position: relative;
            transition: all 0.3s ease-in-out;
            text-decoration: none;
            border: 1.5px solid rgba(230, 57, 70, 0.4);
            backdrop-filter: blur(2px);
            cursor: pointer;
        }

        /* Hover Animation */
        .enhanced-section-subtitle:hover {
            background: #E63946;
            color: #fff;
            border-color: #E63946;
            transform: translateY(-3px) scale(1.06);
            box-shadow: 0 10px 25px rgba(230, 57, 70, 0.35);
        }


        .enhanced-section-title {
            color: #fff;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            background: linear-gradient(135deg, #fff);
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(217, 210, 210, 0.2);
        }

        .enhanced-section-description {
            color: #fff;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* News Grid */
        .enhanced-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 1;
        }

        /* News Card */
        .enhanced-news-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .enhanced-news-card a {
            text-decoration: none !important;
            color: inherit !important;
        }
        .enhanced-news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            /* background: linear-gradient(90deg, #E63946, #ff6b6b, #E63946); */
            background-size: 200% 100%;
            animation: enhanced-news-gradient-slide 3s ease infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        @keyframes enhanced-news-gradient-slide {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .enhanced-news-card:hover::before {
            opacity: 1;
        }

        .enhanced-news-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(230, 57, 70, 0.2);
        }

        /* Image Container */
        .enhanced-news-image-container {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .enhanced-news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .enhanced-news-card:hover .enhanced-news-image {
            transform: scale(1.1);
        }

        .enhanced-news-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .enhanced-news-card:hover .enhanced-news-overlay {
            opacity: 1;
        }

        /* Date Badge */
        .enhanced-date-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 12px 18px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }

        .enhanced-date-day {
            font-size: 2rem;
            font-weight: 900;
            line-height: 1;
            color: #E63946;
            display: block;
        }

        .enhanced-date-month {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #666;
            margin-top: 4px;
            display: block;
            letter-spacing: 1px;
        }

        /* Card Content */
        .enhanced-news-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .enhanced-news-category {
            display: inline-block;
            background: rgba(230, 57, 70, 0.1);
            color: #E63946;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .enhanced-news-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 15px;
            line-height: 1.5;
            transition: color 0.3s ease;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .enhanced-news-card:hover .enhanced-news-title {
            color: #E63946;
        }

        .enhanced-news-text {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Card Footer */
        .enhanced-news-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .enhanced-read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #1a1a2e;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 12px 28px;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
            border-radius: 50px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .enhanced-read-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
            transition: left 0.6s ease;
        }

        .enhanced-read-more-btn:hover::before {
            left: 100%;
        }

        .enhanced-read-more-btn:hover {
            background: #E63946;
            color: white;
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
        }

        .enhanced-read-more-icon {
            transition: transform 0.3s ease;
        }

        .enhanced-read-more-btn:hover .enhanced-read-more-icon {
            transform: translateX(5px);
        }

        /* Share Button */
        .enhanced-share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(230, 57, 70, 0.1);
            color: #E63946;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .enhanced-share-btn:hover {
            background: #E63946;
            color: white;
            transform: rotate(360deg);
        }

        /* Empty State */
        .enhanced-empty-state {
            text-align: center;
            padding: 80px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        }

        .enhanced-empty-icon {
            font-size: 5rem;
            color: #E63946;
            margin-bottom: 20px;
        }

        .enhanced-empty-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

        .enhanced-empty-text {
            font-size: 1rem;
            color: #666;
        }


         /*blog  Header Section */
        .blog-header {
            background: linear-gradient(135deg, #298151 0%, #298151 100%);
            padding: 100px 0 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .blog-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
               background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 1;
        }

        .blog-header .container {
            position: relative;
            z-index: 1;
        }

        .page-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .page-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Breadcrumb */
        .breadcrumb-custom {
            background: transparent;
            padding: 0;
            margin-bottom: 0;
        }

        .breadcrumb-custom .breadcrumb-item {
            color: rgba(255, 255, 255, 0.8);
        }

        .breadcrumb-custom .breadcrumb-item.active {
            color: #E63946;
        }

        .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Blog Content Section */
        .blog-content {
            padding: 80px 0;
        }

        /* Featured Image */
        .featured-image {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

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

        /* Blog Meta */
        .blog-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 2px solid #e9ecef;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #666;
            font-size: 15px;
        }

        .meta-item i {
            color: #E63946;
            font-size: 18px;
        }

        .category-badge {
            display: inline-block;
            padding: 8px 20px;

background: #E63946;
            color: white;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Short Description */
        .short-description {
            font-size: 22px;
            line-height: 1.8;
            color: #555;
            font-weight: 400;
            margin-bottom: 40px;
            padding: 30px;
            background: #f8f9fa;
            border-left: 4px solid #E63946;
            border-radius: 8px;
        }

        /* Long Description */
        .long-description {
            font-size: 17px;
            line-height: 1.9;
            color: #444;
            margin-bottom: 40px;
        }

        .long-description p {
            margin-bottom: 25px;
        }

        .long-description h3 {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .long-description h4 {
            font-size: 22px;
            font-weight: 600;
            color: #2c3e50;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .long-description ul {
            margin-bottom: 25px;
            padding-left: 25px;
        }

        .long-description ul li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 10px;
        }

        .long-description ul li::marker {
            color: #E63946;
        }

        .long-description blockquote {
            border-left: 4px solid #E63946;
            padding: 20px 30px;
            margin: 30px 0;
            background: #f8f9fa;
            font-style: italic;
            font-size: 18px;
            color: #555;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 30px;
        }

        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .widget-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #E63946;
        }

        /* Recent Posts */
        .recent-post-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .recent-post-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .recent-post-thumb {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .recent-post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .recent-post-content h5 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .recent-post-content h5 a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }

        .recent-post-content h5 a:hover {
            color: #E63946;
        }

        .recent-post-date {
            font-size: 13px;
            color: #999;
        }

        .recent-post-date i {
            margin-right: 5px;
            color: #E63946;
        }

        /* Categories */
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-list li {
            margin-bottom: 12px;
        }

        .category-list li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 8px;
            color: #2c3e50;
            text-decoration: none;
            transition: all 0.3s;
        }

        .category-list li a:hover {
            background: #E63946;
            color: #000;
            transform: translateX(5px);
        }

        .category-count {
            background: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        /* Tags */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-item {
            display: inline-block;
            padding: 8px 18px;
            background: #f8f9fa;
            color: #2c3e50;
            border-radius: 50px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .tag-item:hover {
            background: #E63946;
            color: white;
        }

        /* Share Buttons */
        .share-buttons {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-top: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .share-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .social-share {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-share a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }

        .social-share a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .social-share .facebook {
            background: #3b5998;
        }

        .social-share .twitter {
            background: #1da1f2;
        }

        .social-share .linkedin {
            background: #0077b5;
        }

        .social-share .email {
            background: #666;
        }


        /* Video Section */
         .video-section {

            background: #F31D23;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
 .play-button-container {
            position: absolute;
            width: 200px;
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .play-button {
            position: relative;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #fffb00 0%, #ff5e00 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: transform 0.3s ease;
            z-index: 10;
            box-shadow: 0 8px 25px #fffb00;
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        .play-button i {
            color: white;
            font-size: 28px;
            margin-left: 4px;
        }

        /* Ocean wave circles */
        .wave-circle {
            position: absolute;
            border: 2px solid red;
            border-radius: 50%;
            animation: wave-pulse 3s ease-out infinite;
        }

        .wave-circle:nth-child(1) {
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }

        .wave-circle:nth-child(2) {
            width: 80px;
            height: 80px;
            animation-delay: 1s;
        }

        .wave-circle:nth-child(3) {
            width: 80px;
            height: 80px;
            animation-delay: 2s;
        }

        @keyframes wave-pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(2.5);
                opacity: 0;
            }
        }

        /* Additional ripple effect on hover */
        .play-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .play-button:hover::before {
            transform: scale(1.4);
            opacity: 0;
        }
        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            opacity: 1;
            background-size: cover;
        }

        .background-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
        }

        .star-icon {
            position: absolute;
            font-size: 120px;
            color: rgba(139, 0, 0, 0.3);
        }

        .star-1 {
            top: 10%;
            right: 10%;
            transform: rotate(-15deg);
        }

        .star-2 {
            bottom: 15%;
            left: 5%;
            font-size: 80px;
            transform: rotate(25deg);
        }

        .text-overlay {
            position: absolute;
            font-size: 180px;
            font-weight: 900;
            color: rgba(139, 0, 0, 0.15);
            line-height: 0.9;
            pointer-events: none;
        }

        .text-people {
            top: 15%;
            left: -5%;
            transform: rotate(-90deg);
        }

        .text-meet {
            top: 20%;
            right: -8%;
            letter-spacing: 15px;
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
        }

        .video-container {
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
            display: flex;
            align-items: center;
            justify-content: center;

            border:3px solid #fff;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: white;
        }

        .play-button i {
            font-size: 28px;
            color: #E63946;
            margin-left: 5px;
        }

        .text-content {
            color: white;
            padding-left: 40px;
        }

        .section-subtitle {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 80px;
            height: 4px;
            background: white;
        }

        .section-description {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.95);
        }

        .signature {
            width: 180px;
            height: auto;
        }

        .signature-img {
            filter: brightness(0) invert(1);
        }

        /* Video Modal */
        .video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;              /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-modal.active {
    display: flex;              /* shows the modal */
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
}

.video-modal-content iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.close-video {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

        .footer-content {
            position: relative;
            z-index: 1;
        }

        .brand-section {

background: #E63946;
            padding: 0;
            border-radius: 0;
            text-align: center;
            box-shadow: none;
            color: white;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .brand-card {
            background-image: linear-gradient(rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.5));
         padding: 15px 30px 0px 30px;
            margin-bottom: 0;
        }

        .brand-orange-section {
            background-image: linear-gradient(rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.5));
padding: 0px 30px 0px 30px;
            flex: 1;
        }

        .vote-badge {
            background: white;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            position: relative;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .vote-badge i {
            font-size: 40px;
            color: #E63946;
        }

        .candidate-name {
            color: #E63946;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .politono {
            color: #2c3e50;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 0;
        }

        .tagline {
            color: white;
            font-size: 15px;
            line-height: 1.6;
            margin: 20px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .contact-info {
            margin-top: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            color: white;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .contact-item i {
            margin-right: 12px;
            font-size: 18px;
        }
       .footer-section   {
            margin-top: 5rem;
        }
        .footer-section h5 {
            font-size: 22px;
            font-weight: 900;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: #000;
        }

        .footer-section h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #E63946;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #000;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: 700;
        }

        .footer-links a:hover {
            padding-left: 10px;
            color: #E63946;
        }

        .footer-links a i {
            margin-right: 10px;
            font-size: 12px;
            font-weight: 900;
            color: #E63946;
        }

        .campaign-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid #E63946;
            transition: all 0.3s;

        }

        .campaign-card:hover {
            background: #fff;
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(220, 93, 74, 0.2);
        }

        .campaign-card h6 {
            font-size: 18px;
            margin-bottom: 0;
            font-weight: 600;
            color: #2c3e50;
        }

        .subscribe-form {
            background: #f8f9fa;
            padding: 8px;
            border-radius: 8px;
            display: flex;
            margin-bottom: 20px;
            border: 2px solid #e0e0e0;
        }

        .subscribe-form input {
            border: none;
            outline: none;
            flex: 1;
            padding: 8px 15px;
            font-size: 14px;
            background: transparent;
        }

        .subscribe-form button {
            background: #298151;
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .subscribe-form button:hover {
            background: #E63946;
        }

       .footer-main .social-links {
            display: flex;
            gap: 15px;
            margin-top: 5rem;
        }

        .footer-main .social-links a {
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #E63946;
            transition: all 0.3s;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .footer-main {
            background: #f5fbf5;
            color: #333;
            padding: 50px 0 0px;
            position: relative;
            overflow: hidden;
  /* margin-top: 8rem; */
        }

        .footer-main::before {
            display: none;
        }
      .footer-main   .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(220, 93, 74, 0.4);

background: #E63946;
            color: white;
        }

        .footer-bottom {
            background: #298151;
            color: white;
            padding: 20px 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .bottom-links {
            display: flex;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .bottom-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .bottom-links a:hover {
            color: #E63946;
        }

/* Header Section */
        .contact-header {

background: #E63946;
            padding: 100px 0 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
               background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 220"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 1;
        }

        .contact-header .container {
            position: relative;
            z-index: 1;
        }

        .page-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Info Cards */
        .contact-info-section {
            margin-top: -50px;
            position: relative;
            z-index: 10;
            margin-bottom: 80px;
        }

        .contact-info-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(220, 93, 74, 0.2);
        }

        .contact-icon {
            width: 80px;
            height: 80px;

background: #E63946;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 8px 20px rgba(220, 93, 74, 0.3);
        }

        .contact-icon i {
            font-size: 32px;
            color: white;
        }

        .contact-info-title {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .contact-info-text {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
        }

        .contact-info-text a {
            color: #E63946;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-info-text a:hover {
            text-decoration: underline;
        }

        /* Main Contact Section */
        .contact-main {
            padding: 80px 0;
        }

        /* Map Section */
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            height: 52rem;
            margin-bottom: 40px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: white;
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .form-title {
            font-size: 32px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .form-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 40px;
        }

        .form-label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 15px;
        }

        .form-control,
        .form-select {
            border: 2px solid #e9ecef;
            padding: 12px 20px;
            font-size: 15px;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #E63946;
            box-shadow: 0 0 0 0.2rem rgba(220, 93, 74, 0.15);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {

background: #E63946;
            color: white;
            border: none;
            padding: 15px 50px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(220, 93, 74, 0.4);
        }

        .submit-btn i {
            margin-left: 10px;
        }

        /* Social Media Section */
        .social-section {
            background: #298151;
            padding: 60px 0;
            color: white;
            text-align: center;
        }

        .social-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .social-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
        }




  /* Header Section */
        .blog-header {
            background: linear-gradient(135deg, #298151 0%, #298151 100%);
            padding: 100px 0 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .blog-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 300"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.6;
        }

        .blog-header .container {
            position: relative;
            z-index: 1;
        }

        .page-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Blog Content */
        .blog-content {
            padding: 80px 0;
        }

        /* Blog Card */
        .blog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

        .blog-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

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

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .category-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 1;
        }

        .blog-body {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #999;
            font-size: 14px;
        }

        .meta-item i {
            color: #E63946;
        }

        .blog-title {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-title a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }

        .blog-title a:hover {
            color: #E63946;
        }

        .blog-excerpt {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
            flex: 1;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #E63946;
            font-weight: 600;
            text-decoration: none;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: gap 0.3s;
        }

        .read-more:hover {
            gap: 12px;
            color: #d94d39;
        }

        .read-more i {
            transition: transform 0.3s;
        }

        .read-more:hover i {
            transform: translateX(3px);
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 30px;
        }

        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .widget-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #E63946;
        }

        /* Search Box */
        .search-box {
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 15px;
            transition: border-color 0.3s;
        }

        .search-box input:focus {
            outline: none;
            border-color: #E63946;
        }

        .search-box button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            border: none;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-box button:hover {
            transform: scale(1.05);
        }

        /* Categories */
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-list li {
            margin-bottom: 12px;
        }

        .category-list li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 8px;
            color: #2c3e50;
            text-decoration: none;
            transition: all 0.3s;
        }

        .category-list li a:hover {
            background: #E63946;
            color: #000;
            transform: translateX(5px);
        }

        .category-count {
            background: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        /* Recent Posts */
        .recent-post-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .recent-post-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .recent-post-thumb {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .recent-post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .recent-post-content h5 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .recent-post-content h5 a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }

        .recent-post-content h5 a:hover {
            color: #E63946;
        }

        .recent-post-date {
            font-size: 13px;
            color: #999;
        }

        .recent-post-date i {
            margin-right: 5px;
            color: #E63946;
        }

        /* Tags */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-item {
            display: inline-block;
            padding: 8px 18px;
            background: #f8f9fa;
            color: #2c3e50;
            border-radius: 50px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .tag-item:hover {
            background: #E63946;
            color: white;
        }

        /* Pagination */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }

        .pagination {
            display: flex;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pagination li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .pagination li a:hover {
            background: #E63946;
            border-color: #E63946;
            color: white;
            transform: translateY(-3px);
        }

        .pagination li.active a {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            border-color: #E63946;
            color: white;
        }

        .pagination li.disabled a {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

 /* Pagination */
        .pagination_class-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 60px;

            padding-bottom: 30px;
        }

        .pagination_class {
            display: flex;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }

        .pagination_class li a {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 45px;
            height: 45px;
            padding: 0 15px;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .pagination_class li a:hover {
            background: #E63946;
            border-color: #E63946;
            color: white;
            transform: translateY(-3px);
        }

        .pagination_class li.active a {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            border-color: #E63946;
            color: white;
        }

        .pagination_class li.disabled a {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        .pagination_class li.disabled a:hover {
            transform: none;
        }
 /* Header Banner */
        .news-header {
            background: url('https://images.unsplash.com/photo-1518609878373-06d740f60d8b?w=1920') center/cover no-repeat;
            padding: 120px 0;
            color: #fff;
            text-align: center;
            position: relative;
        }
        .news-header::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.55);
        }
        .news-header h1, .news-header p {
            position: relative;
            z-index: 2;
        }
        .news-header h1 {
            font-weight: 700;
            font-size: 48px;
        }
        .news-header p {
            font-size: 18px;
        }

        .news-hero {
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      position: relative;
    }
    .news-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
    }
    .news-hero h1 {
      position: relative;
      font-size: 3rem;
      font-weight: 700;
      z-index: 2;
    }

    /* ==== News Card ==== */
    .news-card {
      transition: all 0.3s ease;
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }
    .news-card img {
      height: 230px;
      object-fit: cover;
      transition: 0.4s;
    }
    .news-card:hover img {
      filter: brightness(0.8);
    }
    .news-content {
      padding: 20px;
    }
    .news-meta {
      font-size: 14px;
      color: #888;
    }
    .read-more {
      text-decoration: none;
      color: #007bff;
      font-weight: 500;
      transition: 0.3s;
    }
    .read-more:hover {
      color: #0056b3;
    }

    /* ==== Category Badge ==== */
    .category-badge {
      background: #E63946;
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 20px;
      position: absolute;
      top: 15px;
      left: 15px;
    }


/* ==== Hero Section ==== */
    .news-detail-hero {
      background: url('https://images.unsplash.com/photo-1581091012184-5c3a98a9f219?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      height: 55vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      position: relative;
    }
    .news-detail-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
    }
    .news-detail-hero h1 {
      position: relative;
      font-size: 2.8rem;
      font-weight: 700;
      text-align: center;
      z-index: 2;
    }

    /* ==== Main Article ==== */
    .article-content {
      background: #fff;
      margin-top: -80px;
      border-radius: 10px;
      padding: 40px 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    .article-meta {
      font-size: 14px;
      color: #777;
      margin-bottom: 15px;
    }
    .article-content h2 {
      font-weight: 700;
      color: #222;
      margin-bottom: 20px;
    }
    .article-content p {
      line-height: 1.8;
      font-size: 16px;
      margin-bottom: 15px;
    }
    .article-content img {
      width: 100%;
      border-radius: 10px;
      margin: 25px 0;
    }

    /* ==== Sidebar ==== */
    .news_sidebar {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 3px 12px rgba(0,0,0,0.07);
      padding: 25px;
    }
    .news_sidebar h5 {
      font-weight: 700;
      border-bottom: 2px solid #E63946;
      padding-bottom: 8px;
      margin-bottom: 20px;
      color: #E63946;
    }
    .news_sidebar ul {
      list-style: none;
      padding: 0;
    }
    .news_sidebar ul li {
      margin-bottom: 12px;
    }
    .news_sidebar ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: 0.3s;
    }
    .news_sidebar ul li a:hover {
      color: #E63946;
    }
 /* Header Section */
        .gallery-header {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            padding: 100px 0 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .gallery-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            opacity: 1;
        }

        .gallery-header .container {
            position: relative;
            z-index: 1;
        }

        .page-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Filter Tabs */
        .filter-section {
            padding: 50px 0 30px;
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .filter-btn {
            padding: 12px 30px;
            background: white;
            border: 2px solid #e9ecef;
            color: #2c3e50;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            border-color: #E63946;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(220, 93, 74, 0.3);
        }

        /* Gallery Grid */
        .gallery-grid {
            padding-bottom: 80px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 30px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.15);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(44, 62, 80, 0) 0%, rgba(44, 62, 80, 0.9) 100%);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            color: white;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            transform: translateY(20px);
            transition: transform 0.3s 0.1s;
        }

        .gallery-item:hover .gallery-title {
            transform: translateY(0);
        }

        .gallery-category {
            color: #E63946;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transform: translateY(20px);
            transition: transform 0.3s 0.2s;
        }

        .gallery-item:hover .gallery-category {
            transform: translateY(0);
        }

        .gallery-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 60px;
            height: 60px;
            background: rgba(220, 93, 74, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-icon {
            transform: translate(-50%, -50%) scale(1);
        }

        .gallery-icon i {
            font-size: 24px;
            color: white;
        }

        /* Lightbox Modal */
        .lightbox-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .lightbox-modal.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            color: white;
            font-size: 40px;
            cursor: pointer;
            transition: all 0.3s;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-close:hover {
            color: #E63946;
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(220, 93, 74, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .lightbox-nav:hover {
            background: #E63946;
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: -70px;
        }

        .lightbox-next {
            right: -70px;
        }

        .lightbox-info {
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
        }

        .lightbox-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .lightbox-category {
            font-size: 14px;
            color: #E63946;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #298151 0%, #298151 100%);
            padding: 60px 0;
            color: white;
            margin-top: 50px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            background: rgba(220, 93, 74, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .stat-icon i {
            font-size: 36px;
            color: #E63946;
        }

        .stat-number {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
        }


           .writings-page-wrapper {
            font-family: 'Hind Siliguri', sans-serif;
            background: #f8f9fa;
            color: #333;
        }

        /* Header Section */
        .writings-page-header {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            padding: 100px 0 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .writings-page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='rgba(255,255,255,0.1)' d='M0,160 C240,260 480,60 720,150 C960,240 1200,120 1440,210 V320 H0 Z'/></svg>") no-repeat bottom;
            background-size: cover;
        }

        .writings-page-header .container {
            position: relative;
            z-index: 1;
        }

        .writings-page-title {
            font-size: 52px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .writings-page-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Writings Content */
        .writings-page-content {
            padding: 80px 0;
        }

        /* Writing Card */
        .writings-item-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 40px;
            border-left: 5px solid #E63946;
        }

        .writings-item-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .writings-item-header {
            padding: 35px 40px 25px;
            border-bottom: 2px solid #f8f9fa;
        }

        .writings-item-date {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #E63946;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .writings-item-date i {
            font-size: 16px;
        }

        .writings-item-title {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .writings-item-title a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }

        .writings-item-title a:hover {
            color: #E63946;
        }

        .writings-item-meta {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            color: #999;
            font-size: 14px;
        }

        .writings-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .writings-meta-item i {
            color: #E63946;
        }

        .writings-item-body {
            padding: 30px 40px;
        }

        .writings-item-excerpt {
            font-size: 17px;
            color: #555;
            line-height: 1.9;
            margin-bottom: 25px;
        }

        .writings-item-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }

        .writings-tag {
            display: inline-block;
            padding: 6px 16px;
            background: #f8f9fa;
            color: #2c3e50;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .writings-tag:hover {
            background: #E63946;
            color: white;
        }

        .writings-read-full-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 30px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
        }

        .writings-read-full-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(220, 93, 74, 0.3);
            color: white;
        }

        .writings-read-full-btn i {
            transition: transform 0.3s;
        }

        .writings-read-full-btn:hover i {
            transform: translateX(3px);
        }

        /* Sidebar */
        .writings-page-sidebar {
            position: sticky;
            top: 30px;
        }

        .writings-sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .writings-widget-title {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #E63946;
        }

        /* Author Card */
        .writings-author-card {
            text-align: center;
        }

        .writings-author-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            border: 5px solid #f8f9fa;
            overflow: hidden;
        }

        .writings-author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .writings-author-name {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .writings-author-title {
            font-size: 15px;
            color: #E63946;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .writings-author-bio {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .writings-author-social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .writings-social-link {
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c3e50;
            text-decoration: none;
            transition: all 0.3s;
        }

        .writings-social-link:hover {
            background: #E63946;
            color: white;
            transform: translateY(-3px);
        }

        /* Categories */
        .writings-category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .writings-category-list li {
            margin-bottom: 15px;
        }

        .writings-category-list li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 18px;
            background: #f8f9fa;
            border-radius: 8px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s;
        }

        .writings-category-list li a:hover {
            background: #E63946;
            color: #000;
            transform: translateX(5px);
        }

        .writings-category-count {
            background: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        /* Popular Posts */
        .writings-popular-post {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .writings-popular-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .writings-popular-number {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }

        .writings-popular-content h5 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .writings-popular-content h5 a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }

        .writings-popular-content h5 a:hover {
            color: #E63946;
        }

        .writings-popular-date {
            font-size: 13px;
            color: #999;
        }

        /* Pagination */
        .writings-pagination-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 60px;
            padding-bottom: 30px;
        }

        .writings-pagination {
            display: flex;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }

        .writings-pagination li a {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 45px;
            height: 45px;
            padding: 0 15px;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .writings-pagination li a:hover {
            background: #E63946;
            border-color: #E63946;
            color: white;
            transform: translateY(-3px);
        }

        .writings-pagination li.active a {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            border-color: #E63946;
            color: white;
        }

        .writings-pagination li.disabled a {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }
   .writing-detail-wrapper {
            font-family: 'Hind Siliguri', sans-serif;
            background: #f8f9fa;
            color: #333;
        }

        /* Header Section */
        .writing-detail-header {
            background: linear-gradient(135deg, #298151 0%, #298151 100%);
            padding: 100px 0 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .writing-detail-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(220, 93, 74, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 93, 74, 0.1) 0%, transparent 50%);
        }

        .writing-detail-header .container {
            position: relative;
            z-index: 1;
        }

        .writing-detail-breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 20px;
        }

        .writing-detail-breadcrumb .breadcrumb-item {
            color: rgba(255, 255, 255, 0.8);
        }

        .writing-detail-breadcrumb .breadcrumb-item.active {
            color: #E63946;
        }

        .writing-detail-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }

        .writing-detail-breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .writing-detail-page-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .writing-detail-page-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Content Section */
        .writing-detail-content-section {
            padding: 80px 0;
        }

        /* Featured Image */
        .writing-detail-featured-image {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .writing-detail-featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .writing-detail-featured-image:hover img {
            transform: scale(1.05);
        }

        /* Meta Info */
        .writing-detail-meta-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 2px solid #e9ecef;
        }

        .writing-detail-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #666;
            font-size: 15px;
        }

        .writing-detail-meta-item i {
            color: #E63946;
            font-size: 18px;
        }

        .writing-detail-category-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            color: white;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Short Description */
        .writing-detail-short-desc {
            font-size: 22px;
            line-height: 1.8;
            color: #555;
            font-weight: 400;
            margin-bottom: 40px;
            padding: 30px;
            background: #f8f9fa;
            border-left: 4px solid #E63946;
            border-radius: 8px;
        }

        /* Long Description */
        .writing-detail-long-desc {
            font-size: 17px;
            line-height: 1.9;
            color: #444;
            margin-bottom: 40px;
        }

        .writing-detail-long-desc p {
            margin-bottom: 25px;
        }

        .writing-detail-long-desc h3 {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .writing-detail-long-desc h4 {
            font-size: 22px;
            font-weight: 600;
            color: #2c3e50;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .writing-detail-long-desc ul {
            margin-bottom: 25px;
            padding-left: 25px;
        }

        .writing-detail-long-desc ul li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 10px;
        }

        .writing-detail-long-desc ul li::marker {
            color: #E63946;
        }

        .writing-detail-long-desc blockquote {
            border-left: 4px solid #E63946;
            padding: 20px 30px;
            margin: 30px 0;
            background: #f8f9fa;
            font-style: italic;
            font-size: 18px;
            color: #555;
        }

        /* Tags */
        .writing-detail-tags-section {
            margin-bottom: 40px;
        }

        .writing-detail-tags-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .writing-detail-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .writing-detail-tag {
            display: inline-block;
            padding: 8px 18px;
            background: #f8f9fa;
            color: #2c3e50;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .writing-detail-tag:hover {
            background: #E63946;
            color: white;
        }

        /* Share Section */
        .writing-detail-share-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-top: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .writing-detail-share-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .writing-detail-social-share {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .writing-detail-social-share a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }

        .writing-detail-social-share a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .writing-detail-social-share .facebook {
            background: #3b5998;
        }

        .writing-detail-social-share .twitter {
            background: #1da1f2;
        }

        .writing-detail-social-share .linkedin {
            background: #0077b5;
        }

        .writing-detail-social-share .email {
            background: #666;
        }

        /* Author Box */
        .writing-detail-author-box {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-top: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .writing-detail-author-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 5px solid #f8f9fa;
        }

        .writing-detail-author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .writing-detail-author-info h4 {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .writing-detail-author-role {
            color: #E63946;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .writing-detail-author-bio {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .writing-detail-author-social {
            display: flex;
            gap: 12px;
        }

        .writing-detail-author-social a {
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c3e50;
            text-decoration: none;
            transition: all 0.3s;
        }

        .writing-detail-author-social a:hover {
            background: #E63946;
            color: white;
            transform: translateY(-3px);
        }

        /* Sidebar */
        .writing-detail-sidebar {
            position: sticky;
            top: 30px;
        }

        .writing-detail-widget {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .writing-detail-widget-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #E63946;
        }

        /* Recent Posts */
        .writing-detail-recent-post {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .writing-detail-recent-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .writing-detail-recent-thumb {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .writing-detail-recent-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .writing-detail-recent-content h5 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .writing-detail-recent-content h5 a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }

        .writing-detail-recent-content h5 a:hover {
            color: #E63946;
        }

        .writing-detail-recent-date {
            font-size: 13px;
            color: #999;
        }

        .writing-detail-recent-date i {
            margin-right: 5px;
            color: #E63946;
        }

        /* Categories */
        .writing-detail-category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .writing-detail-category-list li {
            margin-bottom: 12px;
        }

        .writing-detail-category-list li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 8px;
            color: #2c3e50;
            text-decoration: none;
            transition: all 0.3s;
        }

        .writing-detail-category-list li a:hover {
            background: #E63946;
            color: white;
            transform: translateX(5px);
        }

        .writing-detail-category-count {
            background: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

         .aboutus-hero-section {
            background: linear-gradient(135deg, #298151 0%, #2a5298 100%);
            color: white;
            padding: 80px 0;
            margin-bottom: 50px;
        }
        .aboutus-hero-section::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='rgba(255,255,255,0.1)' d='M0,128 C480,256 960,0 1440,128 V320 H0 Z'/></svg>") no-repeat bottom;
            background-size: cover;
        }
        .aboutus-hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .aboutus-section-title {
            color: #1e3c72;
            font-weight: bold;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .aboutus-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #2a5298;
        }

        .aboutus-mission-card {
            background: #f8f9fa;
            border-left: 4px solid #2a5298;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            transition: transform 0.3s;
        }

        .aboutus-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .aboutus-mission-title {
            color: #1e3c72;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .aboutus-values-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            text-align: center;
            transition: all 0.3s;
        }

        .aboutus-values-box:hover {
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .aboutus-values-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #298151 0%, #2a5298 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
        }

        .aboutus-team-section {
            background: #f8f9fa;
            padding: 60px 0;
            margin-top: 50px;
        }

        .aboutus-stats-section {
            background: linear-gradient(135deg, #298151 0%, #2a5298 100%);
            color: white;
            padding: 60px 0;
            margin: 50px 0;
        }
        .aboutus-stats-section::before {
          content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='rgba(255,255,255,0.1)' d='M0,160 C240,260 480,60 720,150 C960,240 1200,120 1440,210 V320 H0 Z'/></svg>") no-repeat bottom;
            background-size: cover;
            opacity: 0.5;
        }

        .aboutus-stat-box {
            text-align: center;
            padding: 20px;
        }

        .aboutus-stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .aboutus-stat-label {
            font-size: 1.2rem;
        }

        .aboutus-commitment-list {
            list-style: none;
            padding-left: 0;
            margin-left: 1.5rem;
        }

        .aboutus-commitment-item {
            margin-bottom: 1rem;
        }

         .aboutme-hero-section {
            background: linear-gradient(135deg, #298151 0%, #1e4228 100%);
            color: white;
            padding: 100px 0 80px;
            position: relative;
        }
        .aboutme-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            opacity: 0.5;
            background-size: cover;
        }

        .aboutme-profile-image {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            border: 8px solid white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            object-fit: cover;
            background: linear-gradient(135deg, #E63946 0%, #298151 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: white;
        }

        .aboutme-hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .aboutme-designation {
            font-size: 1.5rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .aboutme-section-title {
            color: #2c3e50;
            font-weight: bold;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .aboutme-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #298151;
        }

        .aboutme-info-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }

        .aboutme-info-card-title {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .aboutme-timeline-item {
            padding-left: 40px;
            padding-bottom: 30px;
            border-left: 3px solid #E63946;
            position: relative;
            margin-left: 20px;
        }

        .aboutme-timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #298151;
        }

        .aboutme-timeline-item:last-child {
            border-left: 3px solid transparent;
        }

        .aboutme-timeline-year {
            color: #2c3e50;
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .aboutme-achievement-box {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #298151;
            transition: all 0.3s;
        }

        .aboutme-achievement-box:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .aboutme-achievement-title {
            color: #2c3e50;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .aboutme-contact-info {
            background: linear-gradient(135deg, #298151 0%, #1e4228 100%);
            color: white;
            padding: 50px 0;
            margin-top: 50px;
        }

        .aboutme-contact-item {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .aboutme-quote-section {
            background: #f8f9fa;
            padding: 60px 0;
            margin: 50px 0;
            text-align: center;
        }

        .aboutme-quote-text {
            font-size: 1.8rem;
            font-style: italic;
            color: #2c3e50;
            max-width: 800px;
            margin: 0 auto;
        }

        .aboutme-interest-list {
            list-style: none;
            padding-left: 0;
        }

        .aboutme-interest-item {
            margin-bottom: 0.5rem;
        }

        .aboutme-personal-info p {
            margin-bottom: 0.8rem;
        }
          .rajbari-dev-wrapper {
            font-family: 'Hind Siliguri', sans-serif;
            background: #f8f9fa;
            color: #333;
        }

        /* Header Section */
        .rajbari-dev-header {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .rajbari-dev-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            opacity: 1;
        }

        .rajbari-dev-header .container {
            position: relative;
            z-index: 1;
        }

        .rajbari-dev-main-title {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .rajbari-dev-main-subtitle {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Stats Section */
        .rajbari-dev-stats-section {
            margin-top: -60px;
            position: relative;
            z-index: 10;
            margin-bottom: 80px;
        }

        .rajbari-dev-stat-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .rajbari-dev-stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(220, 93, 74, 0.2);
        }

        .rajbari-dev-stat-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 8px 20px rgba(220, 93, 74, 0.3);
        }

        .rajbari-dev-stat-icon i {
            font-size: 36px;
            color: white;
        }

        .rajbari-dev-stat-number {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .rajbari-dev-stat-label {
            font-size: 16px;
            color: #666;
            font-weight: 500;
        }

        /* Timeline Section */
        .rajbari-dev-timeline-section {
            padding: 80px 0;
        }

        .rajbari-dev-section-title {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 20px;
        }

        .rajbari-dev-section-subtitle {
            font-size: 18px;
            color: #666;
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .rajbari-dev-timeline {
            position: relative;
            padding: 50px 0;
        }

        .rajbari-dev-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #E63946, #d94d39);
            transform: translateX(-50%);
        }

        .rajbari-dev-timeline-item {
            position: relative;
            margin-bottom: 50px;
        }

        .rajbari-dev-timeline-item:nth-child(odd) .rajbari-dev-timeline-content {
            margin-left: 0;
            margin-right: auto;
            text-align: right;
        }

        .rajbari-dev-timeline-item:nth-child(even) .rajbari-dev-timeline-content {
            margin-left: auto;
            margin-right: 0;
            text-align: left;
        }

        .rajbari-dev-timeline-content {
            width: calc(50% - 50px);
            background: white;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.3s;
        }

        .rajbari-dev-timeline-content:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(220, 93, 74, 0.2);
        }

        .rajbari-dev-timeline-year {
            font-size: 28px;
            font-weight: 700;
            color: #E63946;
            margin-bottom: 15px;
        }

        .rajbari-dev-timeline-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .rajbari-dev-timeline-desc {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
        }

        .rajbari-dev-timeline-dot {
            position: absolute;
            left: 50%;
            top: 30px;
            width: 20px;
            height: 20px;
            background: #E63946;
            border-radius: 50%;
            transform: translateX(-50%);
            border: 4px solid white;
            box-shadow: 0 0 0 4px rgba(220, 93, 74, 0.2);
            z-index: 1;
        }

        /* Achievement Section */
        .rajbari-dev-achievement-section {
            padding: 80px 0;
            background: white;
        }

        .rajbari-dev-achievement-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 35px;
            height: 100%;
            transition: all 0.3s;
            border-left: 5px solid #E63946;
        }

        .rajbari-dev-achievement-card:hover {
            background: white;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .rajbari-dev-achievement-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .rajbari-dev-achievement-icon i {
            font-size: 28px;
            color: white;
        }

        .rajbari-dev-achievement-title {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
        }

        .rajbari-dev-achievement-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }

        /* Projects Gallery */
        .rajbari-dev-projects-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .rajbari-dev-project-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            margin-bottom: 30px;
        }

        .rajbari-dev-project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .rajbari-dev-project-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

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

        .rajbari-dev-project-card:hover .rajbari-dev-project-image img {
            transform: scale(1.1);
        }

        .rajbari-dev-project-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
        }

        .rajbari-dev-project-body {
            padding: 30px;
        }

        .rajbari-dev-project-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .rajbari-dev-project-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .rajbari-dev-project-meta {
            display: flex;
            gap: 20px;
            padding-top: 20px;
            border-top: 2px solid #f8f9fa;
        }

        .rajbari-dev-project-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #999;
            font-size: 14px;
        }

        .rajbari-dev-project-meta-item i {
            color: #E63946;
        }

        /* Future Vision Section */
        .rajbari-dev-vision-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #298151 0%, #298151 100%);
            color: white;
        }

        .rajbari-dev-vision-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .rajbari-dev-vision-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .rajbari-dev-vision-text {
            font-size: 18px;
            line-height: 1.9;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .rajbari-dev-vision-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .rajbari-dev-vision-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .rajbari-dev-vision-item-icon {
            width: 60px;
            height: 60px;
            background: #E63946;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .rajbari-dev-vision-item-icon i {
            font-size: 28px;
            color: white;
        }

        .rajbari-dev-vision-item-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .rajbari-dev-vision-item-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

  .youth-dev-wrapper {
            font-family: 'Hind Siliguri', sans-serif;
            background: #f8f9fa;
            color: #333;
        }

        /* Header Section */
        .youth-dev-header {
            background: linear-gradient(135deg, #298151 0%, #298151 100%);
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .youth-dev-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(220, 93, 74, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 93, 74, 0.1) 0%, transparent 50%);
            opacity: 1;
        }

        .youth-dev-header .container {
            position: relative;
            z-index: 1;
        }

        .youth-dev-page-title {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .youth-dev-page-subtitle {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Hero Stats */
        .youth-dev-hero-stats {
            margin-top: -60px;
            position: relative;
            z-index: 10;
            margin-bottom: 80px;
        }

        .youth-dev-hero-stat-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 5px solid #E63946;
        }

        .youth-dev-hero-stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(220, 93, 74, 0.2);
        }

        .youth-dev-hero-stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #E63946;
            margin-bottom: 10px;
        }

        .youth-dev-hero-stat-label {
            font-size: 17px;
            color: #2c3e50;
            font-weight: 600;
        }

        /* Programs Section */
        .youth-dev-programs-section {
            padding: 80px 0;
        }

        .youth-dev-section-title {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .youth-dev-section-subtitle {
            font-size: 18px;
            color: #666;
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .youth-dev-program-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }

        .youth-dev-program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .youth-dev-program-icon-wrapper {
            padding: 40px;
            text-align: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .youth-dev-program-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            box-shadow: 0 8px 20px rgba(220, 93, 74, 0.3);
        }

        .youth-dev-program-icon i {
            font-size: 45px;
            color: white;
        }

        .youth-dev-program-body {
            padding: 35px;
        }

        .youth-dev-program-title {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .youth-dev-program-desc {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .youth-dev-program-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .youth-dev-program-features li {
            padding: 8px 0;
            color: #555;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .youth-dev-program-features li i {
            color: #E63946;
            font-size: 14px;
        }

        /* Success Stories */
        .youth-dev-stories-section {
            padding: 80px 0;
            background: white;
        }

        .youth-dev-story-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 40px;
            height: 100%;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .youth-dev-story-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 120px;
            color: rgba(220, 93, 74, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .youth-dev-story-card:hover {
            background: white;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .youth-dev-story-content {
            position: relative;
            z-index: 1;
        }

        .youth-dev-story-text {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .youth-dev-story-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .youth-dev-story-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #E63946;
        }

        .youth-dev-story-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .youth-dev-story-author-info h5 {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .youth-dev-story-author-info p {
            font-size: 14px;
            color: #E63946;
            margin-bottom: 0;
            font-weight: 600;
        }

        /* Skills Training Section */
        .youth-dev-skills-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            color: white;
        }

        .youth-dev-skill-category {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }

        .youth-dev-skill-category:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .youth-dev-skill-category-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .youth-dev-skill-category-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .youth-dev-skill-category-icon i {
            font-size: 24px;
            color: #E63946;
        }

        .youth-dev-skill-items {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .youth-dev-skill-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 500;
        }

        /* Opportunities Section */
        .youth-dev-opportunities-section {
            padding: 80px 0;
        }

        .youth-dev-opportunity-card {
            background: white;
            border-radius: 12px;
            padding: 35px;
            height: 100%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border-left: 5px solid #E63946;
        }

        .youth-dev-opportunity-card:hover {
            box-shadow: 0 10px 40px rgba(220, 93, 74, 0.2);
            transform: translateY(-5px);
        }

        .youth-dev-opportunity-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            color: white;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .youth-dev-opportunity-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .youth-dev-opportunity-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .youth-dev-opportunity-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            padding-top: 20px;
            border-top: 2px solid #f8f9fa;
        }

        .youth-dev-opportunity-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #999;
            font-size: 14px;
        }

        .youth-dev-opportunity-meta-item i {
            color: #E63946;
        }

        /* CTA Section */
        .youth-dev-cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #298151 0%, #298151 100%);
            color: white;
            text-align: center;
        }

        .youth-dev-cta-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .youth-dev-cta-text {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .youth-dev-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .youth-dev-cta-btn {
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .youth-dev-cta-btn-primary {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            color: white;
        }

        .youth-dev-cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(220, 93, 74, 0.4);
            color: white;
        }

        .youth-dev-cta-btn-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .youth-dev-cta-btn-secondary:hover {
            background: white;
            color: #2c3e50;
        }


    /* Header Section */
        .youth-reg-header {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            padding: 80px 0 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .youth-reg-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

        .youth-reg-header .container {
            position: relative;
            z-index: 1;
        }

        .youth-reg-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .youth-reg-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Form Section */
        .youth-reg-form-section {
            padding: 80px 0;
        }

        .youth-reg-form-container {
            background: white;
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 900px;
            margin: -100px auto 0;
            position: relative;
            z-index: 10;
        }

        .youth-reg-form-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 3px solid #E63946;
        }

        .youth-reg-form-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .youth-reg-form-header p {
            font-size: 16px;
            color: #666;
        }

        .youth-reg-step-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
        }

        .youth-reg-step-indicator::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 0;
            right: 0;
            height: 3px;
            background: #e9ecef;
            z-index: 0;
        }

        .youth-reg-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .youth-reg-step-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e9ecef;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s;
        }

        .youth-reg-step.active .youth-reg-step-circle {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(220, 93, 74, 0.4);
        }

        .youth-reg-step.completed .youth-reg-step-circle {
            background: #28a745;
            color: white;
        }

        .youth-reg-step-label {
            font-size: 14px;
            font-weight: 600;
            color: #999;
            text-align: center;
        }

        .youth-reg-step.active .youth-reg-step-label {
            color: #E63946;
        }

        /* Form Groups */
        .youth-reg-form-step {
            display: none;
        }

        .youth-reg-form-step.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .youth-reg-section-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f8f9fa;
        }

        .youth-reg-form-label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 15px;
        }

        .youth-reg-form-label.required::after {
            content: ' *';
            color: #E63946;
        }

        .youth-reg-form-control {
            border: 2px solid #e9ecef;
            padding: 12px 20px;
            font-size: 15px;
            width: 100%;
            border-radius: 8px;
            transition: all 0.3s;
            font-family: 'Hind Siliguri', sans-serif;
        }

        .youth-reg-form-control:focus {
            border-color: #E63946;
            box-shadow: 0 0 0 0.2rem rgba(220, 93, 74, 0.15);
            outline: none;
        }

        .youth-reg-form-select {
            border: 2px solid #e9ecef;
            padding: 12px 20px;
            font-size: 15px;
            border-radius: 8px;
            transition: all 0.3s;
            font-family: 'Hind Siliguri', sans-serif;
        }

        .youth-reg-form-select:focus {
            border-color: #E63946;
            box-shadow: 0 0 0 0.2rem rgba(220, 93, 74, 0.15);
            outline: none;
        }

        .youth-reg-radio-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .youth-reg-radio-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .youth-reg-radio-item input[type="radio"] {
            width: 20px;
            height: 20px;
            accent-color: #E63946;
        }

        .youth-reg-checkbox-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .youth-reg-checkbox-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: #E63946;
        }

        .youth-reg-file-upload {
            border: 2px dashed #e9ecef;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .youth-reg-file-upload:hover {
            border-color: #E63946;
            background: #f8f9fa;
        }

        .youth-reg-file-upload i {
            font-size: 48px;
            color: #E63946;
            margin-bottom: 15px;
        }

        .youth-reg-file-upload-text {
            font-size: 15px;
            color: #666;
        }

        .youth-reg-file-name {
            margin-top: 15px;
            color: #28a745;
            font-weight: 600;
        }

        /* Buttons */
        .youth-reg-button-group {
            display: flex;
            gap: 15px;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #f8f9fa;
        }

        .youth-reg-btn {
            padding: 14px 35px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .youth-reg-btn-primary {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            color: white;
        }

        .youth-reg-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 93, 74, 0.4);
        }

        .youth-reg-btn-secondary {
            background: #6c757d;
            color: white;
        }

        .youth-reg-btn-secondary:hover {
            background: #5a6268;
        }

        .youth-reg-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Success Message */
        .youth-reg-success {
            display: none;
            text-align: center;
            padding: 60px 40px;
        }

        .youth-reg-success.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        .youth-reg-success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            animation: scaleIn 0.5s;
        }

        @keyframes scaleIn {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        .youth-reg-success-icon i {
            font-size: 50px;
            color: white;
        }

        .youth-reg-success-title {
            font-size: 32px;
            font-weight: 700;
            color: #28a745;
            margin-bottom: 15px;
        }

        .youth-reg-success-text {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        /* Info Box */
        .youth-reg-info-box {
            background: #f8f9fa;
            border-left: 4px solid #E63946;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .youth-reg-info-box i {
            color: #E63946;
            margin-right: 10px;
        }

        .youth-reg-info-box p {
            margin: 0;
            font-size: 14px;
            color: #666;
        }



         /* Header Section */
        .complaint-header {
            background: linear-gradient(135deg, #E63946 0%, #298151 100%);
            color: white;
            padding: 80px 0 60px;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }

        .complaint-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }

        .complaint-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .complaint-subtitle {
            font-size: 1.2rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Info Cards */
        .complaint-info-section {
            padding: 30px 0 50px;
        }

        .complaint-info-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .complaint-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .complaint-info-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #E63946 0%, #298151 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .complaint-info-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .complaint-info-card p {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Form Section */
        .complaint-form-section {
            padding: 50px 0;
        }

        .complaint-form-container {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .complaint-form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .complaint-form-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .complaint-form-header p {
            color: #666;
            font-size: 1.1rem;
        }

        .complaint-form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .complaint-form-label.required::after {
            content: '*';
            color: #E63946;
            margin-left: 5px;
        }

        .complaint-form-control,
        .complaint-form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .complaint-form-control:focus,
        .complaint-form-select:focus {
            border-color: #E63946;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
            outline: none;
        }

        .complaint-form-control::placeholder {
            color: #adb5bd;
        }

        .complaint-info-box {
            background: #e7f3ff;
            border-left: 4px solid #2196F3;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .complaint-info-box i {
            color: #2196F3;
            font-size: 1.5rem;
        }

        .complaint-info-box p {
            margin: 0;
            color: #333;
            font-size: 0.95rem;
        }

        .complaint-type-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .complaint-type-option {
            position: relative;
        }

        .complaint-type-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

        .complaint-type-option label {
            display: block;
            padding: 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .complaint-type-option label i {
            font-size: 2rem;
            color: #E63946;
            margin-bottom: 10px;
            display: block;
        }

        .complaint-type-option label span {
            display: block;
            font-weight: 600;
            color: #333;
        }

        .complaint-type-option input[type="radio"]:checked + label {
            border-color: #E63946;
            background: linear-gradient(135deg, #E6394615 0%, #29815115 100%);
        }

        .complaint-file-upload {
            border: 2px dashed #cbd5e0;
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .complaint-file-upload:hover {
            border-color: #E63946;
            background: #f0f4ff;
        }

        .complaint-file-upload i {
            font-size: 3rem;
            color: #E63946;
            margin-bottom: 15px;
        }

        .complaint-file-upload-text {
            color: #666;
            font-size: 1rem;
            margin-top: 10px;
        }

        .complaint-file-name {
            color: #28a745;
            font-weight: 600;
            margin-top: 10px;
        }

        .complaint-btn {
            padding: 15px 40px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .complaint-btn-primary {
            background: linear-gradient(135deg, #E63946 0%, #298151 100%);
            color: white;
        }

        .complaint-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .complaint-btn-secondary {
            background: #6c757d;
            color: white;
        }

        .complaint-btn-secondary:hover {
            background: #5a6268;
        }

        .complaint-button-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        /* Success Message */
        .complaint-success {
            display: none;
            text-align: center;
            padding: 60px 40px;
        }

        .complaint-success.active {
            display: block;
        }

        .complaint-success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 3rem;
            color: white;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }

        .complaint-success-title {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .complaint-success-text {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .complaint-tracking-box {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
        }

        .complaint-tracking-box h4 {
            color: #333;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .complaint-tracking-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #E63946;
            padding: 15px;
            background: white;
            border-radius: 8px;
            display: inline-block;
            letter-spacing: 2px;
        }

        /* FAQ Section */
        .complaint-faq-section {
            background: white;
            padding: 60px 0;
            margin-top: 50px;
        }

        .complaint-faq-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 50px;
        }

        .complaint-faq-item {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .complaint-faq-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .complaint-faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .complaint-faq-question i {
            color: #E63946;
        }

        .complaint-faq-answer {
            color: #666;
            line-height: 1.8;
            padding-left: 30px;
        }

        /* Contact Section */
        .complaint-contact-section {
            background: linear-gradient(135deg, #E63946 0%, #298151 100%);
            color: white;
            padding: 60px 0;
            margin-top: 50px;
        }

        .complaint-contact-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 40px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .complaint-contact-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .complaint-contact-card i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .complaint-contact-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .complaint-contact-card p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Responsive */



        /* Complain solved list card */
.solved-complaints-list {
    padding: 60px 0;
    background: #f8fafc;
}

.solved-list-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.solved-list-sub {
    color: #555;
    margin-bottom: 40px;
}

.solved-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    border-left: 5px solid #28a745;
    transition: .3s;
}

.solved-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.solved-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.details-btn {
    display: inline-block;
    margin-top: 15px;
    background: #1d6f42;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.details-btn:hover {
    background: #14532d;
}



        /* Complain Solved details section */
        .complaint-solved-section {
            padding: 60px 0;
            background: #f7f9fc;
        }

        .complaint-solved-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .complaint-solved-subtitle {
            color: #555;
            margin-bottom: 40px;
            font-size: 16px;
        }

        .complaint-solved-card {
            background: #ffffff;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-left: 5px solid #28a745;
        }

        .complaint-solved-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .complaint-solved-item:last-child {
            border-bottom: none;
        }

        .complaint-solved-item .label {
            font-weight: 600;
            color: #333;
        }

        .complaint-solved-item .value {
            font-weight: 600;
            color: #444;
        }

        .complaint-solved-item .value.solved {
            color: #28a745;
        }

        .solved-status {
            margin-top: 25px;
            background: #e9f7ef;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            color: #28a745;
            font-weight: 600;
            font-size: 16px;
        }

        /* Steps Section */
        .steps-title {
            margin-top: 35px;
            font-size: 18px;
            font-weight: 700;
            color: #333;
        }

        .complaint-steps {
            margin-top: 15px;
            padding-left: 0;
            list-style: none;
        }

        .complaint-steps li {
            background: #f1f5f9;
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            font-weight: 500;
            color: #444;
            border-left: 4px solid #28a745;
        }

        .complaint-steps li i {
            margin-right: 10px;
            font-size: 14px;
            color: #28a745;
        }


/* Header */
.advice-header {
    background: linear-gradient(135deg, #457b9d, #1d3557);
    color: #fff;
    padding: 60px 0;
}
.advice-header .advice-title {
    font-size: 36px;
    font-weight: 700;
}
.advice-header .advice-subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 15px auto 0 auto;
}

/* Advice Details Card */
.advice-details-section {
    padding: 60px 0;
    background: #f7f9fc;
}
.advice-details-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #1d3557;
    max-width: 900px;
    margin: 0 auto;
}

/* Advice Items */
.advice-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.advice-item .label {
    font-weight: 600;
    color: #333;
}

/* Advice Content */
.advice-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    color: #1d3557;
}
.advice-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Steps Section */
.advice-steps-section {
    margin-top: 30px;
}
.advice-steps-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1d3557;
}
.advice-steps {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}
.advice-steps li {
    background: #edf3f7;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #1d3557;
    display: flex;
    align-items: center;
}
.advice-steps li i {
    margin-right: 10px;
    color: #1d3557;
}

/* Details Button */
.details-btn {
    display: inline-block;
    margin-top: 15px;
    background: #1d3557;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.details-btn i {
    margin-right: 6px;
}
.details-btn:hover {
    background: #0d1b2a;
}


/* Home Card Section */
.home-card-section {
    padding: 60px 0;
    background: #f4f7fb;
}

.home-card-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    color: #243447;
}

.home-card {
    background: #fff;
    padding: 25px 15px;
    margin-bottom: 25px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    display: block;
    color: #333;
    transition: 0.3s;
    border: 1px solid #e2e6ea;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.06);
}

.home-card:hover {
    background: #1d3557;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
}

.home-card i {
    font-size: 36px;
    margin-bottom: 15px;
}

.home-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}




  /* Header Section */
        .rajbari-header {
            background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .rajbari-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,128L48,144C96,160,192,192,288,192C384,192,480,160,576,149.3C672,139,768,149,864,170.7C960,192,1056,224,1152,213.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }

        .rajbari-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .rajbari-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Intro Section */
        .rajbari-intro-section {
            padding: 80px 0;
            background: white;
        }

        .rajbari-intro-card {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .rajbari-intro-text {
            font-size: 1.2rem;
            color: #333;
            line-height: 2;
            text-align: justify;
        }

        .rajbari-intro-text::first-letter {
            font-size: 3rem;
            font-weight: 700;
            color: #E63946;
            float: left;
            line-height: 1;
            margin-right: 10px;
        }

        /* Statistics Section */
        .rajbari-stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
            color: white;
            position: relative;
        }

        .rajbari-stats-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .rajbari-stats-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.25);
        }

        .rajbari-stats-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .rajbari-stats-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .rajbari-stats-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Vision Section */
        .rajbari-vision-section {
            padding: 80px 0;
            background: white;
        }

        .rajbari-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 20px;
        }

        .rajbari-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #E63946, #F1FAEE);
            border-radius: 2px;
        }

        .rajbari-vision-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
            border-left: 5px solid #E63946;
        }

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

        .rajbari-vision-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
            color: white;
        }

        .rajbari-vision-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .rajbari-vision-text {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* Development Areas */
        .rajbari-development-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .rajbari-development-item {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #E63946;
        }

        .rajbari-development-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .rajbari-development-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .rajbari-development-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }

        .rajbari-development-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        .rajbari-development-text {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
            padding-left: 70px;
        }

        /* Ideas Section */
        .rajbari-ideas-section {
            padding: 60px 0;
            background: white;
        }

        .rajbari-idea-card {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            border-radius: 20px;
            padding: 20px 40px 20px 40px;;
            margin-bottom: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }

        .rajbari-idea-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
        }

        .rajbari-idea-icon {
            font-size: 2.5rem;
        }

        .rajbari-idea-title {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .rajbari-idea-text {
            font-size: 1rem;
            line-height: 1.8;
            opacity: 0.95;
        }

        /* Share Ideas Form */
        .rajbari-share-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
            color: white;
        }

        .rajbari-share-card {
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .rajbari-form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .rajbari-form-label.required::after {
            content: '*';
            color: #E63946;
            margin-left: 5px;
        }

        .rajbari-form-control,
        .rajbari-form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .rajbari-form-control:focus,
        .rajbari-form-select:focus {
            border-color: #E63946;
            box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.15);
            outline: none;
        }

        .rajbari-btn {
            padding: 15px 40px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .rajbari-btn-primary {
            background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
            color: white;
        }

        .rajbari-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
        }

        /* Success Message */
        .rajbari-success {
            display: none;
            text-align: center;
            padding: 60px 40px;
        }

        .rajbari-success.active {
            display: block;
        }

        .rajbari-success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 3rem;
            color: white;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        .rajbari-success-title {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .rajbari-success-text {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Quote Section */
        .rajbari-quote-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
            color: white;
            text-align: center;
        }

        .rajbari-quote-icon {
            font-size: 4rem;
            opacity: 0.3;
            margin-bottom: 20px;
        }

        .rajbari-quote-text {
            font-size: 1.8rem;
            font-style: italic;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 30px;
        }

        .rajbari-quote-author {
            font-size: 1.3rem;
            font-weight: 600;
            opacity: 0.9;
        }

           /* Header Section */
        .volunteer-header {
            background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .volunteer-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }

        .volunteer-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .volunteer-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Why Volunteer Section */
        .volunteer-why-section {
            padding: 80px 0;
            background: white;
        }

        .volunteer-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 20px;
        }

        .volunteer-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #E63946, #F1FAEE);
            border-radius: 2px;
        }

        .volunteer-benefit-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
            border-top: 4px solid #E63946;
        }

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

        .volunteer-benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        .volunteer-benefit-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .volunteer-benefit-text {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* Activities Section */
        .volunteer-activities-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .volunteer-activity-item {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .volunteer-activity-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .volunteer-activity-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            flex-shrink: 0;
        }

        .volunteer-activity-content h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .volunteer-activity-content p {
            color: #666;
            margin: 0;
            line-height: 1.6;
        }

        /* Registration Form Section */
        .volunteer-form-section {
            padding: 80px 0;
            background: white;
        }

        .volunteer-form-container {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .volunteer-form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .volunteer-form-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .volunteer-form-header p {
            color: #666;
            font-size: 1.1rem;
        }

        .volunteer-info-box {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .volunteer-info-box i {
            color: #ffc107;
            font-size: 1.5rem;
        }

        .volunteer-info-box p {
            margin: 0;
            color: #333;
            font-size: 0.95rem;
        }

        .volunteer-form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .volunteer-form-label.required::after {
            content: '*';
            color: #E63946;
            margin-left: 5px;
        }

        .volunteer-form-control,
        .volunteer-form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .volunteer-form-control:focus,
        .volunteer-form-select:focus {
            border-color: #E63946;
            box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.15);
            outline: none;
        }

        .volunteer-checkbox-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .volunteer-checkbox-item:hover {
            background: #e9ecef;
        }

        .volunteer-checkbox-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .volunteer-checkbox-item label {
            margin: 0;
            cursor: pointer;
            font-size: 1rem;
            color: #333;
        }

        .volunteer-file-upload {
            border: 2px dashed #cbd5e0;
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .volunteer-file-upload:hover {
            border-color: #E63946;
            background: #fff5f5;
        }

        .volunteer-file-upload i {
            font-size: 3rem;
            color: #E63946;
            margin-bottom: 15px;
        }

        .volunteer-file-upload-text {
            color: #666;
            font-size: 1rem;
            margin-top: 10px;
        }

        .volunteer-file-name {
            color: #28a745;
            font-weight: 600;
            margin-top: 10px;
        }

        .volunteer-btn {
            padding: 15px 40px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .volunteer-btn-primary {
            background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
            color: white;
        }

        .volunteer-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
        }

        .volunteer-btn-secondary {
            background: #6c757d;
            color: white;
        }

        .volunteer-btn-secondary:hover {
            background: #5a6268;
        }

        .volunteer-button-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        /* Success Message */
        .volunteer-success {
            display: none;
            text-align: center;
            padding: 60px 40px;
        }

        .volunteer-success.active {
            display: block;
        }

        .volunteer-success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 3rem;
            color: white;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        .volunteer-success-title {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .volunteer-success-text {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .volunteer-id-box {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
        }

        .volunteer-id-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #E63946;
            padding: 15px;
            background: white;
            border-radius: 8px;
            display: inline-block;
            letter-spacing: 2px;
        }

        /* Testimonials Section */
        .volunteer-testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
            color: white;
        }

        .volunteer-testimonial-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255,255,255,0.2);
            height: 100%;
        }

        .volunteer-testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .volunteer-testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .volunteer-testimonial-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .volunteer-testimonial-info h5 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .volunteer-testimonial-info p {
            margin: 0;
            opacity: 0.8;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .volunteer-cta-section {
            padding: 80px 0;
            background: white;
            text-align: center;
        }

        .volunteer-cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .volunteer-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .volunteer-cta-text {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        /* Header Section */
        .memory-header {
            background: linear-gradient(135deg, #298151 0%, #2c3e50 100%);
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .memory-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
             background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.3;
        }

        .memory-header .container {
            position: relative;
            z-index: 1;
        }

        .memory-main-title {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: fadeInDown 1s ease-out;
        }

        .memory-main-subtitle {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        /* Quote Section */
        .memory-quote-section {
            padding: 80px 0;
            background: white;
        }

        .memory-quote-card {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, #298151 0%, #2c3e50 100%);
            padding: 60px 50px;
            border-radius: 20px;
            color: white;
            position: relative;
            box-shadow: 0 20px 60px rgba(41, 129, 81, 0.3);
            animation: fadeIn 1s ease-out;
        }

        .memory-quote-icon {
            font-size: 60px;
            opacity: 0.3;
            position: absolute;
            top: 30px;
            left: 30px;
        }

        .memory-quote-text {
            font-size: 24px;
            line-height: 1.8;
            font-style: italic;
            text-align: center;
            position: relative;
            z-index: 1;
            margin-bottom: 25px;
        }

        .memory-quote-author {
            font-size: 18px;
            text-align: center;
            font-weight: 600;
            opacity: 0.9;
        }

        /* Memory Cards Section */
        .memory-cards-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .memory-section-title {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 20px;
        }

        .memory-section-subtitle {
            font-size: 18px;
            color: #666;
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .memory-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .memory-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .memory-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(41, 129, 81, 0.2);
        }

        .memory-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
            position: relative;
        }

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

        .memory-card:hover .memory-image img {
            transform: scale(1.1);
        }

        .memory-date {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #298151 0%, #2c3e50 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .memory-content {
            padding: 35px;
        }

        .memory-title {
            font-size: 26px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .memory-author {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #298151;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .memory-author i {
            font-size: 20px;
        }

        .memory-text {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            text-align: justify;
        }

        .memory-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .memory-tag {
            display: inline-block;
            padding: 6px 16px;
            background: #f0f7f4;
            color: #298151;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .memory-tag:hover {
            background: #298151;
            color: white;
        }

        /* Gallery Section */
        .memory-gallery-section {
            padding: 80px 0;
            background: white;
        }

        .memory-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .memory-gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 350px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .memory-gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .memory-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .memory-gallery-item:hover img {
            transform: scale(1.15);
        }

        .memory-gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(41, 129, 81, 0.95), transparent);
            color: white;
            padding: 30px 25px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .memory-gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .memory-gallery-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .memory-gallery-caption {
            font-size: 14px;
            opacity: 0.9;
        }



/* Login */
        /* Animated Background Elements */
        .custom_login_body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            background: linear-gradient(135deg, #E63946 0%, #298151 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }
        .custom_login_body::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            top: -250px;
            right: -250px;
            animation: bnp-float-animation 20s infinite ease-in-out;
        }

        .custom_login_body::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            bottom: -200px;
            left: -200px;
            animation: bnp-float-animation 15s infinite ease-in-out reverse;
        }

        @keyframes bnp-float-animation {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -50px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }

        /* Main Container */
        .bnp-login-main-container {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            max-width: 1000px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            z-index: 1;
            animation: bnp-slide-up-animation 0.6s ease;
        }

        @keyframes bnp-slide-up-animation {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Left Side - Branding */
        .bnp-login-brand-section {
            background: linear-gradient(135deg, #E63946 0%, #ff4757 100%);
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .bnp-login-brand-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -150px;
            right: -150px;
        }

        .bnp-login-brand-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            bottom: -100px;
            left: -100px;
        }

        .bnp-brand-logo-box {
            width: 140px;
            height: 140px;
            background: white;
            border-radius: 24px;
            padding: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            animation: bnp-scale-in-animation 0.6s ease 0.2s backwards;
        }

        @keyframes bnp-scale-in-animation {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .bnp-brand-logo-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .bnp-brand-main-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
            text-align: center;
            position: relative;
            z-index: 1;
            animation: bnp-fade-in-animation 0.6s ease 0.3s backwards;
        }

        .bnp-brand-sub-title {
            font-size: 16px;
            font-weight: 400;
            text-align: center;
            opacity: 0.95;
            line-height: 1.6;
            position: relative;
            z-index: 1;
            animation: bnp-fade-in-animation 0.6s ease 0.4s backwards;
        }

        @keyframes bnp-fade-in-animation {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bnp-brand-features-list {
            margin-top: 40px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .bnp-feature-single-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            animation: bnp-slide-in-left-animation 0.6s ease backwards;
        }

        .bnp-feature-single-item:nth-child(1) { animation-delay: 0.5s; }
        .bnp-feature-single-item:nth-child(2) { animation-delay: 0.6s; }
        .bnp-feature-single-item:nth-child(3) { animation-delay: 0.7s; }

        @keyframes bnp-slide-in-left-animation {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .bnp-feature-icon-box {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .bnp-feature-text-content {
            font-size: 15px;
            font-weight: 500;
        }

        /* Right Side - Login Form */
        .bnp-login-form-section {
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .bnp-form-header-area {
            margin-bottom: 40px;
        }

        .bnp-form-main-title {
            font-size: 32px;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .bnp-form-sub-title {
            font-size: 15px;
            color: #64748b;
            font-weight: 500;
        }

        .bnp-login-form-element {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .bnp-form-input-group {
            position: relative;
        }

        .bnp-form-input-label {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .bnp-input-field-wrapper {
            position: relative;
        }

        .bnp-input-left-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .bnp-form-input-field {
            width: 100%;
            padding: 16px 20px 16px 55px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            color: #2c3e50;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .bnp-form-input-field:focus {
            outline: none;
            border-color: #E63946;
            background: white;
            box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
        }

        .bnp-form-input-field:focus ~ .bnp-input-left-icon {
            color: #E63946;
        }

        .bnp-password-visibility-toggle {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #64748b;
            cursor: pointer;
            font-size: 18px;
            padding: 5px;
            transition: all 0.3s ease;
        }

        .bnp-password-visibility-toggle:hover {
            color: #E63946;
        }

        .bnp-form-additional-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: -10px;
        }

        .bnp-remember-me-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .bnp-remember-me-wrapper input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: #E63946;
        }

        .bnp-remember-me-wrapper label {
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
            cursor: pointer;
        }

        .bnp-forgot-password-link {
            font-size: 14px;
            color: #E63946;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .bnp-forgot-password-link:hover {
            color: #298151;
        }

        .bnp-submit-login-btn {
            background: linear-gradient(135deg, #E63946 0%, #ff4757 100%);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
            position: relative;
            overflow: hidden;
        }

        .bnp-submit-login-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .bnp-submit-login-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .bnp-submit-login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
        }

        .bnp-submit-login-btn:active {
            transform: translateY(-1px);
        }

        .bnp-submit-login-btn span {
            position: relative;
            z-index: 1;
        }

        .bnp-divider-section {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 30px 0;
        }

        .bnp-divider-horizontal-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }

        .bnp-divider-text-content {
            font-size: 13px;
            color: #94a3b8;
            font-weight: 600;
        }

        .bnp-social-login-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .bnp-social-login-single-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            background: white;
            color: #2c3e50;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .bnp-social-login-single-btn:hover {
            border-color: #E63946;
            background: rgba(230, 57, 70, 0.05);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .bnp-social-login-single-btn i {
            font-size: 18px;
        }

        .bnp-social-login-single-btn.bnp-facebook-btn { border-color: #1877f2; }
        .bnp-social-login-single-btn.bnp-facebook-btn:hover {
            background: #1877f2;
            color: white;
            border-color: #1877f2;
        }

        .bnp-social-login-single-btn.bnp-google-btn { border-color: #ea4335; }
        .bnp-social-login-single-btn.bnp-google-btn:hover {
            background: #ea4335;
            color: white;
            border-color: #ea4335;
        }

        .bnp-signup-link-area {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
        }

        .bnp-signup-link-area a {
            color: #E63946;
            text-decoration: none;
            font-weight: 800;
            transition: all 0.3s ease;
        }

        .bnp-signup-link-area a:hover {
            color: #298151;
            text-decoration: underline;
        }

/* Register */
  .custom_register_body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            background: linear-gradient(135deg, #298151 0%, #E63946 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated Background Elements */
        .custom_register_body::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            top: -300px;
            left: -300px;
            animation: bnp-register-float-animation 25s infinite ease-in-out;
        }

        .custom_register_body::after {
            content: '';
            position: absolute;
            width: 450px;
            height: 450px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            bottom: -225px;
            right: -225px;
            animation: bnp-register-float-animation 18s infinite ease-in-out reverse;
        }

        @keyframes bnp-register-float-animation {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(40px, -60px) rotate(120deg);
            }
            66% {
                transform: translate(-30px, 30px) rotate(240deg);
            }
        }

        /* Main Container */
        .bnp-register-main-container {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            max-width: 1000px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            z-index: 1;
            animation: bnp-register-slide-up-animation 0.6s ease;
        }

        @keyframes bnp-register-slide-up-animation {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Left Side - Branding */
        .bnp-register-brand-section {
            background: linear-gradient(135deg, #298151 0%, #2fa160 100%);
            padding: 60px 45px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .bnp-register-brand-section::before {
            content: '';
            position: absolute;
            width: 350px;
            height: 350px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            top: -175px;
            left: -175px;
        }

        .bnp-register-brand-section::after {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            bottom: -125px;
            right: -125px;
        }

        .bnp-register-brand-logo-box {
            width: 140px;
            height: 140px;
            background: white;
            border-radius: 24px;
            padding: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            animation: bnp-register-scale-in-animation 0.6s ease 0.2s backwards;
        }

        @keyframes bnp-register-scale-in-animation {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .bnp-register-brand-logo-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .bnp-register-brand-main-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
            text-align: center;
            position: relative;
            z-index: 1;
            animation: bnp-register-fade-in-animation 0.6s ease 0.3s backwards;
        }

        .bnp-register-brand-sub-title {
            font-size: 16px;
            font-weight: 400;
            text-align: center;
            opacity: 0.95;
            line-height: 1.6;
            position: relative;
            z-index: 1;
            animation: bnp-register-fade-in-animation 0.6s ease 0.4s backwards;
            margin-bottom: 35px;
        }

        @keyframes bnp-register-fade-in-animation {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bnp-register-brand-benefits-list {
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .bnp-register-benefit-single-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 22px;
            animation: bnp-register-slide-in-left-animation 0.6s ease backwards;
        }

        .bnp-register-benefit-single-item:nth-child(1) { animation-delay: 0.5s; }
        .bnp-register-benefit-single-item:nth-child(2) { animation-delay: 0.6s; }
        .bnp-register-benefit-single-item:nth-child(3) { animation-delay: 0.7s; }
        .bnp-register-benefit-single-item:nth-child(4) { animation-delay: 0.8s; }

        @keyframes bnp-register-slide-in-left-animation {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .bnp-register-benefit-icon-box {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .bnp-register-benefit-text-content {
            flex: 1;
        }

        .bnp-register-benefit-title {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .bnp-register-benefit-description {
            font-size: 13px;
            opacity: 0.9;
            line-height: 1.5;
        }

        /* Right Side - Register Form */
        .bnp-register-form-section {
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .bnp-register-form-header-area {
            margin-bottom: 40px;
        }

        .bnp-register-form-main-title {
            font-size: 32px;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .bnp-register-form-sub-title {
            font-size: 15px;
            color: #64748b;
            font-weight: 500;
        }

        .bnp-register-form-element {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .bnp-register-form-input-group {
            position: relative;
        }

        .bnp-register-form-input-label {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .bnp-register-input-field-wrapper {
            position: relative;
        }

        .bnp-register-input-left-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            font-size: 18px;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .bnp-register-form-input-field {
            width: 100%;
            padding: 16px 20px 16px 55px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            color: #2c3e50;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .bnp-register-form-input-field:focus {
            outline: none;
            border-color: #298151;
            background: white;
            box-shadow: 0 0 0 4px rgba(41, 129, 81, 0.1);
        }

        .bnp-register-form-input-field:focus ~ .bnp-register-input-left-icon {
            color: #298151;
        }

        .bnp-register-password-visibility-toggle {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #64748b;
            cursor: pointer;
            font-size: 18px;
            padding: 5px;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .bnp-register-password-visibility-toggle:hover {
            color: #298151;
        }

        .bnp-register-submit-btn {
            background: linear-gradient(135deg, #298151 0%, #2fa160 100%);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 10px 30px rgba(41, 129, 81, 0.3);
            position: relative;
            overflow: hidden;
            margin-top: 10px;
        }

        .bnp-register-submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .bnp-register-submit-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .bnp-register-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(41, 129, 81, 0.4);
        }

        .bnp-register-submit-btn:active {
            transform: translateY(-1px);
        }

        .bnp-register-submit-btn span {
            position: relative;
            z-index: 1;
        }

        .bnp-register-login-link-area {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
        }

        .bnp-register-login-link-area a {
            color: #298151;
            text-decoration: none;
            font-weight: 800;
            transition: all 0.3s ease;
        }

        .bnp-register-login-link-area a:hover {
            color: #E63946;
            text-decoration: underline;
        }

        .bnp-register-error-message {
            color: #E63946;
            font-size: 13px;
            margin-top: 6px;
            font-weight: 600;
            list-style: none;
            padding: 0;
        }

        .bnp-register-error-message li {
            margin-bottom: 3px;
        }


 .cultural-forum-wrapper {
            font-family: 'Hind Siliguri', sans-serif;
            background: #f8f9fa;
            color: #333;
        }

        /* Header Section */
        .cultural-forum-header {
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cultural-forum-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }

        .cultural-forum-header .container {
            position: relative;
            z-index: 1;
        }

        .cultural-forum-main-title {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .cultural-forum-main-subtitle {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* About Section */
        .cultural-forum-about-section {
            padding: 80px 0;
            background: white;
        }

        .cultural-forum-section-title {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 20px;
        }

        .cultural-forum-section-subtitle {
            font-size: 18px;
            color: #666;
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cultural-forum-about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 50px;
        }

        .cultural-forum-about-image {
            flex: 1;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .cultural-forum-about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .cultural-forum-about-text {
            flex: 1;
        }

        .cultural-forum-about-text p {
            font-size: 17px;
            color: #555;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        /* Mission Vision */
        .cultural-forum-mission-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .cultural-forum-mission-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            height: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border-top: 5px solid #E63946;
        }

        .cultural-forum-mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(231, 76, 60, 0.2);
        }

        .cultural-forum-mission-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
        }

        .cultural-forum-mission-icon i {
            font-size: 36px;
            color: white;
        }

        .cultural-forum-mission-title {
            font-size: 26px;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 20px;
        }

        .cultural-forum-mission-text {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            text-align: center;
        }

        /* Activities Section */
        .cultural-forum-activities-section {
            padding: 80px 0;
            background: white;
        }

        .cultural-forum-activity-card {
            background: #f8f9fa;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s;
            border-left: 5px solid #E63946;
        }

        .cultural-forum-activity-card:hover {
            background: white;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transform: translateX(10px);
        }

        .cultural-forum-activity-header {
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .cultural-forum-activity-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cultural-forum-activity-icon i {
            font-size: 28px;
            color: white;
        }

        .cultural-forum-activity-info h3 {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .cultural-forum-activity-info p {
            font-size: 15px;
            color: #666;
            margin: 0;
            line-height: 1.6;
        }

        /* Events Section */
        .cultural-forum-events-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
        }

        .cultural-forum-event-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 35px;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
            margin-bottom: 30px;
        }

        .cultural-forum-event-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .cultural-forum-event-date {
            display: inline-block;
            background: #E63946;
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .cultural-forum-event-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cultural-forum-event-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .cultural-forum-event-meta {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .cultural-forum-event-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cultural-forum-event-meta-item i {
            color: #E63946;
        }

        /* Members Section */
        .cultural-forum-members-section {
            padding: 80px 0;
            background: white;
        }

        .cultural-forum-member-card {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 35px;
            text-align: center;
            transition: all 0.3s;
            height: 100%;
        }

        .cultural-forum-member-card:hover {
            background: white;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            transform: translateY(-10px);
        }

        .cultural-forum-member-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 5px solid #E63946;
        }

        .cultural-forum-member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cultural-forum-member-name {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .cultural-forum-member-role {
            font-size: 16px;
            color: #E63946;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .cultural-forum-member-bio {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* Gallery Section */
        .cultural-forum-gallery-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .cultural-forum-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .cultural-forum-gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .cultural-forum-gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .cultural-forum-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .cultural-forum-gallery-item:hover img {
            transform: scale(1.2);
        }

        .cultural-forum-gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(231, 76, 60, 0.95), transparent);
            color: white;
            padding: 25px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .cultural-forum-gallery-item:hover .cultural-forum-gallery-overlay {
            transform: translateY(0);
        }

        .cultural-forum-gallery-title {
            font-size: 18px;
            font-weight: 700;
        }

        /* Join Section */
        .cultural-forum-join-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #E63946 0%, #E63946 100%);
            color: white;
            text-align: center;
        }

        .cultural-forum-join-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cultural-forum-join-text {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cultural-forum-join-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 45px;
            background: white;
            color: #E63946;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cultural-forum-join-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            color: #E63946;
        }
        /* ================================
   ULTRA PREMIUM GORGEOUS DESIGN
   ================================ */

.reforms31-main-container {
    font-family: 'Noto Sans Bengali', sans-serif;
    background:linear-gradient(135deg, #298151 0%, #E63946  100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow-x: hidden;
}

/* Floating Gradient Orbs */
.reforms31-main-container::before,
.reforms31-main-container::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.28), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: orbFloat 12s infinite ease-in-out alternate;
}

.reforms31-main-container::after {
    top: 60%;
    left: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.28), transparent 70%);
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, 40px) scale(1.2); }
}


/* HEADER CARD – Glass + Premium Shadow */
.reforms31-header-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    background: rgba(255, 255, 255, 0.06);
    padding: 80px 60px;
    border-radius: 35px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.45),
        0 0 60px rgba(59,130,246,0.12) inset,
        0 0 40px rgba(34,197,94,0.15) inset;
    position: relative;
    overflow: hidden;
    text-align:center;
}

/* Neon Border Line Top */
.reforms31-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
background: linear-gradient(90deg,
                transparent 0%,
                #10b981 20%,
                #E63946 50%,
                #298151 80%,
                transparent 100%);
    box-shadow: 0 0 20px #10b981;
            animation: reforms31-dofa-shine 15s ease-in-out infinite;
}


@keyframes reforms31-dofa-shine {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

/* BADGE */
.reforms31-highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef08a, #facc15);
    padding: 12px 30px;
    border-radius: 40px;
    color: #854d0e;
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(250,204,21,0.35);
}


/* TITLE */
.reforms31-main-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-top: 20px;
    color: white;
    background: linear-gradient(90deg, #34d399, #10b981, #4ade80);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 40px rgba(16, 185, 129, 0.3);
}


/* SUBTITLE */
.reforms31-subtitle {
    font-size: 1.4rem;
    color:white;
    margin-top: 15px;
    opacity: 0.9;
}


/* GRID */
.reforms31-points-grid {
    max-width: 1365px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
    padding: 20px;
}


/* CARD */
.reforms31-point-card {
    background: rgba(255,255,255,0.07);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.09);
    backdrop-filter: blur(14px);
    color: #e2e8f0;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.45),
        0 0 20px rgba(59,130,246,0.15) inset;
}

/* Hover Glow */
.reforms31-point-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.6),
        0 0 50px rgba(34,197,94,0.25) inset;
    border-color: rgba(34,197,94,0.4);
}

/* Card Floating Glow Circle */
.reforms31-point-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 75%);
    top: -60px;
    right: -60px;
    border-radius: 50%;
    transition: 0.4s;
    filter: blur(20px);
}

.reforms31-point-card:hover::before {
    top: -20px;
    right: -20px;
    opacity: 1;
}


/* NUMBER */
.reforms31-point-number {
    font-size: 2.3rem;
    font-weight: 900;
    color: #4ade80;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(74,222,128,0.45);
}


/* CONTENT */
.reforms31-point-content {
    font-size: 1.2rem;
    line-height: 1.8;
}


/* FOOTER */
.reforms31-footer-text {
    margin-top: 60px;
    color: #94a3b8;
    font-size: 1.35rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255,255,255,0.15);
}


/* SCROLL BUTTON */
.reforms31-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.reforms31-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.reforms31-scroll-top:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(16,185,129,0.6);
}
/* Footer */
.reforms31-footer-section {
    text-align: center;
    margin-top: 60px;
}

.reforms31-footer-text {
    color: #e2e8f0;
    font-size: 1.3rem;
    font-weight: 600;
}
 /* alokito Rajbari */
   .alokito-rajbari-body {
            font-family: 'Kalpurush', 'Noto Sans Bengali', Arial, sans-serif;
            background: linear-gradient(135deg, #298151 0%, #1a5a38 50%, #E63946 100%);
            background-size: 400% 400%;
            animation: alokito-gradient-shift 15s ease infinite;
            min-height: 100vh;
            padding: 20px;
        }

        .alokito-rajbari-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .alokito-rajbari-header {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            text-align: center;
            margin-bottom: 30px;
            animation: alokito-fadeInDown 0.8s ease;
            border: 3px solid #298151;
        }

        .alokito-rajbari-title {
            font-size: 3em;
            background: linear-gradient(135deg, #298151 0%, #E63946 100%);
            -webkit-background-clip: text;
            background-clip: text;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            animation: alokito-title-pulse 2s ease-in-out infinite;
        }

        .alokito-rajbari-subtitle {
            font-size: 1.3em;
            color: #555;
            font-style: italic;
        }

        .alokito-rajbari-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .alokito-rajbari-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            animation: alokito-fadeInUp 0.8s ease;
            border-left: 5px solid #298151;
            position: relative;
            overflow: hidden;
        }

        .alokito-rajbari-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(41, 129, 81, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .alokito-rajbari-card:hover::before {
            left: 100%;
        }

        .alokito-rajbari-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 50px rgba(230, 57, 70, 0.3);
            border-left-color: #E63946;
        }

        .alokito-rajbari-card-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
            animation: alokito-icon-bounce 2s ease-in-out infinite;
        }

        .alokito-rajbari-card-heading {
            color: #298151;
            font-size: 1.8em;
            margin-bottom: 15px;
            border-bottom: 3px solid #E63946;
            padding-bottom: 10px;
            transition: color 0.3s ease;
        }

        .alokito-rajbari-card:hover .alokito-rajbari-card-heading {
            color: #E63946;
        }

        .alokito-rajbari-card-text {
            color: #444;
            line-height: 1.8;
            font-size: 1.1em;
        }

        .alokito-rajbari-card-list {
            list-style: none;
            padding-left: 0;
        }

        .alokito-rajbari-card-list-item {
            padding: 10px 0;
            color: #555;
            font-size: 1.05em;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .alokito-rajbari-card-list-item:hover {
            color: #298151;
            padding-left: 10px;
            border-left: 3px solid #E63946;
        }

        .alokito-rajbari-card-list-item:before {
            content: "✦ ";
            color: #298151;
            font-weight: bold;
            margin-right: 10px;
            transition: color 0.3s ease;
        }

        .alokito-rajbari-card-list-item:hover:before {
            color: #E63946;
        }

        .alokito-rajbari-highlight-section {
            background: linear-gradient(135deg, rgba(41, 129, 81, 0.95) 0%, rgba(230, 57, 70, 0.95) 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            animation: alokito-fadeIn 1s ease;
            position: relative;
            overflow: hidden;
        }

        .alokito-rajbari-highlight-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -150px;
            right: -150px;
            animation: alokito-bubble-float 6s ease-in-out infinite;
        }

        .alokito-rajbari-highlight-heading {
            font-size: 2.5em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: alokito-heading-glow 2s ease-in-out infinite;
        }

        .alokito-rajbari-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }

        .alokito-rajbari-stat-box {
            background: rgba(255, 255, 255, 0.2);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            animation: alokito-stat-appear 0.6s ease forwards;
            opacity: 0;
        }

        .alokito-rajbari-stat-box:nth-child(1) { animation-delay: 0.2s; }
        .alokito-rajbari-stat-box:nth-child(2) { animation-delay: 0.4s; }
        .alokito-rajbari-stat-box:nth-child(3) { animation-delay: 0.6s; }
        .alokito-rajbari-stat-box:nth-child(4) { animation-delay: 0.8s; }

        .alokito-rajbari-stat-box:hover {
            transform: scale(1.1) rotate(2deg);
            background: rgba(255, 255, 255, 0.3);
            border-color: white;
        }

        .alokito-rajbari-stat-number {
            font-size: 2.5em;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }

        .alokito-rajbari-stat-label {
            font-size: 1.1em;
            opacity: 0.9;
        }

        .alokito-rajbari-footer {
            background: rgba(255, 255, 255, 0.95);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            animation: alokito-fadeInUp 1s ease;
            border-top: 4px solid #298151;
        }

        .alokito-rajbari-footer-text {
            color: #555;
            font-size: 1.1em;
        }

        @keyframes alokito-gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes alokito-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes alokito-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes alokito-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes alokito-title-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        @keyframes alokito-icon-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes alokito-heading-glow {
            0%, 100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
            50% { text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.8); }
        }

        @keyframes alokito-bubble-float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-50px, 50px); }
        }

        @keyframes alokito-stat-appear {
            from {
                opacity: 0;
                transform: scale(0.5) rotate(-10deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }


   /* MAIN CONTAINER */
.rbm-main-container {
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 3rem;
}

/* CARD WRAPPER */
.rbm-unified-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    margin-bottom: 5rem;
    padding-bottom: 30px;
}

/* HEADER BANNER */
.rbm-header-banner {
    background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
    color: white;
    padding: 10px;
    text-align: center;
}

.rbm-header-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.rbm-header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.rbm-header-tagline {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.85;
}

/* FLEX LAYOUT – Equal height */
.rbm-content-flex {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 2094px;
}

/* SIDEBAR */
.rbm-nav-sidebar {
    width: 320px;
    background: #f8f9fa;
    border-right: 2px solid #e0e0e0;
    height: 2094px;
    overflow: visible;
    flex-shrink: 0;
    padding-bottom: 30px;
}
.rbm-nav-sidebar::-webkit-scrollbar {
    width: 8px;
}

.rbm-nav-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.rbm-nav-sidebar::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

.rbm-nav-sidebar::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

/* SIDEBAR HEADER */
.rbm-nav-header {
    background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
    color: white;
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.rbm-nav-header-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.rbm-nav-header-desc {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0rem !important;
}

/* SIDEBAR LIST */
.rbm-nav-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.rbm-nav-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rbm-nav-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

.rbm-nav-link-main {
    font-weight: 600;
    padding-left: 20px;
    background: #e9ecef;
    margin-top: 5px;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.rbm-nav-link-sub {
    padding-left: 45px;
    font-size: 0.85rem;
    color: #555;
    background: #ffffff;
}

.rbm-nav-link:hover {
    background: #e8f4f8;
    border-left-color: #667eea;
    color: #667eea;
}

/* ACTIVE LINK SCROLL LISTENER */
.rbm-nav-link-active {
    background: linear-gradient(135deg, #298151 0%, #1a5a38 50%, #E63946 100%) !important;
    border-left-color: #E63946 !important;
    color: white !important;
    font-weight: 600;
}

/* CONTENT AREA */

.rbm-content-area {
    flex: 1;
    padding: 30px;
    max-height: 2094px;
    overflow-y: auto;
}
/*.rbm-tab-pane { display: none; } */
.rbm-tab-pane-active {
    display: block;
}

/* SECTION HEADER */
.rbm-section-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 4px solid #667eea;
    text-align: center;
}
.rbm-section-header .rbm-section-header-img {
    height: 250px;
    width: 50%;
    border-radius: 15px;
    text-align: center;
}

.rbm-section-title {
    color: #1e3c72;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.rbm-section-institution {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.rbm-section-desc {
    text-align: center;
    color: #555;
    line-height: 1.6;
}

/* IMAGE */
.rbm-image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.rbm-image-wrapper img {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
}
.rbm-image-flyover-wrapper img {
    border-radius: 15px 15px 0px  0px;
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
}
.rbm-image-caption {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

/* INFO CARD */
.rbm-info-card {
    background: #f8f9fa;
    border-left: 5px solid #667eea;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.rbm-info-card-1 {
    background: #f8f9fa;
    border: 5px solid transparent;
    border-image: linear-gradient(135deg, #667eea, #1a5a38, #667eea) 1;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px 10px 0px 0px;
    transition: all 0.3s ease;
}

.rbm-info-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.rbm-card-title {
    color: #2a5298;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.rbm-card-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* HIGHLIGHT BOX */
.rbm-highlight-box {
    background: linear-gradient(135deg, #298151 0%, #1a5a38 50%, #E63946 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.rbm-highlight-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.rbm-highlight-text {
    line-height: 1.6;
}

/* SECTION NUMBER ICON */
.rbm-number-badge {
    display: inline-block;
    background: #667eea;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    font-weight: bold;
    margin-right: 10px;
}

    .manifesto-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .manifesto-grid-item {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .manifesto-grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .manifesto-grid-item h4 {
            color: #1e3c72;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
 .manifesto-grid-item {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .manifesto-grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .manifesto-grid-item h4 {
            color: #1e3c72;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .rbm-tab-pane .farakka_p{
            text-align: center;
            font-size: 18px;
            margin-bottom: 5rem;
        }


.quote-box {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.8;
    background: #f8f9ff;
    padding: 20px 25px;
    border-left: 5px solid #667eea;
    border-radius: 8px;
    color: #333;
    margin-bottom: 5rem;
}
.rbm-info-box-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #EAF6FB;
    border-radius: 20px;
    border: 1px solid #C4E3F0;
    margin: 3rem 0rem 3rem 0rem;
}

.rbm-info-box {
    flex: 1;
    text-align: center;
    padding: 25px 30px;
    border-right: 1px solid #C5E7F5;
}

.rbm-info-box:last-child {
    border-right: none;
}

/* Titles */
.rbm-info-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1C3C58;
}

/* Paragraph */
.rbm-info-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Icons */
.rbm-icon i {
    font-size: 38px;
    color: #1C3C58;
    opacity: 0.85;
    margin-bottom: 12px;
}

.align-middle{
    text-align: center;
}
.rbm-section-shape{
    padding: 50px;
    border-radius: 15px;
    background: skyblue;
}
 .home-dofa-section {
            font-family: 'Noto Sans Bengali', sans-serif;
            background: linear-gradient(135deg, #E63946 0%, #298151 100%);
            padding: 70px 0;
            position: relative;
            overflow: hidden;
        }

        .home-dofa-section::before {
          content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: auto;
  background-size: cover;
            animation: home-dofa-pulse 15s ease-in-out infinite;
        }

        @keyframes home-dofa-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .home-dofa-section::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            animation: home-dofa-rotate 30s linear infinite;
        }

        @keyframes home-dofa-rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .home-dofa-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
            position: relative;
            z-index: 1;
        }

        .home-dofa-content-wrapper {
            border-radius: 28px;
            padding: 30px 10rem;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .home-dofa-content-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                rgba(16, 185, 129, 0.05) 0%,
                rgba(59, 130, 246, 0.05) 50%,
                rgba(139, 92, 246, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .home-dofa-content-wrapper:hover::before {
            opacity: 1;
        }

        .home-dofa-top-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg,
                transparent 0%,
                #10b981 20%,
                #E63946 50%,
                #298151 80%,
                transparent 100%);
            background-size: 200% 100%;
            animation: home-dofa-shine 15s ease-in-out infinite;
        }

        @keyframes home-dofa-shine {
            0%, 100% { background-position: 200% 0; }
            50% { background-position: -200% 0; }
        }

        .home-dofa-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .home-dofa-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(16, 185, 129, 0.6);
            border-radius: 50%;
            animation: home-dofa-particle-float 5s ease-in-out infinite;
        }

        .home-dofa-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .home-dofa-particle:nth-child(2) { left: 30%; animation-delay: 2s; background:green; }
        .home-dofa-particle:nth-child(3) { left: 50%; animation-delay: 4s; background:greenyellow; }
        .home-dofa-particle:nth-child(4) { left: 70%; animation-delay: 6s; }
        .home-dofa-particle:nth-child(5) { left: 90%; animation-delay: 8s; background:red; }

        @keyframes home-dofa-particle-float {
            0%, 100% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: translateY(90vh) scale(1);
            }
            90% {
                opacity: 1;
                transform: translateY(10vh) scale(1);
            }
            100% {
                transform: translateY(0) scale(0);
                opacity: 0;
            }
        }

        .home-dofa-badge {
            display: inline-block;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 22px;
            box-shadow:
                0 4px 20px rgba(16, 185, 129, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            letter-spacing: 0.5px;
            position: relative;
            z-index: 2;
            animation: home-dofa-badge-glow 2s ease-in-out infinite;
        }

        @keyframes home-dofa-badge-glow {
            0%, 100% { box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
            50% { box-shadow: 0 4px 30px rgba(16, 185, 129, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
        }

        .home-dofa-main-title {
            font-size: 3.2rem;
            font-weight: 900;
            color: white;
            margin-bottom: 25px;
            line-height: 1.2;
            position: relative;
            z-index: 2;
            text-shadow:
                0 2px 10px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(16, 185, 129, 0.3);
            letter-spacing: -0.5px;
        }


        .home-dofa-description {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
            line-height: 1.7;
            max-width: 750px;
            margin: 0 auto 35px;
            position: relative;
            z-index: 2;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .home-dofa-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .home-dofa-stat-box {
            background: linear-gradient(135deg, #10b981, #059669, rgba(16, 185, 129, 0.15));
            padding: 28px 20px;
            border-radius: 18px;
            border: 1px solid rgba(16, 185, 129, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .home-dofa-stat-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                transparent 30%,
                rgba(16, 185, 129, 0.1) 50%,
                transparent 70%);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .home-dofa-stat-box:hover {
            transform: translateY(-8px) scale(1.05);
            border-color: rgba(16, 185, 129, 0.6);
            background: linear-gradient(135deg,
                rgba(16, 185, 129, 0.25),
                rgba(16, 185, 129, 0.15));
            box-shadow:
                0 15px 40px rgba(16, 185, 129, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .home-dofa-stat-box:hover::before {
            left: 100%;
            top: 100%;
        }

        .home-dofa-stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: #fff;
            background-clip: text;
            margin-bottom: 8px;
            display: block;
              text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .home-dofa-stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .home-dofa-button-wrapper {
            position: relative;
            z-index: 2;
        }

        .home-dofa-btn-primary {
            display: inline-block;
            background: linear-gradient(135deg, #10b981, #059669, #047857);
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            padding: 18px 45px;
            border-radius: 60px;
            text-decoration: none;
            box-shadow:
                0 10px 40px rgba(16, 185, 129, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 0 0 rgba(16, 185, 129, 0.5);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            animation: home-dofa-button-pulse 3s ease-in-out infinite;
        }

        @keyframes home-dofa-button-pulse {
            0%, 100% {
                box-shadow:
                    0 10px 40px rgba(16, 185, 129, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3),
                    0 0 0 0 rgba(16, 185, 129, 0.5);
            }
            50% {
                box-shadow:
                    0 10px 40px rgba(16, 185, 129, 0.8),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3),
                    0 0 0 15px rgba(16, 185, 129, 0);
            }
        }

        .home-dofa-btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .home-dofa-btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow:
                0 15px 60px rgba(16, 185, 129, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 0 0 0 rgba(16, 185, 129, 0);
            color: white;
        }

        .home-dofa-btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .home-dofa-btn-text {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: center;
        }

        .home-dofa-btn-arrow {
            display: inline-block;
            transition: transform 0.3s ease;
            font-size: 1.3rem;
        }

        .home-dofa-btn-primary:hover .home-dofa-btn-arrow {
            transform: translateX(8px);
        }

 /* রাজবাড়ী উন্নয়ন হোম সেকশন - Enhanced Version */
        .home-rajbari-section {
            font-family: 'Noto Sans Bengali', sans-serif;
            background: #0a0e27;
            padding: 70px 0;
            position: relative;
            overflow: hidden;
        }

        .home-rajbari-mesh-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
            filter: blur(50px);
            animation: home-rajbari-mesh-move 20s ease-in-out infinite;
        }

        @keyframes home-rajbari-mesh-move {
            0%, 100% { transform: scale(1) translate(0, 0); }
            33% { transform: scale(1.1) translate(20px, -20px); }
            66% { transform: scale(0.95) translate(-20px, 20px); }
        }

        .home-rajbari-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: home-rajbari-grid-scroll 20s linear infinite;
        }

        @keyframes home-rajbari-grid-scroll {
            from { transform: translate(0, 0); }
            to { transform: translate(50px, 50px); }
        }

        .home-rajbari-container {
            max-width: 1355px;
            margin: 0 auto;
            padding: 0 25px;
            position: relative;
            z-index: 1;
        }

        .home-rajbari-content-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .home-rajbari-left-content {
            position: relative;
            z-index: 2;
        }

        .home-rajbari-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
            border: 1px solid rgba(249, 115, 22, 0.4);
            color: #fbbf24;
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
            box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
            animation: home-rajbari-badge-pulse 2s ease-in-out infinite;
        }

        @keyframes home-rajbari-badge-pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }
            50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(249, 115, 22, 0.5); }
        }

        .home-rajbari-main-title {
            font-size: 3.8rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            position: relative;
        }

        .home-rajbari-title-line-1 {
            display: block;
            color: white;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        }

        .home-rajbari-title-line-2 {
            display: block;
            background: linear-gradient(135deg, #f97316, #ef4444, #fbbf24, #f97316);
            background-size: 300% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: home-rajbari-gradient-flow 6s ease infinite;
            filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.5));
        }

        @keyframes home-rajbari-gradient-flow {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }

        .home-rajbari-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 35px;
            font-weight: 400;
        }

        .home-rajbari-stats-row {
            display: flex;
            gap: 30px;
            margin-bottom: 35px;
        }

        .home-rajbari-stat-item {
            flex: 1;
        }

        .home-rajbari-stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f97316, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1;
            margin-bottom: 8px;
        }

        .home-rajbari-stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
        }

        .home-rajbari-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
            font-size: 1.15rem;
            font-weight: 700;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow:
                0 10px 40px rgba(249, 115, 22, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .home-rajbari-btn-primary::before {
            content: '';
            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;
        }

        .home-rajbari-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(249, 115, 22, 0.7);
            color: white;
        }

        .home-rajbari-btn-primary:hover::before {
            left: 100%;
        }

        .home-rajbari-btn-arrow {
            transition: transform 0.3s ease;
        }

        .home-rajbari-btn-primary:hover .home-rajbari-btn-arrow {
            transform: translateX(5px);
        }

        .home-rajbari-right-content {
            position: relative;
            z-index: 2;
        }

        .home-rajbari-features-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .home-rajbari-feature-card {
            background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.08),
                rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(249, 115, 22, 0.2);
            border-radius: 20px;
            padding: 25px 30px;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .home-rajbari-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #f97316, #ef4444);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .home-rajbari-feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1));
            transition: width 0.4s ease;
        }

        .home-rajbari-feature-card:hover {
            transform: translateX(10px);
            border-color: rgba(249, 115, 22, 0.5);
            background: linear-gradient(135deg,
                rgba(249, 115, 22, 0.15),
                rgba(239, 68, 68, 0.1));
            box-shadow:
                0 10px 30px rgba(249, 115, 22, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .home-rajbari-feature-card:hover::before {
            opacity: 1;
        }

        .home-rajbari-feature-card:hover::after {
            width: 100%;
        }

        .home-rajbari-feature-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
        }

        .home-rajbari-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
            border: 1px solid rgba(249, 115, 22, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .home-rajbari-feature-card:hover .home-rajbari-feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.4), rgba(239, 68, 68, 0.4));
            box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
        }

        .home-rajbari-feature-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }

        .home-rajbari-feature-text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            padding-left: 65px;
        }

        .home-rajbari-decorative-circles {
            position: absolute;
            top: 50%;
            right: -100px;
            transform: translateY(-50%);
            width: 400px;
            height: 400px;
            pointer-events: none;
        }

        .home-rajbari-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(249, 115, 22, 0.2);
        }

        .home-rajbari-circle-1 {
            width: 100%;
            height: 100%;
            animation: home-rajbari-circle-rotate-1 20s linear infinite;
        }

        .home-rajbari-circle-2 {
            width: 70%;
            height: 70%;
            top: 15%;
            left: 15%;
            border-color: rgba(239, 68, 68, 0.2);
            animation: home-rajbari-circle-rotate-2 15s linear infinite reverse;
        }

        .home-rajbari-circle-3 {
            width: 40%;
            height: 40%;
            top: 30%;
            left: 30%;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent);
            border: none;
            animation: home-rajbari-circle-pulse 3s ease-in-out infinite;
        }

        @keyframes home-rajbari-circle-rotate-1 {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes home-rajbari-circle-rotate-2 {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes home-rajbari-circle-pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        /* Responsive Design */




/* Slider Section */

        .slider-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 0;
            position: relative;
        }

        .slider-header {
            text-align: center;
            margin-top: 3rem;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .slider-header h2 {
            font-size: 42px;
            font-weight: 900;
            color: #1a1a2e;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #E63946 0%, #d62839 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slider-header p {
            font-size: 18px;
            color: white;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Slider Container */
        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 3rem;;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            background: #298151;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

        /* Slider Wrapper */
        .slider-wrapper {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        /* Slide Item */
        .slide-item {
            min-width: 100%;
            position: relative;
            overflow: hidden;
        }

        .slide-item img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .slide-item:hover img {
            transform: scale(1.05);
        }

        /* Slide Overlay Content */
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 60px 40px;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.7) 50%,
                transparent 100%
            );
            color: white;
            transform: translateY(20px);
            opacity: 0;
            animation: slideContentUp 0.8s ease 0.5s forwards;
        }

        .slide-content h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide-content p {
            font-size: 16px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .slide-content .btn-view {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #E63946 0%, #d62839 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
        }

        .slide-content .btn-view:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
        }

        /* Navigation Arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .slider-nav.prev {
            left: 20px;
        }

        .slider-nav.next {
            right: 20px;
        }

        .slider-nav button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.95);
            color: #E63946;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-nav button:hover {
            background: #E63946;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
        }

        .slider-nav button:active {
            transform: scale(0.95);
        }

        /* Dots Pagination */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .slider-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .slider-dots .dot.active {
            background: #E63946;
            width: 40px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(230, 57, 70, 0.8);
        }

        .slider-dots .dot:hover {
            background: rgba(230, 57, 70, 0.8);
            transform: scale(1.2);
        }

        /* Slide Counter */
        .slide-counter {
            position: absolute;
            top: 30px;
            right: 30px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideContentUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .fixed-background {
           position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -1;
            transform: translateZ(0);
            will-change: transform;
            backface-visibility: hidden;
        }

        /* Optional overlay for better text readability */
        .fixed-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }



@media (max-width: 1600px) {
  /* .hero-main-content {
    padding-left: 150px;
  } */
    .candidate-img {
    height: 323px;
    right: 60px;
    }
}
@media (max-width: 1400px) {
            /* .hero-main-content {
                padding-left: 150px;
            } */
        .flag-eagle-decoration{
            top: 48%;
        } 
            .candidate-img {
                height: 550px;
                right: 20%;
            }

            .party-img {
              height: 175px;
            margin-bottom: 33rem;
            }
            .campaign-btn{
                gap: 10px;
                font-size: 12px;
                padding: 10px 10px;
            }
            .description-text{
                margin-bottom: 10px;
            }
            .nav-content{
                height: 35px;
            }
            .menu-toggle{
                width: 35px;
                height: 35px;
            }
            .menu-icon .dot-row,.menu-icon{
                gap: 3px;
            }
            .menu-toggle:hover .menu-icon {
            transform: scale(1) rotate(180deg);
            }
              .logo-wrapper {
                padding: 7px 7px;
                margin-top: 18px;
            }
             .logo-wrapper img {
                height: 35px;
            }
            .seamless-scroll .text-item{
                font-size: 14px;
            }
            .top-bar-right,.social-links{
                gap: 8px;
            }
            .category-label{
                margin-top: 20px;
                margin-bottom: 0px;
            }
 .hero-image-wrapper
        {
            width: 100%;
        }
        .candidate-img{
            right: 17%;
        }
        .triangle.blue {
        right: 20%;
        }
        .triangle.red {
        right: 10%;
        }
        .triangle.gray {
        right: 0%;
        }
         /* .hero-main-content {
    padding-left: 150px;
  } */
    .candidate-img {
    height: 620px;
    }
}
@media (max-width: 1024px) {
    .hexagon {
        width: 14rem !important;
        height: 14rem !important;
    }
    .hexagon.gray {
        right: 3rem;
        transform: scale(1.1);
         filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2rem rgba(80, 80, 80, 0.6))
        drop-shadow(2rem 2rem 3rem rgba(60, 60, 60, 0.5))
        drop-shadow(3rem 3rem 4rem rgba(40, 40, 40, 0.4))
        drop-shadow(4rem 4rem 5rem rgba(20, 20, 20, 0.3)) !important;
    }
    .hexagon.red {
        right: 16rem;
        filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2rem rgba(180, 0, 0, 0.7))
        drop-shadow(2rem 2rem 3rem rgba(140, 0, 0, 0.6))
        drop-shadow(3rem 3rem 4.5rem rgba(100, 0, 0, 0.5))
        drop-shadow(4.5rem 4.5rem 6rem rgba(60, 0, 0, 0.4)) !important;
    }
    .hexagon.blue {
        right: 9.5rem;
        bottom: 11rem;
        transform: scale(1.15);
        filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2.5rem rgba(0, 80, 200, 0.8))
        drop-shadow(2rem 2rem 4rem rgba(0, 60, 160, 0.7))
        drop-shadow(3.5rem 3.5rem 5.5rem rgba(0, 40, 120, 0.6))
        drop-shadow(5rem 5rem 7rem rgba(0, 20, 80, 0.5)) !important;
    }
}
@media (max-width: 992px) {
            .rbm-nav-sidebar {
                width: 280px;
            }
            .main-menu {
                display: none;
            }

            .menu-toggle {
                display: block;
            }
             .main-menu {
                display: none;
            }

            .hero-main-content {
                padding-left: 100px;
                max-width: 60%;
            }

            .main-heading {
                font-size: 41px;
            }

            .candidate-img {
                height: 450px;
            }

            .flag-eagle-decoration {
                width: 220px;
                left: -80px;
            }
}
@media (max-width: 968px) {
            .home-rajbari-content-split {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .home-rajbari-main-title {
                font-size: 2.5rem;
            }

            .home-rajbari-stats-row {
                flex-wrap: wrap;
            }

            .home-rajbari-decorative-circles {
                display: none;
            }

            .home-rajbari-feature-card:hover {
                transform: translateX(5px);
            }
}
@media (max-width: 768px) {
     .top-bar-content {
                flex-direction: column;
                gap: 3px;
                height: auto;
            }

            .logo-wrapper {
                margin-left: 0;
            }

            .menu-toggle {
                margin-right: 0;
            }

            .hero-main-content {
                /* padding-left: 20px; */ 
                max-width: 100%;
                margin-top: -5rem !important;
        padding-left: 0rem;
            }
            .description-text { 
                color: #eeeb18;   
                font-size: 15px; 
                width: 44%;
                margin-top: 25px;
                margin-bottom: 10px;
                }
                 
            .main-heading {
                font-size: 29px;
            }

           .candidate-img {
      height: 340px;
        right: -7rem;
    }

            .flag-eagle-decoration {
                width: 150px;
                left: -12px;
            }

            .triangle {
                width: 260px;
                height: 260px;
            }
              .enhanced-news-section {
                padding: 50px 15px;
            }

            .enhanced-section-title {
                font-size: 2.2rem;
            }

            /* .enhanced-section-subtitle::before,
            .enhanced-section-subtitle::after {
                display: none;
            } */

            .enhanced-news-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .enhanced-news-image-container {
                height: 220px;
            }

            .enhanced-news-content {
                padding: 20px;
            }

            .enhanced-news-title {
                font-size: 1.2rem;
            }
             .page-title {
                font-size: 36px;
            }

            .blog-meta {
                gap: 15px;
            }

            .short-description {
                font-size: 18px;
                padding: 20px;
            }

            .long-description {
                font-size: 16px;
            }

            .sidebar {
                margin-top: 50px;
            }
             .footer-section h5::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-section {
                text-align: center;
                margin-top: 1rem;
                margin-bottom: 30px;
            }
            .campaign-card{
                margin-bottom: 1rem;
            }
            .footer-links a:hover {
                padding-left: 0;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
             .page-title {
                font-size: 36px;
            }

            .contact-form-wrapper {
                padding: 30px 20px;
            }

            .form-title {
                font-size: 26px;
            }

            .map-container {
                height: 350px;
            }

            .contact-info-section {
                margin-top: 30px;
            }
              .page-title {
                font-size: 36px;
            }

            .blog-content {
                padding: 60px 0;
            }

            .sidebar {
                margin-top: 50px;
            }

            .blog-card {
                margin-bottom: 30px;
            }
            .news-hero h1 { font-size: 2.2rem;
            }
            .page-title {
                font-size: 36px;
            }

            .gallery-item img {
                height: 250px;
            }

            .filter-tabs {
                gap: 10px;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 13px;
            }

            .lightbox-nav {
                display: none;
            }

            .lightbox-close {
                top: 10px;
                right: 10px;
            }

            .lightbox-info {
                bottom: 10px;
                background: rgba(0, 0, 0, 0.7);
                padding: 15px;
                border-radius: 8px;
            }
             .writings-page-title {
                font-size: 38px;
            }

            .writings-item-header,
            .writings-item-body {
                padding: 25px 20px;
            }

            .writings-item-title {
                font-size: 24px;
            }

            .writings-page-sidebar {
                margin-top: 50px;
            }
              .writing-detail-page-title {
                font-size: 36px;
            }

            .writing-detail-short-desc {
                font-size: 18px;
                padding: 20px;
            }

            .writing-detail-long-desc {
                font-size: 16px;
            }

            .writing-detail-sidebar {
                margin-top: 50px;
            }

            .writing-detail-author-box {
                flex-direction: column;
                text-align: center;
            }

            .writing-detail-author-social {
                justify-content: center;
            }
            .rajbari-dev-main-title {
                font-size: 38px;
            }

            .rajbari-dev-timeline::before {
                left: 30px;
            }

            .rajbari-dev-timeline-item:nth-child(odd) .rajbari-dev-timeline-content,
            .rajbari-dev-timeline-item:nth-child(even) .rajbari-dev-timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px;
                margin-right: 0;
                text-align: left;
            }

            .rajbari-dev-timeline-dot {
                left: 30px;
            }

            .rajbari-dev-section-title {
                font-size: 32px;
            }

            .rajbari-dev-vision-title {
                font-size: 32px;
            }
            .youth-dev-page-title {
                font-size: 38px;
            }

            .youth-dev-section-title {
                font-size: 32px;
            }

            .youth-dev-cta-title {
                font-size: 32px;
            }

            .youth-dev-cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }
             .youth-reg-title {
                font-size: 32px;
            }

            .youth-reg-form-container {
                padding: 30px 20px;
                margin-top: -50px;
            }

            .youth-reg-step-label {
                font-size: 12px;
            }

            .youth-reg-button-group {
                flex-direction: column;
            }
             .complaint-title {
                font-size: 2rem;
            }

            .complaint-subtitle {
                font-size: 1rem;
            }

            .complaint-form-container {
                padding: 30px 20px;
            }

            .complaint-button-group {
                flex-direction: column;
            }

            .complaint-btn {
                width: 100%;
                justify-content: center;
            }

            .complaint-type-options {
                grid-template-columns: 1fr;
            }
             .rajbari-title {
                font-size: 2rem;
            }

            .rajbari-subtitle {
                font-size: 1rem;
            }

            .rajbari-intro-card {
                padding: 30px 20px;
            }

            .rajbari-intro-text {
                font-size: 1rem;
            }

            .rajbari-stats-number {
                font-size: 2rem;
            }

            .rajbari-development-text {
                padding-left: 0;
            }
            .rajbari-section-title{
                font-size: 32px;
            }
            .rajbari-idea-text{
                font-size: .8rem;
            }
            .rajbari-idea-title{
                font-size: 1.5rem;
            }
            .rajbari-ideas-section{
            padding: 30px 0;
            }
            .rajbari-quote-text {
                font-size: 1.3rem;
            }
             .volunteer-title {
                font-size: 2rem;
            }

            .volunteer-subtitle {
                font-size: 1rem;
            }

            .volunteer-form-container {
                padding: 30px 20px;
            }

            .volunteer-button-group {
                flex-direction: column;
            }

            .volunteer-btn {
                width: 100%;
                justify-content: center;
            }

            .volunteer-activity-item {
                flex-direction: column;
                text-align: center;
            }
            .memory-main-title {
                font-size: 38px;
            }

            .memory-main-subtitle {
                font-size: 18px;
            }

            .memory-quote-card {
                padding: 40px 30px;
            }

            .memory-quote-text {
                font-size: 18px;
            }

            .section-title {
                font-size: 32px;
            }

            .memory-content {
                padding: 25px;
            }

            .memory-title {
                font-size: 22px;
            }

            .memory-gallery-grid {
                grid-template-columns: 1fr;
            }
             .bnp-login-main-container {
                grid-template-columns: 1fr;
            }

            .bnp-login-brand-section {
                padding: 40px 30px;
            }

            .bnp-brand-features-list {
                display: none;
            }

            .bnp-login-form-section {
                padding: 40px 30px;
            }

            .bnp-form-main-title {
                font-size: 26px;
            }

            .bnp-brand-main-title {
                font-size: 26px;
            }

            .bnp-social-login-buttons {
                grid-template-columns: 1fr;
            }
             .bnp-register-main-container {
                grid-template-columns: 1fr;
            }

            .bnp-register-brand-section {
                padding: 40px 30px;
            }

            .bnp-register-brand-benefits-list {
                display: none;
            }

            .bnp-register-form-section {
                padding: 40px 30px;
            }

            .bnp-register-form-main-title {
                font-size: 26px;
            }

            .bnp-register-brand-main-title {
                font-size: 26px;
            }
             .cultural-forum-main-title {
                font-size: 38px;
            }

            .cultural-forum-section-title {
                font-size: 32px;
            }

            .cultural-forum-about-content {
                flex-direction: column;
                gap: 30px;
            }

            .cultural-forum-join-title {
                font-size: 32px;
            }
             .alokito-rajbari-title {
                font-size: 2em;
            }

            .alokito-rajbari-content-grid {
                grid-template-columns: 1fr;
            }

            .alokito-rajbari-stats {
                grid-template-columns: 1fr;
            }
            .rbm-content-flex {
                flex-direction: column;
            }

            .rbm-nav-sidebar {
                width: 100%;
                max-height: 400px;
                display: none;
            }

            .rbm-header-title {
            font-size: 1.5rem;
            }
            .rbm-header-subtitle {
            font-size: 1rem;
            }
            .rbm-header-title{
                margin-bottom: 0px;
            }
            .rbm-header-tagline{
                margin-top: 0px;
                margin-bottom: 0px !important;
            }
            .rbm-main-container{
                margin-top: 1rem;
            }
            .rbm-header-banner{
                padding: 5px;
            }
            .rbm-content-area {
                padding: 20px;
            }
            .manifesto-grid {
                        grid-template-columns: 1fr;
                    }
    .rbm-info-box-container {
        flex-direction: column;
        padding: 20px;
    }

    .rbm-info-box {
        border-right: none;
        border-bottom: 1px solid #C5E7F5;
        padding: 20px 10px;
    }

    .rbm-info-box:last-child {
        border-bottom: none;
    }
     .home-dofa-section {
                padding: 50px 0;
            }
        .top-bar-content {
            padding: 5px 0;
        }
         .pdf-icon {
            width: 30px;
            height: 30px;
            padding: 5px;
        }
        .top-bar-right{
            margin-right: 0px;
        }
        .social-links a {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }
        .arrow-buttons button,
        .user-avatars img {
            width: 30px;
            height: 30px;
        }
        .menu-icon .dot {
        width: 4px;
        height: 4px;
        }
            .home-dofa-content-wrapper {
                padding: 40px 25px;
                border-radius: 20px;
            }

            .home-dofa-main-title {
                font-size: 2rem;
            }

            .home-dofa-description {
                font-size: 1rem;
            }

            .home-dofa-stats-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .home-dofa-btn-primary {
                font-size: 1.05rem;
                padding: 16px 35px;
            }

            .home-dofa-stat-number {
                font-size: 2.3rem;
            }
             .main-heading {
                font-size: 26px;
                margin-bottom: 15px;
            }
            .hero-wrapper{
                min-height: 504px;
            }
            .header-section{
                height: 475px !important;
            }
            .party-img{
                right: 5%;
            }
             .slider-header h2 {
                font-size: 32px;
            }

            .slider-header p {
                font-size: 16px;
            }

            .slide-item img {
                height: 400px;
            }

            .slide-content {
                padding: 30px 20px;
            }

            .slide-content h3 {
                font-size: 24px;
            }

            .slide-content p {
                font-size: 14px;
            }

            .slider-nav button {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .slider-nav.prev {
                left: 10px;
            }

            .slider-nav.next {
                right: 10px;
            }

            .slide-counter {
                top: 15px;
                right: 15px;
                padding: 8px 15px;
                font-size: 12px;
            }
    .hexagon {
        width: 11rem !important;
        height: 11rem !important;
    }
    .hexagon.gray {
        right: 2rem;
        bottom: 0;
        transform: scale(1.05);
        filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2rem rgba(80, 80, 80, 0.6))
        drop-shadow(2rem 2rem 3rem rgba(60, 60, 60, 0.5))
        drop-shadow(3rem 3rem 4rem rgba(40, 40, 40, 0.4))
        drop-shadow(4rem 4rem 5rem rgba(20, 20, 20, 0.3)) !important;
    }
    .hexagon.red {
        right: 11rem;
        bottom: 0;
       filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2rem rgba(180, 0, 0, 0.7))
        drop-shadow(2rem 2rem 3rem rgba(140, 0, 0, 0.6))
        drop-shadow(3rem 3rem 4.5rem rgba(100, 0, 0, 0.5))
        drop-shadow(4.5rem 4.5rem 6rem rgba(60, 0, 0, 0.4)) !important;
    }
    .hexagon.blue {
        right: 6.5rem;
        bottom: 8.5rem;
        transform: scale(1.1);
        filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2.5rem rgba(0, 80, 200, 0.8))
        drop-shadow(2rem 2rem 4rem rgba(0, 60, 160, 0.7))
        drop-shadow(3.5rem 3.5rem 5.5rem rgba(0, 40, 120, 0.6))
        drop-shadow(5rem 5rem 7rem rgba(0, 20, 80, 0.5)) !important;
    }
}

@media (max-width: 576px) {
            .home-rajbari-section {
                padding: 50px 0;
            }

            .home-rajbari-main-title {
                font-size: 2rem;
            }

            .home-rajbari-description {
                font-size: 1rem;
            }

            .home-rajbari-feature-text {
                padding-left: 0;
            }

            .home-rajbari-stats-row {
                gap: 20px;
            }

            .home-rajbari-stat-number {
                font-size: 2rem;
            }
}

@media (max-width: 480px) {
      .party-img {
    height: 120px;
    margin-bottom: 22rem;
    right: 9%;
  }
    .flag-eagle-decoration{
        display: none;
      }
       .hero-main-conten{
        padding-left: 0rem !important;
       }
    .hexagon {
        width: 8rem !important;
        height: 8rem !important;
    }
    .hexagon.gray {
        right: 1rem;
        bottom: 0;
        transform: scale(1);
        filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2rem rgba(80, 80, 80, 0.6))
        drop-shadow(2rem 2rem 3rem rgba(60, 60, 60, 0.5))
        drop-shadow(3rem 3rem 4rem rgba(40, 40, 40, 0.4))
        drop-shadow(4rem 4rem 5rem rgba(20, 20, 20, 0.3)) !important;
    }
    .hexagon.red {
        right: 9rem;
        bottom: 0;
       filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2rem rgba(180, 0, 0, 0.7))
        drop-shadow(2rem 2rem 3rem rgba(140, 0, 0, 0.6))
        drop-shadow(3rem 3rem 4.5rem rgba(100, 0, 0, 0.5))
        drop-shadow(4.5rem 4.5rem 6rem rgba(60, 0, 0, 0.4)) !important;
    }
    .hexagon-container {
       margin-right: 3.75rem;
    margin-bottom: 11.25rem;
    display: none;
    
    }
    .hexagon.blue {
        right: 5rem;
        bottom: 6rem;
        transform: scale(1.05);
        filter:
        drop-shadow(0rem 0rem 0.5rem rgba(0, 0, 0, 0.4))
        drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5))
        drop-shadow(1rem 1rem 2.5rem rgba(0, 80, 200, 0.8))
        drop-shadow(2rem 2rem 4rem rgba(0, 60, 160, 0.7))
        drop-shadow(3.5rem 3.5rem 5.5rem rgba(0, 40, 120, 0.6))
        drop-shadow(5rem 5rem 7rem rgba(0, 20, 80, 0.5)) !important;
    }
    .hexagon:hover {
        transform: scale(1.03) translateY(-0.3rem);
    }
    .custom_login_body {
                padding: 10px;
            }

            .bnp-login-form-section {
                padding: 30px 20px;
            }

            .bnp-login-brand-section {
                padding: 30px 20px;
            }
             .custom_register_body {
                padding: 10px;
            }

            .bnp-register-form-section {
                padding: 30px 20px;
            }

            .bnp-register-brand-section {
                padding: 30px 20px;
            }
}
@media (max-width: 414px) {
     .party-img {
    height: 120px;
    margin-bottom: 22rem;
    right: 9%;
  }
.hero-main-content{
      margin-top: -5rem !important;
        padding-left: 0rem;
}
  .candidate-img {
      height: 340px;
        right: -7rem;
    }
     .description-text { 
      color: #eeeb18;   
      font-size: 15px; 
      line-height: 1.3;
      width: 44%;
      margin-top: 25px;
      margin-bottom: 10px;
    }
    
}
@media (max-width: 390px) {
     .party-img {
    height: 120px;
    margin-bottom: 22rem;
    right: 9%;
  }
      .hero-main-content {
        margin-top: -5rem !important;
        padding-left: 0rem;
      }
         .candidate-img {
      height: 340px;
        right: -7rem;
    }
    .hexagon {
        width: 7rem !important;
        height: 7rem !important;
    }
    .hexagon-container {
        margin-right: 4.75rem;
        margin-bottom: 11.25rem;
        display: none;
    }
    .description-text { 
      color: #eeeb18;   
      font-size: 15px; 
      line-height: 1.3;
      width: 44%;
      margin-top: 25px;
      margin-bottom: 10px;
    }
    .hexagon.gray {
        right: 0.5rem;
    }
    .hexagon.red {
        right: 6rem;
    }
    .hexagon.blue {
        right: 3.25rem;
        bottom: 5.5rem;
    }
    .flag-eagle-decoration{
        display: none;
      }
       .hero-image-wrapper::after {
        content: "";
        position: absolute;
        left: 0%;
        bottom: -28px;
        width: 100%;
        height: 58px;
        background: rgb(0, 0, 0);
        filter: blur(24px);
        opacity: 0.9;
        z-index: 9999;
    }
}

@media (max-width: 360px) { 
     .party-img {
    height: 120px;
    margin-bottom: 22rem;
    right: 9%;
  }
    .hero-main-content {
        margin-top: -6rem;
        padding-left: 0rem;
      }
    .hexagon {
        width: 7rem !important;
        height: 7rem !important;
    }
    .hexagon-container {
        margin-right: 4.75rem;
        margin-bottom: 11.25rem;
        display: none;
    }
      .candidate-img {
        height: 321px;
        right: -7rem;
    }
      .hero-image-wrapper::after {
        content: "";
        position: absolute;
        left: 0%;
        bottom: -28px;
        width: 100%;
        height: 58px;
        background: rgb(0, 0, 0);
        filter: blur(24px);
        opacity: 0.9;
        z-index: 9999;
    }
    .description-text { 
      color: #eeeb18;   
      font-size: 15px; 
      line-height: 1.3;
      width: 44%;
      margin-top: 25px;
      margin-bottom: 10px;
    }
    .hexagon.gray {
        right: 0.5rem;
    }
    .hexagon.red {
        right: 6rem;
    }
    .hexagon.blue {
        right: 3.25rem;
        bottom: 5.5rem;
    }
      .flag-eagle-decoration{
        display: none;
      }
}


/* ============================================
   BROWSER COMPATIBILITY PREFIXES
   ============================================ */

/* Add vendor prefixes for better cross-browser support */
@supports (-webkit-appearance: none) {
    /* Safari & Chrome specific fixes */
    .hexagon {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@supports (-moz-appearance: none) {
    /* Firefox specific fixes */
    .hexagon {
        -moz-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* ============================================
   PRINT MEDIA QUERY
   ============================================ */
@media print {
    .menu-toggle,
    .social-links,
    .footer-section,
    .hexagon,
    .slider-nav,
    .filter-tabs {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .page-title {
        font-size: 24pt;
    }
}
