:root {
    --hero-h: 76vh;
    --overlay: rgba(6, 12, 24, 0.45);
    --btn-radius: 8px;
    --dot-size: 12px;
    --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    --font-serif: "Merriweather", serif;
    --hero-fit: contain;
    --accent: #5a2ee8;
}

html,
body {
    background: #ffffff;
    color: #000000;
    font-family: var(--font-sans);
}

h2,
h3,
h4 {
    color: #115bb0;
    font-weight: 600;
    font-family: var(--font-serif);
}

h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.6rem);
    color: #012a48;

}
/* ------------------------------------------------- */
.clean-navbar {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 900;
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 0px 0px 50px;
    height: 70px;
    background-color: #ffffff;
    /* background: linear-gradient(135deg, #fffbe9, #ecda64); */
    /* background: linear-gradient(135deg, #e9efff, #70b3f0); */
    box-sizing: border-box;
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    object-fit: contain;
    /* background-color: white; */
}

.nav-menu {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 55px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #012a48;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.2s;
}

.nav-menu a:hover {
    background-color: #012a48;
    color: white;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-right: 50px;
    /* background: linear-gradient(135deg, #4540a4, #012a48); */
    background: linear-gradient(50deg, #012a48, #0d4872, #012a48);
    border-radius: 1000px 0px 10px 1000px;
    box-sizing: border-box;
}

.signin-btn {
    background: linear-gradient(135deg, #e5c97b, #ffb300);
    border: none;
    padding: 10px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: 0.18s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: white;
}

.signin-btn:hover {
    opacity: 0.92;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 25px;
    color: #042571;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width:992px) {

    /* Keep the menu in DOM (flex) so we can animate children.
       We control visibility with opacity/transform/pointer-events. */
    .nav-menu {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgb(19, 68, 110);
        z-index: 9999;
        flex-direction: column;
        align-items: center;
        /*center items horizontally */
        padding: 8px 0 18px;
        /* vertical padding for touch area */
        box-sizing: border-box;
        gap: 0;
        height: 100vh;
        width: 80%;
        /* start closed */
        opacity: 0;
        transform: translateX(-6%);
        pointer-events: none;
        transition: opacity 360ms cubic-bezier(.2, .9, .25, 1), transform 360ms cubic-bezier(.2, .9, .25, 1);
    }

    /* visually nicer links on mobile */
    .nav-menu a {
        color: white;
        display: block;
        width: 100%;
        text-align: center;
        padding: 40px 20px;
    }

    /* each li stretches full width */
    .nav-menu li {
        width: 100%;
        list-style: none;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        box-sizing: border-box;
        /* starting position for per-item slide animation */
        transform: translateX(-18px);
        opacity: 0;
        /* transition uses per-item delay var --delay set by JS */
        transition: transform 360ms cubic-bezier(.2, .9, .25, 1) var(--delay, 0ms),
            opacity 360ms cubic-bezier(.2, .9, .25, 1) var(--delay, 0ms);
    }

    /* toggle shows the menu and enables pointer-events */
    .nav-menu.open {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        box-shadow: 0 24px 60px rgba(2, 8, 20, 0.14);
        padding-bottom: 200px;
    }

    /* each item when menu open becomes visible and slides to 0 */
    .nav-menu.open li {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-toggle {
        display: block;
        margin-right: 20px;
    }

    .logo {
        width: 110px;
    }

    .nav-right {
        display: none;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brochure Dropdown */
.brochure-dropdown {
    position: relative;
}

.brochure-dropdown > a {
    cursor: pointer;
    text-decoration: none;
    color: #012a48;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
}

/* Dropdown box */
.brochure-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 999;
}

/* Dropdown items */
.brochure-menu li a {
    display: block;
    padding: 10px 18px;
    color: #012a48;
    text-decoration: none;
    font-size: 14px;
}

.brochure-menu li a:hover {
    background: #012a48;
    color: white;
}

/* Hover open (Desktop) */
@media (min-width: 993px) {
    .brochure-dropdown:hover .brochure-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .brochure-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: 0.3s ease;
    }

    .brochure-menu.show {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }

    .brochure-menu li a {
        color: white;
        padding: 16px 20px;
    }

    .brochure-menu li a:hover {
        background: rgba(255,255,255,0.15);
    }
    .brochure-dropdown > a {
        color: white !important;
    }

    .brochure-dropdown {
        border-bottom: none !important;  /* Mobile में border-bottom हटाओ */
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Brochure dropdown ke li ko fixed height do */
    .brochure-dropdown {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Dropdown OPEN hone par parent ki height collapse nahi hogi */
    .brochure-dropdown.open {
        height: auto !important;
    }
}

@media (max-width: 768px){
    .brochure-dropdown > a {
        color: white !important;
    }
}
/* ======================== */
.breadcrumb{
        width:100%;
        padding:15px 40px;
        font-size:14px;
        background:#f8fafc;
        }

        .breadcrumb a{
        text-decoration:none;
        color:#0f172a;
        font-weight:500;
        }

        .breadcrumb a:hover{
        text-decoration:underline;
        }

        .breadcrumb span{
        margin:0 6px;
        color:#64748b;
        }

        #topBtn {
        position: fixed;
        bottom: 90px;
        right: 28px;
        z-index: 99;
        font-size: 18px;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        outline: none;
        background-color: #0f172a;
        color: white;
        cursor: pointer;
        border-radius: 50%;
        transition: transform .25s ease, box-shadow .3s ease;
        }

        #topBtn:hover {
            transform: scale(1.12) translateY(-4px);
        background-color: #334155;
        }

/* ============================ */
/* PRODUCT DROPDOWN */
.product-dropdown {
    position: relative;
}

.product-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 999;
}

/* show main dropdown */
@media (min-width: 993px) {
    .product-dropdown:hover .product-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* submenu */
.sub-dropdown {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    width: 250px;
    padding: 8px 0;
    border-radius: 8px;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: 0.25s ease;
}

/* show subdropdown */
.sub-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* links */
.product-menu li a,
.sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: #012a48;
    text-decoration: none;
}

.product-menu li a:hover,
.sub-menu li a:hover {
    background: #012a48;
    color: white;
}

@media (max-width: 992px) {
    .product-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
    }

    .product-menu.show {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .sub-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
    }

    .sub-menu.show {
        max-height: 500px;
    }

    .product-menu li a,
    .sub-menu li a {
        color: white;
    }
}

/* ======================================== */


/* compact hero for about page */
.mini-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    --hero-height: 320px;
    /* tweak to make smaller/larger */
    height: var(--hero-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-bottom: 8px;
}

/* background image layer (uses your hero image path) */
.mini-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/heroImg-1.png');
    /* replace with your image path */
    background-size: cover;
    background-position: center center;
    filter: contrast(.95) saturate(.9) brightness(.55);
    transform-origin: center;
    z-index: 0;
}

/* darker gradient overlay for legibility */
.mini-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 12, 24, 0.42) 0%, rgba(6, 12, 24, 0.22) 60%);
    z-index: 1;
}

/* content area */
.mini-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    box-sizing: border-box;
}

/* title */
.mini-hero__title {
    margin: 0;
    font-family: "Merriweather", serif;
    color: #ffffff;
    font-size: clamp(1.4rem, 3.4vw, 2.2rem);
    letter-spacing: .02em;
    font-weight: 700;
    text-transform: none;
    text-shadow: 0 8px 24px rgba(3, 10, 25, 0.45);
}

/* breadcrumb pill */
.mini-hero__crumb-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    background: transparent;
}

.mini-hero__crumb,
.mini-hero__crumb-current {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.mini-hero__crumb {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background .18s, transform .12s;
}

.mini-hero__crumb:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.mini-hero__sep {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    margin: 0 6px;
}

/* current crumb style (highlight pill) */
.mini-hero__crumb-current {
    background: linear-gradient(90deg, #0d4fe8, #5a2ee8);
    color: #fff;
    box-shadow: 0 10px 30px rgba(10, 30, 80, 0.18);
}

/* responsiveness: smaller hero on small screens */
@media (max-width: 780px) {
    .mini-hero {
        --hero-height: 160px;
    }

    .mini-hero__title {
        font-size: clamp(1.2rem, 4.6vw, 1.6rem);
    }

    .mini-hero__crumb,
    .mini-hero__crumb-current {
        padding: 8px 12px;
        font-size: 0.88rem;
    }
}

/* Accessibility: focus states */
.mini-hero__crumb:focus {
    outline: 3px solid rgba(90, 46, 232, 0.16);
    outline-offset: 4px;
    border-radius: 10px;
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    z-index: 9999;
    transition: transform .25s ease, box-shadow .3s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .32);
}


/* =============================================== */

/* page container */
.contact-wrap {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 16px 36px;
    box-sizing: border-box;
}

/* grid layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: start;
}

@media (max-width: 980px) {
    .contact-grid {
    grid-template-columns: 1fr;
    }
}

/* LEFT: form container */
.contact-left {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.99));
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.kicker {
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    font-weight: 700;
    font-size: .78rem;
    margin-bottom: 8px;
}

.contact-title {
    font-family: "Merriweather", serif;
    font-size: 1.6rem;
    margin: 6px 0 12px;
    color: var(--accent-2);
}

.lead {
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.meta-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pill {
    background: transparent;
    border: 1px solid rgba(10, 20, 40, 0.04);
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
    color: var(--accent-2);
}

/* form layout */
form {
    border: 1px solid #012a48;
    border-radius: 15px;
    padding: 20px;
}
form .row.g-3>.col-6 {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (max-width:720px) {
    .form-grid {
    grid-template-columns: 1fr;
    }
}

.form-control {
    border-radius: 10px;
    border: 1px solid rgba(10, 20, 30, 0.08);
    padding: 12px 14px;
    box-shadow: none;
    font-size: 0.96rem;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 5px rgba(13, 71, 161, 0.08);
    border-color: var(--accent-2);
}

.btn-send {
    background: #e3e3e4cd;
    color: #120457;
    border: 0;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 18px 48px rgba(13, 71, 161, 0.12);
    cursor: pointer;
}

.btn-send:hover {
    transform: translateY(-3px);
    background: #fbc513;
    color: #ffffff;
}

.btn-ghost {
        background: #33aefa;
    border: 1px solid rgba(10, 20, 40, 0.06);
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.btn-ghost:hover {
    background: #fab833 ;
    color: white;

}

/* RIGHT: big blue info card */
.contact-card {
    background: linear-gradient(180deg, #79a7eb 0%, #061b8f 100%);
    color: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 20px;
    height: max-content;

}

@media (max-width:980px) {
    .contact-card {
    position: static;
    }
}

.card-kicker {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    display: inline-block;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 22px rgba(3, 8, 28, 0.14);
    flex-shrink: 0;
}

.contact-item h5 {
    margin: 0 0 6px;
    font-size: 0.98rem;
    color: #fff;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    /* font-weight: 600; */
    line-height: 1.5;
}

.contact-small {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* SOCIAL */
.socials {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.socials a {
    text-decoration: none;
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social:hover {
    background: #a85ad6;
    transform: translateY(-3px);
}


/* map below */
.map-wrap {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 20, 40, 0.04);
}

.map-iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

/* responsive smaller map on mobile */
@media (max-width:520px) {
    .map-iframe {
    min-height: 260px;
    }
}

/* animations */
.fade-up {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.in-view {
    opacity: 1;
    transform: none;
}

/* focus outlines */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 3px solid rgba(15, 120, 210, 0.10);
    outline-offset: 4px;
    border-radius: 10px;
}

/* small helper */
.muted-small {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 12px;
}

/* =========================================== */
/* ============================================ */

.site-footer {
    background: linear-gradient(135deg, #012a48, #0d4872);
    color: rgba(255, 255, 255, 0.92);
    padding: 50px 0 20px;
    font-family: "Poppins", sans-serif;
}

/* GRID */
.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.5fr 1.6fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* LOGO */
.footer-logo {
    width: 130px;
    background: #fff;
    padding: 6px;
    border-radius: 6px;
}

/* TEXT */
.footer-desc {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

/* HEADINGS */
.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    font-weight: 600;
}

/* LINKS */
.footer-links ul,
.footer-products ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    width: 10px;
}
.footer-products li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-products a,
.footer-contact a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-links a:hover,
.footer-products a:hover,
.footer-contact a:hover {
    color: #fff;
}


/* 🔥 PRODUCTS GRID (3 COLUMNS) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
}

.products-heading{ 
    text-align: center;
    position: sticky;
    top: 0;
    background: #0d4872;
    z-index: 1;
    /* text-decoration: underline; */
}

/* 🔥 SCROLLABLE AREA */
.footer-products {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 5px;
}

/* 🔥 HIDE SCROLLBAR (ALL BROWSERS) */
.footer-products::-webkit-scrollbar {
    width: 0px;
}

.footer-products {
    -ms-overflow-style: none;  /* IE & Edge */
    scrollbar-width: none;     /* Firefox */
}

/* BUTTON */
.btn-download {
    margin-top: 14px;
    display: inline-block;
    background: #a85ad6;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-download:hover {
    background: #8d45bb;
}

/* CONTACT */
.contact-meta div {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* SOCIAL */
.socials {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social:hover {
    background: #a85ad6;
    transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    box-sizing: border-box;
}

.footer-bottom-inner a{
    color: #fff;
    text-decoration: none;
}

.copyright {
    white-space: nowrap;
}

.powered {
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-products {
        max-height: 220px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        row-gap: 8px;
        text-align: center;
    }

    .copyright,
    .powered {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 500px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-products {
        max-height: none; /* remove scroll on mobile */
        overflow: visible;
    }

    .footer-bottom-inner {
        align-items: center;
        text-align: center;
    }
    .copyright,
    .powered {
        width: 100%;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}
