/* =====================================================
   My Admission Card - Main Stylesheet
   Premium Education Consultancy Design
   ===================================================== */

/* CSS Variables */
:root {
    --primary: #1e3a8a;
    --primary-dark: #172554;
    --accent: #d4af37;
    --accent-light: #e5c65a;
    --background: #ffffff;
    --surface: #f8fafc;
    --text-dark: #0f172a;
    --text-light: #ffffff;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --error: #ef4444;
    --success: #22c55e;
    --whatsapp: #25D366;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px -4px rgba(30, 58, 138, 0.15);
    
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a{
   text-decoration: none !important;
}

.my-nav{
   background-color: #1e3a8a;
}

.my-nav a{
   color: #ffffffcc;
}

.my-nav a:hover, 
.my-nav a:active{
   color: #ffffff !important;
}

.main{
   padding: 5px 0;
}

td{
   color: #333333 !important;
}

.footer{
   padding: 1em 0;
   background-color: #1e3a8a;
   text-align: center;
   color: #ffffffcc;
   border-top: 1px solid;
   border-top-color: #ffffffcc;
}