  body {
            font-family: 'Hind Siliguri', sans-serif !important;
            background: #f8f9fa;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(to right, #0d6efd, #6610f2);
            padding: 12px 0;
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.4rem;
            color: #fff !important;
        }

        .nav-link {
            color: #fff !important;
            margin-left: 15px;
            font-weight: 500;
            transition: 0.3s;
        }

        .nav-link:hover {
            color: #ffeb3b !important;
            transform: scale(1.05);
        }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(102, 16, 242, 0.9)),
                url("https://picsum.photos/1920/600?blur") no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px 20px 20px;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: bold;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
        }

        .hero p {
            font-size: 1.2rem;
            margin-top: 15px;
        }

        /* Application Notice */
        .application-notice {
            background: #e3f2fd;
            border-left: 6px solid #0d6efd;
            padding: 15px 20px;
            margin-top: -20px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .application-notice strong {
            color: #0d6efd;
        }

        /* Notice Board */
        .notice-board {
            background: #fff;
            border-left: 6px solid #ff9800;
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
            transition: 0.3s;
        }

        .notice-board:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        /* Buttons */
        .btn-custom {
            font-size: 18px;
            font-weight: bold;
            padding: 15px;
            border-radius: 12px;
            transition: 0.3s;
        }

        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        /* FAQ */
        .accordion-button {
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: #0d6efd;
            color: white;
        }

        /* Photo Schedule */
        .table th {
            font-weight: 600;
        }

        /* Contact */
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: 0.3s;
        }

        .card:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* Footer */
        .footer {
            background: #0d6efd;
            color: white;
            text-align: center;
            padding: 18px 0;
            margin-top: 60px;
            font-size: 15px;
            letter-spacing: 0.5px;
        }