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

        body {
            font-family: 'Hind Siliguri', sans-serif;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }

        /* Header Styles */
        .top-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-section img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .logo-text h1 {
            font-size: 28px;
            font-weight: 700;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .logo-text p {
            font-size: 14px;
            margin: 0;
            opacity: 0.95;
        }

        /* Navigation */
        .navbar-custom {
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            padding: 0;
        }

        .navbar-custom .navbar-nav {
            width: 100%;
            justify-content: center;
        }

        .navbar-custom .nav-link {
            color: #1e3a8a;
            font-weight: 600;
            font-size: 16px;
            padding: 18px 25px !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-custom .nav-link:hover {
            color: #3b82f6;
            background: #f0f9ff;
        }

        .navbar-custom .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: #3b82f6;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-custom .nav-link:hover::after {
            width: 80%;
        }

        /* Hover Dropdown */
        .navbar-custom .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            animation: fadeInDown 0.3s ease;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            border-radius: 8px;
            margin-top: 0;
            display: none;
        }

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

        .dropdown-item {
            padding: 12px 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: #f0f9ff;
            color: #3b82f6;
            padding-left: 25px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
            padding: 80px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, 100px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-content h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        /* Service Cards */
        .services-section {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h3 {
            font-size: 36px;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 10px;
        }

        .section-title .underline {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
            margin: 0 auto;
            border-radius: 2px;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            height: 100%;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.15);
            border-color: #3b82f6;
        }

        .service-card .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: white;
            box-shadow: 0 8px 16px rgba(59,130,246,0.3);
        }

        .service-card h4 {
            font-size: 22px;
            font-weight: 600;
            color: #1e3a8a;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #64748b;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .service-card .btn-custom {
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .service-card .btn-custom:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(59,130,246,0.4);
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 60px 0;
        }

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

        .stat-item .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }

        .stat-item .stat-label {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: #1e293b;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-section h5 {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 20px;
            color: #60a5fa;
        }

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

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #60a5fa;
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            color: #94a3b8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h2 {
                font-size: 32px;
            }

            .logo-text h1 {
                font-size: 20px;
            }

            .section-title h3 {
                font-size: 28px;
            }
        }




        .step-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        background-color: white;
        color: #28a745;
        margin: 0 auto 10px;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .nav-pills .nav-link {
        background-color: #6c757d;
        color: white;
        border-radius: 0;
        padding: 15px;
    }

    .nav-pills .nav-link.active .step-number {
        background-color: white;
        color: #28a745;
    }

    .nav-pills .nav-link:not(.active) .step-number {
        background-color: rgba(255, 255, 255, 0.3);
        color: white;
    }

    .table th {
        font-weight: 600;
    }