/*==================================================
    Fresh Factory Operation Control Center
    Version : 2.0
==================================================*/

/*=========================
        ROOT
=========================*/

:root{

    --primary:#166BFF;
    --bg:#F4F8FC;
    --white:#FFFFFF;
    --text:#12305D;
    --border:#E9EEF5;

    --radius:26px;

    --shadow:
    0 10px 35px rgba(0,0,0,.06);

}

/*=========================
        RESET
=========================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    background:var(--bg);

    font-family:'Poppins',sans-serif;

    color:var(--text);

}

img{

    display:block;

    max-width:100%;

}

button{

    cursor:pointer;

    font-family:'Poppins',sans-serif;

}

a{

    text-decoration:none;

}

/*=========================
        APP
=========================*/

.occ-app{

    width:100%;

    max-width:1520px;

    margin:auto;

    padding:22px;

}

/*=========================
      HERO PANEL
=========================*/

.hero-panel{

    background:white;

    border-radius:30px;

    box-shadow:var(--shadow);

    overflow:hidden;

}

/*=========================
        HEADER
=========================*/

.top-header{

    height:110px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 48px;

    border-bottom:1px solid var(--border);

}

.header-left{

    width:220px;

}

.logo{

    width:185px;

}

.header-center{

    flex:1;

    padding-left:28px;

}

.header-center h1{

    font-size:42px;

    font-weight:700;

    color:#12305D;

}

.header-center p{

    margin-top:6px;

    font-size:18px;

    color:#6C7A92;

}

.header-right{

    width:320px;

    display:flex;

    justify-content:flex-end;

}

.clock-card{

    display:flex;

    align-items:center;

    gap:18px;

}

.clock-card i{

    width:58px;

    height:58px;

    border-radius:50%;

    border:3px solid var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    font-size:24px;

}

.clock-card h3{

    font-size:28px;

}

.clock-card span{

    color:#7D8AA2;

}

/*==================================================
                    HERO
==================================================*/

.hero-banner{

  
    position:relative;
    height:360px;
    overflow:hidden;

}

/* Background */

.hero-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

/* White Gradient */

.hero-overlay{

    position:absolute;

    inset:0;

     background:linear-gradient(
        90deg,
        rgba(255,255,255,0.96) 0%,
        rgba(255,255,255,0.90) 18%,
        rgba(255,255,255,0.70) 30%,
        rgba(255,255,255,0.35) 42%,
        rgba(255,255,255,0.10) 52%,
        rgba(255,255,255,0.00) 62%
    );

}

/* Text */

.hero-content{

    position:absolute;

    left:48px;

width:430px;

    top:50%;

    transform:translateY(-50%);

    z-index:5;

}

.hero-content h2{

    font-size:58px;

    font-size:30px;

    line-height:1.08;

    color:#12305D;

}

.hero-content span{

    display:block;

    color:#166BFF;

    margin-top:8px;

}

.hero-content p{

    width:420px;

    margin-top:24px;

    font-size:18px;

    line-height:1.7;

    color:#667892;

}

/*==================================================
                MENU GRID
==================================================*/

.menu-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:22px;

    margin-top:32px;

}
.menu-card{

    position:relative;

    background:#fff;

    border-radius:28px;

    padding:22px;

    min-height:370px;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    box-shadow:

    0 15px 35px rgba(30,60,120,.08);

    transition:.35s;

}


.menu-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 25px 45px rgba(21,107,255,.15);

}
.menu-number{

    position:absolute;

    left:22px;

    top:18px;

    font-size:18px;

    font-weight:700;

    color:#156BFF;

}
.menu-icon{

    width:132px;
    height:132px;

    margin-top:22px;
    margin-bottom:28px;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;

}
.menu-icon::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        #69AEFF,
        #156BFF
    );

    clip-path:polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
    );

    box-shadow:
    0 15px 35px rgba(21,107,255,.35);

}

.menu-icon i{

    position:relative;

    z-index:5;

    color:white;

    font-size:58px;

}
.menu-card h3{

    font-size:22px;

    color:#173A71;

    margin-bottom:18px;

}
.menu-card p{

    font-size:15px;

    color:#6F7F96;

    line-height:1.8;

    text-align:center;

}
.menu-card button{

    margin-top:auto;

    width:100%;

    height:48px;

    border-radius:16px;

    background:white;

    border:1px solid #D9E6FA;

    color:#156BFF;

    font-weight:600;

    transition:.3s;

}


.menu-card button:hover{

    background:#156BFF;

    color:white;

}

/*=========================
        FEATURE
=========================*/

.feature-panel{

    margin-top:28px;

    background:white;

    border-radius:28px;

    padding:28px 36px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    box-shadow:0 12px 35px rgba(30,60,120,.08);

}

.feature-item{

display:flex;

align-items:center;

gap:20px;

}

.feature-item i{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#156BFF;

    font-size:30px;

    background:#F5F9FF;

}

.feature-item h4{

    font-size:20px;

    color:#173D78;

    margin-bottom:6px;

}

.feature-item p{

    color:#6C7A92;

    font-size:15px;

    line-height:1.5;

}

.footer{

width:100%;

display:flex;

justify-content:center;

align-items:center;

margin-top:28px;

margin-bottom:10px;

font-size:15px;

color:#8B97A8;

}