*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.nav{
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color:white;
    z-index: 999;
}
.nav a{
    text-decoration: none;
}
.nav i{
    font-size: xx-large;
    color: rgb(238, 20, 20);
}
.img{
    margin-top: 1rem;
    background-image: url("anmol-bakground.png");
    height: 75vh;
    background-size: cover;       
    background-repeat: no-repeat; 
    background-position: center; 

}
     .container {
            max-width: 1200px;
            margin: 0 auto;
         }

        /* Added notification banner styles */

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h1 {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #00d4ff, #0099ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header p {
            font-size: 1.1em;
            color: #a0a0b0;
            max-width: 600px;
            margin: 0 auto;
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .option-card {
            background: linear-gradient(145deg, rgba(30, 30, 50, 0.8), rgba(40, 40, 60, 0.9));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 16px;
            padding: 35px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .option-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .option-card:hover::before {
            left: 100%;
        }

        .option-card:hover {
            border-color: rgba(0, 212, 255, 0.6);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
        }

        .icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00d4ff, #0099ff);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .option-title {
            font-size: 1.5em;
            font-weight: 600;
            margin-bottom: 12px;
            color: #ffffff;
        }

        .option-description {
            color: #b0b0c0;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 0.95em;
        }

        /* Added button container and styles for dual buttons */
        .button-container {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .learn-btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #00d4ff, #0099ff);
            color: #0f0f1e;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.95em;
            flex: 1;
            min-width: 120px;
        }

        .learn-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        }

        .learn-btn:active {
            transform: scale(0.98);
        }

        .learn-btn-secondary {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.2));
            color: #00d4ff;
            border: 2px solid rgba(0, 212, 255, 0.6);
        }

        .learn-btn-secondary:hover {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 255, 0.3));
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
        }







footer{
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
    margin-top: 1rem;
    height: 10vh;
    padding-top: 4vh;
}



@media (max-width: 600px) {
    .nav{
      position: relative;  
        
    
    }
    .header h1 {
                font-size: 2em;
            }

            .options-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .option-card {
                padding: 25px;
            }

            .button-container {
                flex-direction: column;
            }

            .learn-btn {
                width: 100%;
            }
        
  

}
