/* Ensure font is applied */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- NAVBAR STYLES --- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.016);
    backdrop-filter: blur(0px);
}

.logo img {
  width: 60px;
  height: 60px;
}

.main-menu {
    display: flex;
    gap: 30px;
}

.main-menu a {
    text-decoration: none;
    color: white;
    margin: 0 15px;
    font-size: 0.9rem;
    font-weight: 400;
    mix-blend-mode: difference;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 4px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    flex-direction: column;
}

.dropdown-menu a {
    color: #333 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: 400;
    font-size: 0.9rem;
    mix-blend-mode: normal !important;
    margin: 0 !important;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
    color: #0bbf8a !important;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    color: white;
}

.header-actions i {
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform .3s ease;
    mix-blend-mode: difference;
}

.header-actions i:hover {
    transform: scale(1.15);
}

.auth-links a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    margin-left: 14px;
    mix-blend-mode: difference;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    width: 0;
    transition: width 0.4s;
    padding: 0;
}

.search-wrapper:hover .search-input {
    width: 100px;
    padding-left: 10px;
}

/* BACKDROP */
/* BACKDROP */
.announcement-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.35s ease;
}

/* MODAL – NEWSPAPER PANEL */
.announcement-modal {
    width: 92%;
    max-width: 820px;
    background: #ffffff;
    color: #111;
    border: 4px solid #000;
    box-shadow:
        10px 10px 0 #000,
        25px 25px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 40px;
    animation: slideUp 0.45s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;

}

/* CLOSE */
.announcement-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

/* TAGLINE */
.announcement-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #000;
    padding: 4px 10px;
    margin-bottom: 16px;
}

/* HEADLINE */
.announcement-content h2 {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

/* SUBTEXT */
.announcement-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 26px;
    text-align: justify;
}

/* TWO COLUMN BODY */
.announcement-columns {
    column-count: 2;
    column-gap: 30px;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* CTA */
.announcement-btn {
    display: inline-block;
    padding: 12px 22px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.announcement-btn:hover {
    background: #000;
    color: #fff;
}

/* FOOTNOTE */
.announcement-footer {
    margin-top: 30px;
    padding-top: 12px;
    border-top: 1px solid #000;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    font-style: italic;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-content {
    padding: 0;
    text-align: left;
    /* KEY FIX */
}

/* TAG */
.announcement-tag {
    margin-bottom: 18px;
}

/* HEADLINE */
.announcement-content h2 {
    margin: 0 0 18px 0;
}

/* INTRO PARAGRAPH */
.announcement-content p {
    margin: 0 0 22px 0;
    max-width: 100%;
}

/* COLUMN BODY */
.announcement-columns {
    column-count: 2;
    column-gap: 36px;
    margin-bottom: 28px;
}

/* CTA ALIGNMENT */
.announcement-btn {
    margin-top: 10px;
}

/* FOOTER */
.announcement-footer {
    margin-top: 36px;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
}


/* --- HERO SECTION STYLES --- */
.hero-section {
    height: 75vh;
    /* Background Image with Dark Overlay */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url("../img/aveng.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 0%;
    color: white;
    position: relative;
}

.tag-box {
    background: #004b7a;
    color: white;
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 50px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    margin-left: 50px;
    color: rgb(255, 255, 255);
}

.hero-desc-wrapper {
    border-left: 3px solid var(--accent);
    padding-left: 25px;
    max-width: 600px;
}

.hero-desc {
    margin-left: 50px;
    font-size: 1rem;
    font-weight: 300px;
    color: #e5e5e5;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    header.scrolled {
        padding: 12px 20px;
    }

    .main-menu {
        display: none;
        /* Hide menu on mobile */
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding-left: 20px;
    }
}

.editorial-cta {
    background: #ffffff;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 90px 20px;
}

.cta-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.cta-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid #000;
    padding: 4px 10px;
}

.cta-left h2 {
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 800;
}

.cta-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    max-width: 520px;
}

/* RIGHT ACTIONS */
.cta-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border: 2px solid #000;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.cta-link i {
    transition: transform 0.25s ease;
}

.cta-link:hover {
    background: #000;
    color: #fff;
}

.cta-link:hover i {
    transform: translateX(4px);
}

/* OUTLINE VARIANT */
.cta-link.outline {
    background-color: #0bbf8a;
    color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-left h2 {
        font-size: 2rem;
    }
}

.contact-details {
    margin-top: 20px;
    padding: 18px;
    border-radius: 12px;
    background: #e8f5e9;
    display: none;
    animation: fadeSlide 0.4s ease;
}

.contact-details p {
    margin: 10px 0;
    font-size: 1rem;
    color: #2d8659;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details a {
    color: #d59500;
    font-weight: 600;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* =========================================
   1. PREMIUM VARIABLES & RESET
   ========================================= */
:root {
    /* Palette: Deep Indigo & Slate */
    --primary: #4f46e5;
    /* Indigo 600 */
    --primary-glow: rgba(79, 70, 229, 0.4);
    --dark: #0f172a;
    /* Slate 900 */
    --text-main: #1e293b;
    /* Slate 800 */
    --text-light: #64748b;
    /* Slate 500 */
    --bg-page: #f8fafc;
    /* Slate 50 */
    --white: #ffffff;
    --border: #e2e8f0;

    /* Font */
    --font-main: 'Plus Jakarta Sans', sans-serif;

    /* Effects */
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-page);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   2. WHY JOIN US (Clean & Modern)
   ========================================= */
.why-us-section {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(79, 70, 229, 0.1);
    padding: 6px 12px;
    border-radius: 30px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 0px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: #eef2ff;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.feature-card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-8deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* =========================================
   3. HERO SECTION (Cinematic)
   ========================================= */
.hero-section {
    height: 80vh;
    width: 100%;
    position: relative;
    background: url('../img/modern-equipped-computer-lab\ \(1\).jpg') center/cover fixed;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(13, 13, 14, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4 rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1 rem;
    opacity: 0.9;
    font-weight: 300;
}


/* =========================================
   4. PREMIUM ROLES GRID
   ========================================= */
.roles-section {
    padding: 100px 0;
    background: var(--bg-page);
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.left-align {
    font-size: 2.5rem;
    margin: 0;
    text-align: left;
}

/* Toggle */
.toggle-wrapper {
    position: relative;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    width: 280px;
    height: 56px;
    background: var(--white);
    border-radius: 50px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    padding: 4px;
}

.label-text {
    width: 50%;
    text-align: center;
    z-index: 2;
    font-weight: 600;
    transition: 0.3s;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 50%;
    height: 48px;
    background: var(--dark);
    border-radius: 50px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.toggle-checkbox:not(:checked)+.toggle-label .lat {
    color: var(--white);
}

.toggle-checkbox:checked+.toggle-label .toggle-slider {
    transform: translateX(100%);
}

.toggle-checkbox:checked+.toggle-label .int {
    color: var(--white);
}

/* Grid */
.job-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    /* border:2px solid red; */
    padding: 10px;
}

.job-grid.active {
    display: grid;
    animation: fadeInUp 0.6s ease;
}

/* Premium Card Design */
.premium-card {
    background: var(--white);
    border-radius: 0px;
    padding: 32px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* border:2px solid blue; */
}

.premium-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-hover);
    border-color: black;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    max-width: 250px;
}

.tags {
    display: flex;
    gap: 10px;
}

.tags span {
    font-size: 0.75rem;
    font-weight: 990;
    background: #ffffff;
    color: black;
    padding: 2px 10px;
    border-radius: 6px;
}

.tags span:hover {
    font-size: 0.75rem;
    font-weight: 990;
    background: #ffffff;
    color: black;
    padding: 2px 10px;
    border-radius: 6px;
}

.tags .highlight {
    background: #fff7ed;
    color: #c2410c;
}

/* Circular Arrow */
.arrow-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: 0.4s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.premium-card:hover .arrow-circle {
    opacity: 1;
    transform: translateX(0);
    background: var(--dark);
    color: var(--white);
}

/* =========================================
   5. MODAL (Glassmorphism & Scroll Logic)
   ========================================= */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-glass {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Scroll Logic: Fix max height */
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.active .modal-glass {
    transform: scale(1);
}

/* Modal Header */
.modal-header {
    background: #f8fafc;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-supertitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: 0.3s;
}

.close-btn:hover {
    color: var(--dark);
    transform: rotate(90deg);
}

/* Modal Body Wrapper */
.modal-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Static Title Area (Inside Body) */
.job-header-static {
    padding: 40px 40px 0 40px;
    flex-shrink: 0;
}

#modalJobTitle {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 5px 0 15px;
}

.modal-tags .pill {
    display: inline-block;
    padding: 6px 14px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 5px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 25px 0;
}

/* SCROLLABLE AREA */
.scroll-area {
    padding: 0 40px;
    margin-bottom: 20px;
    overflow-y: auto;
    flex-grow: 1;
    scroll-behavior: smooth;
    /* Custom Scrollbar */
}

.scroll-area::-webkit-scrollbar {
    width: 6px;
}

.scroll-area::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.scroll-area::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.scroll-area::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.rich-text h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
    margin-top: 20px;
}

.rich-text p,
.rich-text li {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.7;
}

.rich-text ul {
    padding-left: 20px;
}

/* Modal Footer */
.modal-footer {
    padding: 20px 40px 40px 40px;
    background: var(--white);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.btn-primary-glow {
    background: var(--dark);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-glow:hover {
    background: var(--primary);
    box-shadow: 0 10px 20px -5px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.btn-ghost:hover {
    color: var(--dark);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .header-row {
        justify-content: center;
    }

    .left-align {
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .job-header-static,
    .scroll-area,
    .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Footer Styles */
.footer {
    background: #ffffff;
    color: #334155;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid #e5e7eb;
    padding: 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 6% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 48px;
}

.logo-wrap img {
    width: 120px;
    margin-bottom: 20px;
}

.footer-brand h2 {
    font-size: 1.7rem;
    color: #0f172a;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #475569;
    max-width: 320px;
}

.footer h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0f172a;
    text-transform: uppercase;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer a {
    color: #475569;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: #0f172a;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
}

.footer-social a:hover {
    background: #f8fafc;
    color: #098b64;
    border-color: #098b64;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    margin-top: 45px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}