/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0b0c10; /* Deep elegant black */
    color: #e5e7eb; /* Soft white for readability */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    letter-spacing: 0.5px;
}

h1 {
    text-align: center;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
/* Logo Styles */
.logo-container {
    margin-bottom: 60px;
    text-align: center;

}

.logo {
    max-width: 220px;
    height: auto;
    display: block;
    margin-left: 15%;
    /* Optional subtle blue glow behind your logo */
    filter: drop-shadow(0 0 15px rgba(0, 119, 255, 0.2)); 
}

/* Grid Layout for Options */
.options-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1100px;
}

/* Interactive Card Styles (Elegant Dark Mode) */
.option-card {
    background: #11141a; /* Dark charcoal grey */
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #1f242e; /* Subtle boundary line */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Ultra smooth ease */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Hover Effects */
.option-card:hover {
    transform: translateY(-8px);
    border-color: #0077ff; /* Striking blue border on hover */
    box-shadow: 0 15px 35px rgba(0, 119, 255, 0.15); /* Soft blue ambient glow */
}

.card-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    text-align: center;
    z-index: 2;
}

/* Typography */
.card-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.option-card:hover .card-content h2 {
    color: #0077ff; /* Title turns blue on hover */
}

.card-content p {
    font-size: 0.95rem;
    color: #9ca3af; /* Muted gray for body text */
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Action Button inside Card */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #0077ff;
    border: 2px solid #0077ff; /* Elegant outlined button */
    border-radius: 30px; /* Rounded pill shape for premium look */
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Button behavior when card is hovered */
.option-card:hover .btn {
    background-color: #0077ff;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 119, 255, 0.4);
}

/* Responsive Design for Mobile/Tablets */
@media (max-width: 850px) {
    .options-container {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px; /* Keeps cards looking sharp on mobile */
    }
    
    .logo-container {
        margin-bottom: 40px;
    }
}