/* ================================================
   PANKTI ACADEMY – Main Stylesheet
   File: assets/css/style.css
   ================================================ */

/* CSS Variables */
:root {
    --primary: #1a237e;
    --primary-light: #3949ab;
    --secondary: #ff6f00;
    --secondary-light: #ffa040;
    --dark: #0d0d2b;
    --light: #f8f9ff;
    --bg-light: #f0f4ff;
    --text: #333;
    --text-muted: #888;
    --border: #e8e8e8;
    --shadow: 0 5px 20px rgba(0,0,0,0.07);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito', sans-serif; color: var(--text); line-height: 1.6; }
a { text-decoration: none; }
img { max-width: 100%; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    background: var(--dark) !important;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff !important;
    font-weight: 700;
}
.navbar-brand span { color: var(--secondary); }
.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 8px 12px !important;
}
.nav-link:hover,
.nav-link.active-link { color: var(--secondary) !important; }
.btn-portal {
    background: var(--secondary);
    color: #fff !important;
    border-radius: 25px;
    padding: 8px 20px !important;
    transition: background 0.2s;
}
.btn-portal:hover { background: #e65100; }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1a237e 60%, #283593 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -30%; right: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,111,0,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}
.page-hero h1 span { color: var(--secondary); }
.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}
.breadcrumb-bar {
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.breadcrumb-bar a { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.breadcrumb-bar a:hover { color: var(--secondary); }
.breadcrumb-bar span { color: var(--secondary); font-size: 0.82rem; }
.breadcrumb-bar i { color: rgba(255,255,255,0.4); font-size: 0.65rem; }

/* ================================================
   SECTIONS
   ================================================ */
section { padding: 80px 0; }
.section-badge {
    background: #e8eaf6;
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
}
.section-title span { color: var(--secondary); }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; margin-top: 8px; }

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary-pa {
    background: var(--primary);
    color: #fff;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}
.btn-primary-pa:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-pa {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 700;
    background: transparent;
    transition: all 0.3s;
    display: inline-block;
}
.btn-outline-pa:hover {
    background: var(--primary);
    color: #fff;
}

/* ================================================
   CARDS – General
   ================================================ */
.card-pa {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.card-pa:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* ================================================
   COURSE CARDS
   ================================================ */
.course-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; height: 100%; }
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.course-header { padding: 25px; color: #fff; }
.course-header i { font-size: 2.5rem; margin-bottom: 12px; opacity: 0.9; display: block; }
.course-header h5 { font-weight: 800; font-size: 1.1rem; margin: 0; }
.course-header small { opacity: 0.7; }
.course-body { padding: 20px 25px; }
.course-body p { color: #666; font-size: 0.9rem; margin-bottom: 15px; line-height: 1.7; }
.feature-list { list-style: none; padding: 0; margin-bottom: 18px; }
.feature-list li { font-size: 0.87rem; color: #555; padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.feature-list li i { color: #2e7d32; font-size: 0.75rem; flex-shrink: 0; }
.course-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #f0f2f8; }
.fees-tag { font-size: 1.3rem; font-weight: 900; color: var(--secondary); }

/* ================================================
   WHY CARDS
   ================================================ */
.why-card { background: #fff; border-radius: 16px; padding: 30px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; height: 100%; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-icon { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, #e8eaf6, #c5cae9); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.why-icon i { font-size: 1.8rem; color: var(--primary); }
.why-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { color: #666; font-size: 0.9rem; margin: 0; }

/* ================================================
   PORTAL CARDS
   ================================================ */
.portal-card {
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}
.portal-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.portal-admin { background: linear-gradient(135deg, #1a237e, #3949ab); border: 1px solid rgba(255,255,255,0.15); }
.portal-teacher { background: linear-gradient(135deg, #1b5e20, #388e3c); border: 1px solid rgba(255,255,255,0.15); }
.portal-student { background: linear-gradient(135deg, #e65100, #ff6f00); border: 1px solid rgba(255,255,255,0.15); }
.portal-icon { width: 80px; height: 80px; background: rgba(255,255,255,0.15); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: #fff; margin: 0 auto 20px; }
.portal-card h4 { color: #fff; font-weight: 800; margin-bottom: 8px; font-size: 1.3rem; }
.portal-card p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 20px; }
.portal-features { list-style: none; padding: 0; margin-bottom: 15px; }
.portal-features li { color: rgba(255,255,255,0.65); font-size: 0.82rem; padding: 3px 0; }
.portal-features li i { color: rgba(255,255,255,0.5); font-size: 0.7rem; margin-right: 6px; }
.btn-enter { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.4); border-radius: 25px; padding: 10px 25px; font-weight: 700; font-size: 0.9rem; transition: all 0.2s; display: inline-block; }
.btn-enter:hover { background: rgba(255,255,255,0.3); color: #fff; }

/* ================================================
   CONTACT
   ================================================ */
.contact-box { background: #fff; border-radius: 16px; padding: 30px; box-shadow: var(--shadow); }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid #f0f2f8; }
.contact-info-item:last-child { border: none; }
.ci-icon { width: 50px; height: 50px; background: #e8eaf6; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon i { color: var(--primary); font-size: 1.2rem; }
.ci-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.ci-value { font-weight: 700; color: #333; }
.timing-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #eee; font-size: 0.88rem; }
.timing-row:last-child { border: none; }
.timing-day { color: #555; font-weight: 600; }
.timing-time { color: var(--primary); font-weight: 700; }

/* ================================================
   FORMS
   ================================================ */
.form-label { font-weight: 700; font-size: 0.87rem; color: #444; margin-bottom: 5px; }
.form-control, .form-select {
    border-radius: 10px;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    font-size: 0.92rem;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,35,126,0.1);
    outline: none;
}
.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 30px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-submit:hover {
    background: linear-gradient(135deg, #0d1757, var(--primary));
    transform: translateY(-2px);
}

/* ================================================
   RESULT CARDS
   ================================================ */
.result-hero-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 25px; text-align: center; }
.result-score { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--secondary); line-height: 1; }
.result-name { color: #fff; font-weight: 700; font-size: 1rem; margin: 8px 0 2px; }
.result-exam { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.result-year { background: rgba(255,111,0,0.2); color: var(--secondary); padding: 2px 10px; border-radius: 10px; font-size: 0.75rem; font-weight: 700; display: inline-block; margin-top: 6px; }
.topper-card { background: #fff; border-radius: 16px; padding: 25px; box-shadow: var(--shadow); text-align: center; transition: transform 0.3s; }
.topper-card:hover { transform: translateY(-5px); }
.topper-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; color: #fff; }
.topper-score { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--secondary); }
.topper-name { font-weight: 800; color: var(--primary); }
.rank-badge { background: var(--secondary); color: #fff; padding: 3px 12px; border-radius: 12px; font-size: 0.78rem; font-weight: 700; }
.testimonial-card { background: #fff; border-radius: 14px; padding: 25px; box-shadow: var(--shadow); border-top: 4px solid var(--primary); }
.testimonial-card p { color: #555; font-style: italic; line-height: 1.8; margin-bottom: 15px; }
.stars { color: var(--secondary); font-size: 0.9rem; }

/* ================================================
   TEAM CARDS
   ================================================ */
.team-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; text-align: center; }
.team-card:hover { transform: translateY(-6px); }
.team-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 25px auto 15px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; font-weight: 900; }
.team-card h5 { font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.team-card .role { color: var(--secondary); font-size: 0.85rem; font-weight: 700; margin-bottom: 10px; }
.team-card p { color: #666; font-size: 0.88rem; padding: 0 15px 20px; }
.value-card { background: #fff; border-radius: 14px; padding: 25px; box-shadow: var(--shadow); border-left: 4px solid var(--primary); }
.value-card h6 { font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.value-card p { color: #666; font-size: 0.88rem; margin: 0; }

/* ================================================
   FILTER BUTTONS
   ================================================ */
.filter-btn { background: #f0f2f8; border: none; color: #555; padding: 8px 20px; border-radius: 25px; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; }

/* ================================================
   MAP BOX
   ================================================ */
.map-box { background: #e8eaf6; border-radius: 16px; overflow: hidden; height: 300px; display: flex; align-items: center; justify-content: center; }

/* ================================================
   FOOTER
   ================================================ */
footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 50px 0 20px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 15px; }
.footer-logo span { color: var(--secondary); }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; display: block; margin-bottom: 8px; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--secondary); }
footer h6 { color: #fff; font-weight: 700; margin-bottom: 15px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 30px; padding-top: 20px; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: background 0.2s; }
.social-icon:hover { color: #fff; }

/* ================================================
   HERO (homepage)
   ================================================ */
.hero { background: linear-gradient(135deg, var(--dark) 0%, #1a237e 50%, #283593 100%); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,111,0,0.15) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -20%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(100,149,237,0.1) 0%, transparent 70%); border-radius: 50%; }
.hero-content { position: relative; z-index: 2; }
.hero-badge { background: rgba(255,111,0,0.2); border: 1px solid var(--secondary); color: var(--secondary); padding: 6px 18px; border-radius: 25px; font-size: 0.85rem; font-weight: 700; display: inline-block; margin-bottom: 20px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--secondary); }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 35px; max-width: 520px; }
.btn-hero-primary { background: var(--secondary); color: #fff; padding: 14px 35px; border-radius: 30px; font-weight: 700; font-size: 1rem; border: none; text-decoration: none; display: inline-block; transition: all 0.3s; box-shadow: 0 5px 20px rgba(255,111,0,0.4); }
.btn-hero-primary:hover { background: #e65100; color: #fff; transform: translateY(-2px); }
.btn-hero-outline { border: 2px solid rgba(255,255,255,0.4); color: #fff; padding: 14px 35px; border-radius: 30px; font-weight: 700; font-size: 1rem; text-decoration: none; display: inline-block; transition: all 0.3s; }
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.hero-stats { display: flex; gap: 40px; margin-top: 50px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--secondary); }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.hero-image-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 30px; }
.hero-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.hero-icon-card { background: rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; color: #fff; }
.hero-icon-card i { font-size: 2rem; color: var(--secondary); margin-bottom: 8px; display: block; }
.hero-icon-card p { margin: 0; font-size: 0.85rem; opacity: 0.85; }

/* ================================================
   INQUIRY FORM (homepage)
   ================================================ */
.inquiry-section { background: var(--light); }
.inquiry-card { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.contact-icon { width: 50px; height: 50px; background: #e8eaf6; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { color: var(--primary); font-size: 1.2rem; }

/* ================================================
   ADMIN PANEL CSS
   ================================================ */
.admin-sidebar { width: 260px; background: #0d1757; min-height: 100vh; position: fixed; left: 0; top: 0; z-index: 1000; overflow-y: auto; transition: all 0.3s; }
.admin-main { margin-left: 260px; min-height: 100vh; background: #f0f2f8; }
.admin-topbar { background: #fff; padding: 12px 25px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 999; }
.admin-page-content { padding: 25px; }

/* Admin stat cards */
.stat-card { background: #fff; border-radius: 16px; padding: 22px; display: flex; align-items: center; gap: 20px; box-shadow: 0 2px 15px rgba(0,0,0,0.05); transition: transform 0.2s; }
.stat-card:hover { transform: translateY(-3px); }
.stat-icon { width: 55px; height: 55px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; flex-shrink: 0; }
.stat-value { font-size: 1.8rem; font-weight: 800; color: #333; line-height: 1; }
.stat-label { font-size: 0.85rem; color: #888; font-weight: 600; margin-top: 4px; }
.stat-change { font-size: 0.78rem; color: #4caf50; font-weight: 700; margin-top: 2px; }

/* Admin content cards */
.content-card { background: #fff; border-radius: 16px; box-shadow: 0 2px 15px rgba(0,0,0,0.05); overflow: hidden; }
.content-card-header { padding: 18px 22px; border-bottom: 1px solid #f0f2f8; display: flex; align-items: center; justify-content: space-between; }
.content-card-header h6 { font-weight: 800; margin: 0; color: #333; }
.content-card-body { padding: 20px; }

/* Admin table */
.table-custom { width: 100%; border-collapse: collapse; }
.table-custom th { background: #f8f9fc; color: #555; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; padding: 12px 15px; text-align: left; }
.table-custom td { padding: 12px 15px; border-bottom: 1px solid #f0f2f8; font-size: 0.9rem; color: #444; vertical-align: middle; }
.table-custom tr:hover td { background: #fafbff; }
.table-custom tr:last-child td { border-bottom: none; }

/* Status badges */
.badge-status { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-active { background: #e8f5e9; color: #2e7d32; }
.badge-inactive { background: #fce4ec; color: #c62828; }
.badge-pending { background: #fff3e0; color: #e65100; }
.badge-paid { background: #e8f5e9; color: #2e7d32; }
.badge-partial { background: #e3f2fd; color: #1565c0; }

/* Admin sidebar nav */
.sidebar-nav a { display: flex; align-items: center; gap: 12px; padding: 10px 20px; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; font-weight: 600; border-radius: 8px; margin: 2px 10px; transition: all 0.2s; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(255,255,255,0.1); color: #fff; }
.sidebar-nav a.active { background: #3949ab; }
.sidebar-nav a i { width: 20px; text-align: center; font-size: 1rem; }
.sidebar-section { padding: 15px 15px 5px; color: rgba(255,255,255,0.4); font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.badge-count { background: #ff6f00; color: #fff; border-radius: 10px; padding: 1px 8px; font-size: 0.7rem; margin-left: auto; }

/* Admin topbar elements */
.topbar-icon { width: 38px; height: 38px; background: #f0f2f8; border-radius: 10px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #555; position: relative; }
.topbar-icon:hover { background: #e0e3ef; }
.notif-dot { position: absolute; top: 6px; right: 6px; width: 8px; height: 8px; background: #ff6f00; border-radius: 50%; }
.user-pill { background: #f0f2f8; border-radius: 25px; padding: 6px 15px 6px 6px; display: flex; align-items: center; gap: 8px; cursor: pointer; }
.user-avatar { width: 30px; height: 30px; background: #1a237e; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; }
.user-name { font-size: 0.85rem; font-weight: 700; color: #333; }

/* Admin form styles */
.admin-form-label { font-weight: 700; font-size: 0.87rem; color: #444; margin-bottom: 5px; }
.btn-primary-custom { background: #1a237e; color: #fff; border: none; border-radius: 10px; padding: 10px 25px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.btn-primary-custom:hover { background: #3949ab; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.6rem; }
    .page-hero h1 { font-size: 2rem; }
    section { padding: 55px 0; }
    .section-title { font-size: 1.8rem; }
    .hero-icon-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .btn-hero-outline { margin-left: 0; margin-top: 10px; }
}
