/* RESET */
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif;}

/* HEADER */
.site-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background: linear-gradient(90deg,#0a3d62,#27ae60);
    color:#fff;
    position:relative;
}
.site-header .logo{font-size:24px;font-weight:bold;}
.site-header .menu{
    display:flex;
}
.site-header .menu a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
    font-weight:500;
}
.site-header .menu a:hover{text-decoration:underline;}

/* MENU TOGGLE MOBILE */
.menu-toggle{
    display:none;
    cursor:pointer;
    font-size:28px;
}
@media(max-width:768px){
    .menu{
        display:none !important; /* Hide by default on mobile */
        flex-direction:column;
        width:100%;
        text-align:center;
        margin-top:10px;
        background: linear-gradient(90deg,#0a3d62,#27ae60); /* same gradient as header */
        border-radius:8px;
        position:absolute;
        top:60px;
        right:0;
        z-index:999;
    }
    .menu.show{
        display:flex !important; /* Show only on toggle click */
    }
    .menu a{
        margin:10px 0;
        padding:10px 0;
        border-bottom:1px solid rgba(255,255,255,0.2);
    }
    .menu-toggle{
        display:block;
        order:2; /* Right side */
    }
}

/* CATEGORY GRID */
.category-section{padding:40px 20px;background:#f4f6f8;}
.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:20px;
    max-width:1200px;
    margin:auto;
}
.category-card{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:140px;
    border-radius:12px;
    color:#fff;
    font-weight:bold;
    font-size:18px;
    text-decoration:none;
    transition:transform 0.3s, box-shadow 0.3s;
    text-align:center;
}
.category-card:hover{
    transform: translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}
/* CATEGORY GRADIENTS */
.category-card:nth-child(1){background: linear-gradient(135deg,#ff7e5f,#feb47b);} /* Travel */
.category-card:nth-child(2){background: linear-gradient(135deg,#6a11cb,#2575fc);} /* Property */
.category-card:nth-child(3){background: linear-gradient(135deg,#43cea2,#185a9d);} /* Hotel */
.category-card:nth-child(4){background: linear-gradient(135deg,#ff512f,#dd2476);} /* Ticket */
.category-card:nth-child(5){background: linear-gradient(135deg,#1f4037,#99f2c8);} /* Shop */
.category-card:nth-child(6){background: linear-gradient(135deg,#f7971e,#ffd200);} /* Finance */
.category-card:nth-child(7){background: linear-gradient(135deg,#c6ffdd,#fbd786);} /* Afan-AI */
.category-card:nth-child(8){background: linear-gradient(135deg,#f953c6,#b91d73);} /* GulfJob */
.category-card:nth-child(9){background: linear-gradient(135deg,#3a1c71,#d76d77);} /* Movie */
.category-card:nth-child(10){background: linear-gradient(135deg,#11998e,#38ef7d);} /* Tools */

.item-image{max-height:80px;margin-bottom:5px;}

/* ITEM DETAILS */
.item-details{max-width:900px;margin:40px auto;padding:20px;background:#f4f6f8;border-radius:12px;text-align:center;}
.item-detail-image{max-width:300px;margin:20px auto;display:block;}
.download-btn{display:inline-block;padding:10px 20px;margin-top:20px;background:#27ae60;color:#fff;border-radius:8px;text-decoration:none;font-weight:bold;}
.download-btn:hover{background:#0a3d62;}

/* ADS */
.ad-box{max-width:800px;margin:30px auto;text-align:center;}

/* FOOTER */
footer{background:#111;color:#fff;text-align:center;padding:20px;margin-top:30px;}
footer p{margin:5px 0;}