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

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 15px;
        }

        .hero-section {
            max-width: 800px;
            width: 100%;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
        }

        .hero-section h1 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 700;
            color: #ffd700;
        }

        .hero-section .tagline {
            font-size: 18px;
            margin-bottom: 30px;
            color: #e0e0e0;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .card {
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 15px;
            text-align: left;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #2a5298;
        }

        .card p {
            font-size: 14px;
            color: #555;
        }

        .cta-section {
            background: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: 15px;
            margin-top: 30px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 15px;
            color: #fff;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ffd700, #ff8c00);
            color: #000;
            font-weight: 600;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 16px;
            transition: background 0.3s ease;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #ff8c00, #ffd700);
        }
        .imgPho img{width:100%}
   

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 28px;
            }
            .tagline {
                font-size: 16px;
            }
            .cta-section p {
                font-size: 16px;
            }
            .cta-button {
                padding: 12px 24px;
            }
        }
         .hidden-link {
            display: none;
        }
    