
        /* Global Styles */
        html {
            scroll-behavior: smooth;
        }
        
        /* Font Override */
        :root, body {
            --bs-body-font-family: 'Noto Sans', sans-serif;
            font-family: 'Noto Sans', sans-serif;
            --brand-primary: #0056b3; /* Deep Blue */
            --brand-secondary: #004494; /* Darker Blue */
            --brand-accent: #00a651; /* Growth Green */
            --brand-light: #f8f9fa;
            --brand-dark: #1a1a1a;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* UX4G Override */
        .btn-primary {
            background-color: var(--brand-primary);
            border-color: var(--brand-primary);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }
        .btn-primary:hover {
            background-color: #004494;
            border-color: #004494;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        .btn-outline-primary {
            transition: var(--transition);
        }
        .btn-outline-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .text-primary { color: var(--brand-primary) !important; }
        .bg-primary { background-color: var(--brand-primary) !important; }

        /* Header Styling */
        .header-top {
            background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 100%) !important;
        }
        .header-top a:hover {
            opacity: 0.8;
            transition: var(--transition);
        }
        
        /* Header Logos */
        .logo_section img {
            max-height: 60px;
            width: auto;
            transition: var(--transition);
        }
        .logo_section img:hover {
            transform: scale(1.05);
        }
        .navbar-brand img {
            max-height: 50px;
            transition: var(--transition);
        }
        .navbar-brand img:hover {
            transform: scale(1.05);
        }

        /* Modern Carousel Styling */
        .carousel-container-wrapper {
            padding: 0;
            background: transparent;
            margin-bottom: 80px;
        }
        #heroCarousel {
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            border: none;
        }
        .hero-carousel-item {
            height: 90vh;
            min-height: 600px;
            background-size: cover;
            background-position: center;
            position: relative;
            background-attachment: fixed;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        .hero-content h1 {
            font-size: 4rem !important;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .hero-content .display-3 {
            font-size: 4.5rem !important;
            line-height: 1.2;
        }

        /* Stats Section - Completely Redesigned */
        .stats-section {
            position: relative;
            margin-top: -6rem;
            z-index: 100;
            padding-bottom: 4rem;
        }
        .stat-card-new {
            background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 86, 179, 0.25);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .stat-card-new::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transition: all 0.6s ease;
        }
        .stat-card-new:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 86, 179, 0.4);
        }
        .stat-card-new:hover::before {
            top: -25%;
            right: -25%;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            line-height: 1;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }
        .stat-label {
            font-size: 1rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 2;
        }
        .stat-icon-bg {
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.08);
            z-index: 1;
            transition: all 0.4s ease;
        }
        .stat-card-new:hover .stat-icon-bg {
            transform: rotate(-15deg) scale(1.1);
            color: rgba(255, 255, 255, 0.12);
        }

        .elevation-box {
            background: #fff;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(0,0,0,0.06);
            transition: var(--transition);
            overflow: hidden;
        }
        .elevation-box:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(0, 86, 179, 0.2);
        }

        /* Glass Button - Clean Style */
        .btn-glass {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-glass:hover {
            background: white;
            border-color: white;
            color: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        /* Ticker */
        .news-ticker {
            background: linear-gradient(90deg, #0056b3, #00a651); /* Blue to Green */
            color: #fff;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        /* Modern Card Design - Clean White */
        .glass-card {
            background: white;
            border: 1px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            border-radius: 12px;
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
        }
        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            border-color: #d1d5db;
        }

        /* Wiring Dots Background */
        .bg-dots-pattern {
            background-color: #f8f9fa;
            background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
            background-size: 24px 24px;
        }
        
        /* Feature Cards */
        .feature-card .p-4 {
            padding: 2rem !important;
        }
        .feature-card h5 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--brand-dark);
        }
        .feature-card .text-muted {
            line-height: 1.6;
        }
        
        /* Why AP Bento Grid Section */
        .why-ap-bento {
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        }
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            grid-auto-rows: 200px;
        }
        
        /* Bento Items */
        .bento-item {
            position: relative;
            border-radius: 24px;
            padding: 2rem;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: linear-gradient(135deg, rgba(0, 86, 179, 0.05), rgba(0, 166, 81, 0.05));
            border: 2px solid rgba(0, 86, 179, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .bento-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 86, 179, 0.2);
            border-color: rgba(0, 86, 179, 0.3);
        }
        .bento-hero {
            grid-column: span 2;
            grid-row: span 2;
            background: linear-gradient(135deg, #0056b3, #004494);
            color: white;
        }
        .bento-medium {
            grid-column: span 2;
            padding-bottom: 3rem;
        }
        .bento-small {
            grid-column: span 1;
        }
        
        /* Glow Effect */
        .bento-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            opacity: 0;
            transition: all 0.6s ease;
            pointer-events: none;
        }
        .bento-item:hover .bento-glow {
            opacity: 1;
            animation: glowMove 2s ease-in-out infinite;
        }
        @keyframes glowMove {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(10%, 10%); }
        }
        
        /* Hero Card Styles */
        .bento-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            width: fit-content;
            margin-bottom: 1rem;
        }
        .hero-rank {
            font-size: 5rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .hero-desc {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: auto;
        }
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        .stat-item {
            flex: 1;
        }
        .stat-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffc107;
        }
        .stat-label {
            font-size: 0.75rem;
            opacity: 0.8;
            text-transform: uppercase;
        }
        
        /* Small Card Styles */
        .bento-icon {
            font-size: 2.5rem;
            color: #0056b3;
            margin-bottom: 0.75rem;
        }
        .bento-icon-large {
            font-size: 3.5rem;
            color: #0056b3;
            margin-bottom: 1rem;
            opacity: 0.2;
            position: absolute;
            top: 1rem;
            right: 1rem;
        }
        .building-icon {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            font-size: 3rem;
            color: #0056b3;
            opacity: 0.15;
        }
        .bento-rank {
            font-size: 2.5rem;
            font-weight: 900;
            color: #0056b3;
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        .bento-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }
        .bento-text {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.4;
        }
        
        /* Counter Animation */
        .counter-wrap {
            font-size: 3rem;
            font-weight: 900;
            color: #0056b3;
            margin-bottom: 1rem;
            line-height: 1;
        }
        .counter-number {
            display: inline-block;
        }
        .counter-plus {
            color: #00a651;
        }
        
        /* Progress Ring */
        .progress-ring {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
        }
        .progress-ring-circle {
            fill: none;
            stroke: #e5e7eb;
            stroke-width: 6;
        }
        .progress-ring-fill {
            fill: none;
            stroke: #00a651;
            stroke-width: 6;
            stroke-linecap: round;
            stroke-dasharray: 220;
            transform: rotate(-90deg);
            transform-origin: center;
            transition: stroke-dashoffset 1.5s ease;
        }
        .progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.25rem;
            font-weight: 700;
            color: #00a651;
        }
        
        /* Facility Tags */
        .facility-list {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .facility-tag {
            background: rgba(0, 166, 81, 0.1);
            color: #00a651;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }
        .facility-tag i {
            font-size: 0.7rem;
        }
        
        /* CTA Card */
        .bento-cta {
            grid-column: span 1;
            background: linear-gradient(135deg, #00a651, #008a44);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .cta-icon {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
            opacity: 0.9;
        }
        .cta-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
        }
        .cta-text {
            font-size: 0.85rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            color: #00a651;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .cta-button:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            color: #008a44;
        }
        .cta-button i {
            transition: transform 0.3s ease;
        }
        .cta-button:hover i {
            transform: translateX(5px);
        }
        
        /* Responsive Grid */
        @media (max-width: 1200px) {
            .bento-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .bento-hero {
                grid-column: span 3;
            }
        }
        @media (max-width: 768px) {
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                grid-auto-rows: 180px;
            }
            .bento-hero {
                grid-column: span 2;
            }
            .bento-medium {
                grid-column: span 2;
            }
            .hero-rank {
                font-size: 3.5rem;
            }
            .hero-title {
                font-size: 1.25rem;
            }
        }
        @media (max-width: 576px) {
            .bento-grid {
                grid-template-columns: 1fr;
            }
            .bento-hero,
            .bento-medium,
            .bento-small {
                grid-column: span 1;
            }
        }

        /* Map Section Styles */
        .map-section {
            position: relative;
            overflow: hidden;
        }
        .map-container {
            position: relative;
            height: 600px;
            width: 100%;
            background: #f8f9fa url('https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Andhra_Pradesh_districts_map_%282022%29.svg/1200px-Andhra_Pradesh_districts_map_%282022%29.svg.png') no-repeat center center;
            background-size: contain;
            border: 2px solid #0056b3;
            box-shadow: inset 0 0 20px rgba(0, 86, 179, 0.1);
        }
        .map-point {
            position: absolute;
            width: 24px;
            height: 24px;
            background: #00a651; /* Green for points */
            border: 4px solid white;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.2);
            z-index: 10;
        }
        .map-point:hover, .map-point.active {
            transform: scale(1.5);
            background: #0056b3; /* Blue on hover */
            box-shadow: 0 0 0 8px rgba(0, 86, 179, 0.2);
            z-index: 11;
        }
        .map-point .tooltip-text {
            visibility: hidden;
            width: 120px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px 0;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -60px;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0.8rem;
        }
        .map-point:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }
        
        /* Info Panel Transition */
        .info-panel-content {
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.4s ease;
        }
        .info-panel-content.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Announcements List - Clean Design */
        .announcement-list {
            list-style: none;
            padding: 0;
            margin: 0;
            border-radius: 12px;
            overflow: hidden;
        }
        .announcement-item {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            align-items: center;
            transition: all 0.2s ease;
            position: relative;
            background: white;
        }
        .announcement-item:hover {
            background: #f9fafb;
        }
        .announcement-item:last-child {
            border-bottom: none;
        }
        .announcement-date {
            font-size: 0.8rem;
            font-weight: 700;
            color: #0056b3;
            min-width: 70px;
            text-align: center;
            line-height: 1.3;
            margin-right: 1.25rem;
            padding: 0.75rem 0.5rem;
            background: #f0f4f8;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
        }

        /* Social Feed Placeholder */
        .social-feed-placeholder {
            background: #fff;
            border-radius: 12px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(0,0,0,0.1);
            color: #999;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .social-feed-placeholder:hover {
            border-color: rgba(0, 86, 179, 0.3);
            box-shadow: var(--shadow-md);
        }


        /* Section Headers - Clean and Bold */
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            font-weight: 700;
            color: #1a1a1a;
            font-size: 2.5rem;
            letter-spacing: -0.5px;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #0056b3;
            margin: 1rem auto 0;
            border-radius: 2px;
        }

        /* Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98) !important;
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(10px);
        }
        .navbar.sticky-top {
            box-shadow: var(--shadow-md);
        }
        .nav-link {
            font-weight: 500;
            color: #444 !important;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--brand-primary) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 80%;
            height: 3px;
            background: var(--brand-primary);
            border-radius: 2px;
            transition: var(--transition);
        }
        .nav-link.active::after,
        .nav-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* Simple Offerings Section */
        .offerings-simple-section {
            background: #f7f9fb;
            padding: 5rem 0;
        }
        
        .offerings-boxes-row {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .offering-box {
            flex: 1;
            min-width: 200px;
            max-width: 250px;
            background: white;
            border: 2px solid #e0e7ef;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .offering-box:hover {
            border-color: #0066b3;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 102, 179, 0.15);
        }
        
        .offering-box-icon {
            font-size: 3rem;
            color: #0066b3;
            margin-bottom: 1.25rem;
        }
        
        .offering-box h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
            line-height: 1.4;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .offerings-boxes-row {
                gap: 1.5rem;
            }
            .offering-box {
                min-width: 180px;
                max-width: 220px;
                padding: 2rem 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .offerings-boxes-row {
                flex-direction: column;
                align-items: center;
            }
            .offering-box {
                max-width: 100%;
                width: 100%;
            }
        }

        /* Map Section */
        .map-section {
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .funding-tag {
            background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(0, 166, 81, 0.1));
            color: #0056b3;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Square Card - Procurement Badge */
        .procurement-badge {
            background: linear-gradient(135deg, #00a651, #008a44);
            color: white;
            padding: 0.75rem 1rem;
            border-radius: 12px;
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Success Banner */
        .success-banner {
            background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(0, 166, 81, 0.1));
            padding: 1.5rem 2rem;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-size: 1rem;
            color: #1a1a1a;
        }
        
        /* Responsive Grid */
        @media (max-width: 1200px) {
            .offerings-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .offering-large {
                grid-column: span 2;
            }
            .offering-wide {
                grid-column: span 2;
            }
        }
        @media (max-width: 768px) {
            .offerings-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
            }
            .offering-large,
            .offering-medium,
            .offering-tall,
            .offering-wide,
            .offering-square {
                grid-column: span 1;
                grid-row: span 1;
            }
            .offering-card {
                min-height: 280px;
            }
        }
    