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

/* Root Variables for Theme and Responsive Sizes */
:root {
    --primary-bg: linear-gradient(135deg, #1a1a1a, #121212);
    --glass-bg: rgba(51, 51, 51, 0.9);
    --text-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.6);
    --header-blur: 20px;
    --header-padding: clamp(8px, 2vw, 16px); /* Responsive padding */
}

/* Body with Responsive Font Sizes */
body {
    font-family: 'Inter', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 50px;
    overflow: hidden;
    z-index: 0;
    background: var(--primary-bg);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--text-color);
    font-size: clamp(14px, 2vw, 18px); /* Responsive font size */
}

/* Modern Gradient Animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Background Effect */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 10%, transparent 10.01%);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.5;
    animation: moveBackground 10s linear infinite;
}

/* Background Animation */
@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

/* Responsive Header with Glassmorphism */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--header-blur));
    color: var(--text-color);
    padding: var(--header-padding);
    box-shadow: 0 4px 20px var(--shadow-color);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
header:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.8);
}

/* Container with Responsive Flexbox */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 20px;
    max-width: 1200px;
}

/* Responsive Cards or Content Blocks */
.card {
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(16px, 3vw, 24px);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    text-align: center;
    min-width: 280px;
    max-width: 400px;
    margin: 10px;
    transition: transform 0.3s ease-in-out;
}

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

/* Responsive Buttons */
button {
    background: #ff4757;
    color: white;
    border: none;
    padding: clamp(8px, 1vw, 12px) clamp(12px, 2vw, 24px);
    font-size: clamp(14px, 2vw, 18px);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background: #e84118;
}

/* RESPONSIVE MEDIA QUERIES */

/* Small Devices (phones) */
@media (max-width: 600px) {
    body {
        padding-top: 50px;
    }
    
    .container {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }

    header {
        padding: 10px 15px;
    }

    .card {
        width: 90%;
        min-width: unset;
    }
}

/* Medium Devices (Tablets & Small Laptops) */
@media (max-width: 1024px) {
    .container {
        flex-wrap: wrap;
    }

    .card {
        width: 45%;
    }
}

/* Large Devices (Desktops) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}
/* Enhanced Form Container with modern glassmorphism and hover effects */
.form-container {
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.8), rgba(41, 41, 41, 0.9));
    backdrop-filter: blur(20px); /* Increased blur for a modern glass effect */
    color: #e0e0e0;
    padding: 30px;
    border-radius: 16px; /* Slightly larger radius for a softer look */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6); /* Softer and more pronounced shadow */
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Subtle border for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

/* Hover effect for form container */
.form-container:hover {
    transform: translateY(-4px); /* Slightly larger lift on hover */
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(25px); /* Increased blur on hover */
}

/* Original Form Headings */
h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #e0e0e0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Enhanced Input Fields */
input,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(85, 85, 85, 0.5);
    border-radius: 8px;
    font-size: 16px;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.9), rgba(44, 44, 44, 0.9));
    color: #e0e0e0;
    transition: all 0.3s ease;
}

input:focus,
select:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 12px rgba(76, 175, 80, 0.3);
    outline: none;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.95), rgba(54, 54, 54, 0.95));
}

/* Enhanced Button Styles */
button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4CAF50, #45a049, #388E3C);
    background-size: 200% 200%;
    animation: buttonGradient 3s ease infinite;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

@keyframes buttonGradient {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

/* Rest of your original code remains exactly the same */
/* Original Paragraph Text */
p {
    text-align: center;
    color: #bbb;
    font-size: 14px;
}

span {
    color: #4CAF50;
    cursor: pointer;
    font-weight: bold;
}

/* Original Success and Error Messages */
.success-message,
.error-message {
    font-weight: bold;
    display: none;
    text-align: center;
}

/* Original Password Container */
.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-password {
    cursor: pointer;
    position: absolute;
    right: 12px;
    font-size: 18px;
    color: #bbb;
    transition: transform 0.3s ease, color 0.3s ease;
}

.toggle-password:hover {
    transform: scale(1.2);
    color: #4CAF50;
}

/* Enhanced Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.9), rgba(41, 41, 41, 0.9));
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(68, 68, 68, 0.5);
    padding: 10px 0;
    font-size: 14px;
    color: #bbb;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.5);
}

#footer-time {
    font-weight: bold;
    color: #4CAF50;
}

/* Rest of your original media queries and animations remain unchanged */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .form-container {
        padding: 20px;
    }

    input,
    select,
    button {
        font-size: 14px;
        padding: 10px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 12px;
    }
}

/* Original Floating Modern Header */
.ringing {
    display: inline-block;
    animation: ring 2s ease-in-out infinite;
    transform-origin: top center;
}

/* Enhanced Inquiry Button */
#inquiry-btn-container {
    position: fixed;
    bottom: 28px;
    left: 20px;
    z-index: 1000;
}

#inquiry-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049, #388E3C);
    background-size: 200% 200%;
    animation: inquiryGradient 3s ease infinite;
    color: white;
    font-size: 16px;
    padding: 10px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

@keyframes inquiryGradient {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

/* Rest of your original code remains unchanged */
#inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.5);
}

#inquiry-btn i {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: black;
    visibility: visible;
    animation: iconCycle 8s infinite;
}

#inquiry-btn span {
    visibility: visible;
    animation: textDisappear 5s forwards;
}

@keyframes textDisappear {
    0% { visibility: visible; }
    100% { visibility: hidden; }
}

@keyframes iconCycle {
    0% { content: '\f128'; }
    25% { content: '\f4ac'; }
    50% { content: '\f0e0'; }
    75% { content: '\f095'; }
    100% { content: '\f4ac'; }
}

/* Enhanced Inquiry Options */
.inquiry-options {
    display: none;
    position: absolute;
    bottom: 70px;
    left: 0;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.95), rgba(41, 41, 41, 0.95));
    backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
    transition: display 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.inquiry-option {
    padding: 12px 20px;
    border: none;
    background: rgba(68, 68, 68, 0.8);
    color: #e0e0e0;
    text-align: left;
    width: 200px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.inquiry-option:hover {
    background: rgba(85, 85, 85, 0.8);
}

/* Rest of your original code */
#close-inquiry {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

#close-inquiry:hover {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
}

/* Original Icon Sizing */
.icon-small {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.icon-medium {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.icon-xlarge {
    font-size: 48px;
    width: 48px;
    height: 48px;
}

/* Original Ring Bell Animation */
@keyframes ringBell {
    0% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0); }
}

.ringing-bell {
    animation: ringBell 1.5s infinite ease-in-out;
    color: red;
    font-size: 20px;
    position: relative;
}

/* Enhanced Icon Button */
.icon-btn {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0078d4, #005fa3, #004c8c);
    background-size: 200% 200%;
    animation: iconGradient 3s ease infinite;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

@keyframes iconGradient {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

/* Rest of your original code remains exactly the same */
.icon-btn i {
    font-size: 24px;
}

.icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.icon-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Original Media Queries */
@media (max-width: 768px) {
    .icon-btn {
        width: 40px;
        height: 40px;
    }

    .icon-btn i {
        font-size: 20px;
    }
}

/* Enhanced Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center</antArtifact>
    gap: 5px;
    transition: all 0.3s ease;
}

/* Enhanced Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.98), rgba(26, 26, 26, 0.98));
    min-width: 200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1;
    top: 100%;
    left: 0;
    overflow: hidden;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Enhanced Dropdown Links */
.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    padding: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:hover {
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.2));
}

/* Show Dropdown on Hover with Enhanced Animation */
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add smooth transitions for all interactive elements */
.form-container,
button,
.icon-btn,
input,
select,
.dropdown-btn,
.inquiry-option,
.toggle-password {
    transition: all 0.3s ease;
}

/* Enhanced hover effects for interactive elements */
.dropdown-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Add subtle gradient animations */
@keyframes subtleGlow {
    0% { box-shadow: 0 0 5px rgba(76, 175, 80, 0.2); }
    50% { box-shadow: 0 0 15px rgba(76, 175, 80, 0.3); }
    100% { box-shadow: 0 0 5px rgba(76, 175, 80, 0.2); }
}

/* Subtle glow animation for focused elements */
input:focus,
select:focus,
.dropdown-btn:focus {
    animation: subtleGlow 1.5s infinite alternate ease-in-out;
    outline: none;
    border-color: rgba(76, 175, 80, 0.8); /* Accent color with transparency */
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.4), 
                0 0 12px rgba(76, 175, 80, 0.2); /* Layered glow */
}

@keyframes subtleGlow {
    0% {
        box-shadow: 0 0 8px rgba(76, 175, 80, 0.4),
                    0 0 12px rgba(76, 175, 80, 0.2);
    }
    100% {
        box-shadow: 0 0 16px rgba(76, 175, 80, 0.6),
                    0 0 24px rgba(76, 175, 80, 0.3);
    }
}

/* Enhanced dark mode shadows with a modern, layered depth */
.form-container,
.dropdown-content,
.inquiry-options {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25),
                0 8px 16px rgba(0, 0, 0, 0.2),
                0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 12px; /* Soft rounded corners */
    background-color: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border for depth */
}
/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    text-align: center;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #000;
}

#reset-email {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#send-reset-link {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#send-reset-link:hover {
    background-color: #45a049;
}
/* Add this to your CSS file or <style> section */
#download-btn {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Font size */
    margin-top: 20px; /* Margin from the top */
}

#download-btn:hover {
    background-color: #45a049; /* Darker green on hover */
}
/* Verified Students Container Styles */
.verified-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.verified-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #3498db;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.verified-box:hover {
    transform: translateY(-5px);
}

.verified-box i {
    margin-bottom: 10px;
    color: white;
}

.verified-box h3 {
    margin: 5px 0;
    font-size: 1.1rem;
}

/* If you want it to match your existing container-box style */
.verified-box {
    /* Use same styles as your container-box class */
    /* Add any additional specific styles for the verified box */
}
