/* --- Global Styles & Background --- */
body{
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
main{
  margin: 0;
  padding: 0;
  
   background-attachment: fixed;
   color: #ffffff;
    line-height: 1.6;
}
.admission-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

/* --- Header Section --- */
.admission-header {
    text-align: center;
    margin-bottom: 50px;
}

.admission-header h1 {
    font-size: 3rem;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #88a9b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.admission-header p {
    color: #a0c4d4;
    font-weight: 300;
}

/* --- The Glassy Cards --- */
.form-preview-card, .info-card {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-preview-card {
    width: auto;
    margin: 0 auto 40px;
    overflow: hidden;
}

.form-preview-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-preview-card img {
    width: 100%;
    height: auto;
    opacity: 0.9;
    filter: brightness(0.9);
    max-width: 360px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.preview-footer {
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* --- Buttons --- */
.download-area {
    text-align: center;
    margin: 50px 0;
}
.download-area p{
  padding: 20px;
  color: #36cdff;
}

.btn-download {
    
    background: #ffffff;
    color: #0f2027;
    padding: 16px 45px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    display: inline-block;
}

.btn-download:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* --- Info Grid & Cards --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-card {
    padding: 35px;
}

.info-card h3 {
    margin-top: 0;
    color: #88a9b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    font-size: 1.4rem;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.info-list strong {
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    opacity: 0.7;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .admission-header h1 { font-size: 2.2rem; }
    .admission-container { margin: 30px auto; }
}
