/* =========================
   HEADER
========================= */

.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    background: #221711;
    
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    min-height:72px;
}

/* =========================
   LOGO
========================= */

.site-logo{
    text-decoration:none;
    color:#111;
    font-size:24px;
    font-weight:700;
}

/* =========================
   DESKTOP NAVIGATION
========================= */

.main-navigation{
    display:flex;
    align-items:center;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:24px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li{
    margin:0;
}

.nav-menu a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
}

/* =========================
   HEADER ACTIONS
========================= */

.header-actions{
    display:flex;
    align-items:center;
    gap:16px;
}

.header-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:12px;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

/* =========================
   MOBILE TOGGLE
========================= */

.mobile-toggle{
    width:42px;
    height:42px;
    border:none;
    background:none;
    padding:0;
    cursor:pointer;

    display:none;
    position:relative;
    z-index:10001;
}

.mobile-toggle span{
    position:absolute;
    left:9px;

    width:24px;
    height:2px;
    background:#fff;
    transition:0.3s ease;
}

.mobile-toggle span:nth-child(1){
    top:13px;
}

.mobile-toggle span:nth-child(2){
    top:20px;
}

.mobile-toggle span:nth-child(3){
    top:27px;
}

/* ACTIVE ICON */

.mobile-toggle.active span:nth-child(1){
    transform:rotate(45deg);
    top:20px;
}

.mobile-toggle.active span:nth-child(2){
    opacity:0;
}

.mobile-toggle.active span:nth-child(3){
    transform:rotate(-45deg);
    top:20px;
}



/* =========================
   HERO SECTION
========================= */

.home-hero{
    background:#f5f3ef;
    padding:70px 0;
}

/* MAIN WHITE BOX */
.hero-box{
    background:#fff;
    border-radius:32px;
    padding:70px;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

/* =========================
   LEFT CONTENT
========================= */

.hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:38px;
    padding:0 16px;
    border-radius:999px;
    background:#fff3e8;
    color:#ff6b00;
    font-size:13px;
    font-weight:600;
    margin-bottom:24px;
}

.hero-content h1{
    font-size:54px;
    line-height:1.05;
    letter-spacing:-2px;
    margin-bottom:24px;
    color:#1a1a1a;
    font-family: sans-serif;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    color:#666;
    margin-bottom:32px;
}

/* =========================
   FEATURES
========================= */

.hero-feature-list{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:36px;
}

.hero-feature-list span{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 18px;
    border-radius:999px;
    border:1px solid #eee;
    background:#fafafa;
    font-size:15px;
    font-weight:500;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons{
    display:flex;
    gap:16px;
    margin-bottom:40px;
}

.primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:58px;
    padding:0 28px;
    border-radius:16px;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:0.3s ease;
}

.primary-btn:hover{
    transform:translateY(-2px);
}

.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:58px;
    padding:0 28px;
    border-radius:16px;
    border:1px solid #ddd;
    color:#111;
    text-decoration:none;
    font-weight:700;
    background:#fff;
}

/* =========================
   STATS
========================= */

.hero-stats{
    display:flex;
    gap:40px;
}

.hero-stat{
    display:flex;
    flex-direction:column;
}

.hero-stat strong{
    font-size:28px;
    line-height:1;
}

.hero-stat span{
    margin-top:6px;
    color:#666;
    font-size:14px;
}

/* =========================
   RIGHT VISUAL
========================= */

.hero-dashboard{
    background:#fafafa;
    border:1px solid #eee;
    border-radius:28px;
    padding:24px;
    min-height:500px;
}

.dashboard-top{
    height:80px;
    border-radius:18px;
    background:#ececec;
    margin-bottom:24px;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.dashboard-card{
    height:140px;
    border-radius:20px;
    background:#f0f0f0;
}

.dashboard-card.large{
    height:200px;
}

.dashboard-card.wide{
    grid-column:span 2;
    height:120px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .hero-box{
        grid-template-columns:1fr;
        padding:50px;
    }

    .hero-content h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .home-hero{
        padding:30px 0;
    }

    .hero-box{
        padding:28px;
        border-radius:24px;
    }

    .hero-content h1{
        font-size:38px;
        line-height:1.15;
    }

    .hero-content p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-stats{
        gap:24px;
        flex-wrap:wrap;
    }

    .hero-dashboard{
        min-height:auto;
    }

}

/* =========================
   MOBILE MENU
========================= */

@media(max-width:768px){

    .mobile-toggle{
        display:block;
    }

    .header-btn{
        display:none;
    }

    .main-navigation{
        position:fixed;
        top:0;
        right:-100%;
        width:300px;
        height:100vh;
        background:#fff;
        padding:90px 24px 40px;
        transition:right 0.35s ease;
        z-index:10000;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        box-shadow:-10px 0 30px rgba(0,0,0,0.08);
    }

    .main-navigation.active{
        right:0;
    }

    .nav-menu{
        flex-direction:column;
        align-items:flex-start;
        width:100%;
        gap:0;
    }

    .nav-menu li{
        width:100%;
        border-bottom:1px solid #f1f1f1;
    }

    .nav-menu a{
        display:block;
        width:100%;
        padding:16px 0;
        font-size:18px;
            color: #2D2520;
    }

    /* OVERLAY */

    body.menu-open{
        overflow:hidden;
    }

    body.menu-open::before{
        content:"";
        position:fixed;
        inset:0;
        background:rgba(0,0,0,0.45);
        z-index:9998;
    }
}



:root{

    --primary:#ff6600;
    --primary-dark:#e75c00;

    --text:#ffffff;

    --border:
        rgba(255,255,255,0.18);
}

/* MAIN BAR */

.abhira-top-strip{

    width:100%;

    background:
        linear-gradient(
            90deg,
            #ff6600,
            #ff6f0f
        );

    position:relative;

    overflow:hidden;

    z-index:5;
}

/* WRAP */

.ats-wrap{

    max-width:1400px;

    margin:auto;

    padding:22px 28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;
}

/* LEFT */

.ats-left{

    max-width:520px;
}

.ats-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-size:15px;

    font-weight:700;

    color:rgba(255,255,255,0.92);

    margin-bottom:10px;
}

.ats-badge::before{

    content:'✦';

    font-size:12px;
}

.ats-left h2{

    color:#fff;

    font-size:32px;

    line-height:1.05;

    letter-spacing:-1px;

    margin:0;

    font-weight:800;
}

/* ICON */

.ats-icon{

    font-size:72px;

    line-height:1;

    opacity:.95;

    animation:floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* STATS */

.ats-stats{

    display:flex;

    align-items:center;

    gap:26px;
}

.ats-stat{

    min-width:170px;
}

.ats-stat strong{

    display:block;

    color:#fff;

    font-size:34px;

    line-height:1;

    margin-bottom:8px;

    font-weight:800;
}

.ats-stat span{

    color:rgba(255,255,255,0.92);

    line-height:1.5;

    font-size:16px;

    display:block;
}

/* DIVIDER */

.ats-divider{

    width:1px;

    height:72px;

    background:var(--border);
}

/* DECORATION */

.abhira-top-strip::before{

    content:'✦';

    position:absolute;

    top:14px;

    left:14%;

    color:rgba(255,255,255,0.25);

    font-size:20px;
}

.abhira-top-strip::after{

    content:'○';

    position:absolute;

    right:18%;

    bottom:12px;

    color:rgba(255,255,255,0.22);

    font-size:22px;
}

/* MOBILE */

@media(max-width:1100px){

    .ats-wrap{

        flex-direction:column;

        text-align:center;
    }

    .ats-left{

        max-width:100%;
    }

    .ats-left h2{

        font-size:34px;
    }

}

@media(max-width:768px){

    .ats-stats{

        flex-direction:column;

        gap:20px;

        width:100%;
    }

    .ats-divider{

        display:none;
    }

    .ats-icon{

        font-size:54px;
    }

    .ats-left h2{

        font-size:28px;
    }

    .ats-stat{

        min-width:auto;
    }

    .ats-wrap{

        padding:24px 20px;
    }

}
