﻿/* Reset */
* {
    box-sizing: border-box;
}



@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    color: #16c9d4;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.contain {
    max-width: 1300px;
    background: #83838329;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 25px 40px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #444;
}

/* Highlight clickable links */
.btn-link {
    display: inline-block; /* stays inline with text */
    background: linear-gradient(135deg, #16c9d4, #1e6f7e);
    color: white;
    padding: 4px 15px; /* smaller so it matches line height */
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(10, 116, 218, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    user-select: none;
    vertical-align: middle;
    margin: 0 4px; /* space before/after */
}


    /* Hover animation - underline effect */
    .btn-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 6px;
        width: 100%;
        height: 3px;
        background: rgba(255,255,255,0.7);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
        border-radius: 3px;
    }

    .btn-link:hover {
        background: linear-gradient(135deg, #1e6f7e, #16c9d4);
        box-shadow: 0 6px 20px rgba(58, 158, 224, 0.6);
        color: #fff;
    }

        .btn-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

/* Section heading for 'आवेदक की प्रक्रिया-' */
.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #16c9d4;
    border-bottom: 2px solid #0a74da;
    padding-bottom: 8px;
}

/* Important note styling */
.note {
    background: rgba(255,255,255,0.7);
    border-left: 5px solid #16c9d4;
    padding: 15px 20px;
    font-style: italic;
    margin-top: 1.5rem;
    border-radius: 5px;
    color: #16c9d4;
}

/* Responsive */
@media (max-width: 600px) {
    .contain {
        padding: 20px;
    }

    p {
        font-size: 1rem;
    }

    .btn-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
