@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Rubik:wght@300..900&display=swap');

.rubik-<uniquifier> {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}



body * {
    color: #fff;
}

body {
    background-image: url("../../assets/img/banner-1.webp");
    background-attachment: fixed !important;  /* Optional: keeps image fixed on scroll */
    font-family: "Lato", sans-serif !important;
}

.profile-details h4 {
    font-size: 18px;
    margin: 0;
}

.profile-details h5 {
    font-size: 14px;
    margin: 0;
}

.profile-details {
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img {
    background-size: cover !important;        /* Full cover */
    background-position: center !important;   /* Center image */
    background-repeat: no-repeat !important;
    
}

.profile {
    width: 50px;
    height: 50px;
    border-radius: 100px;
}

.profile-box {
  display: flex;
  justify-content: flex-end;
}

header.main-header {
    padding: 20px 0;
    background: #00000063;
}

.user-requests {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; /* space between boxes */
}

.user-request {
    /* border: 1px solid #000; */
    padding: 50px 10px;
    text-align: center;
    border-radius: 5px;
    background: #000;
    border: 1px solid rgb(26 26 26 / 60%);
}

.team {
    height: 300px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
}

.team {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    border-radius: 5px;
    overflow: hidden;
}

.team-contect {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto; /* 👈 2 columns */
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0)
    );
}

.team-text h1,
.team-text h4 {
    margin: 0;
}

.team-btn a {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}


.label {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 30px;
}


.ai-search input {
    background: #00000047;
    border: 1px solid #fff;
    padding: 10px 10px;
    width: 100%;
    border-radius: 5px;
}




.announcement-marquee {
    width: 100%;
    overflow: hidden;
    background: #00000047;
    padding: 20px 0;
    border-radius: 5px;
    border: 1px solid rgb(33 33 33 / 80%);
}

.announcement-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.announcement-item {
    /* min-width: 420px; */
    background: #000000;
    padding: 20px;
    border-radius: 5px;
    width: 200px;
    border: 1px solid rgb(33 33 33 / 80%);
}

.announcement-item h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    /* color: #1f2937; */
}

.announcement-item p {
    margin: 0;
    font-size: 14px;
    /* color: #4b5563; */
    line-height: 1.5;
}

.announcement-date {
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
}


/* Animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.announcement-marquee:hover .announcement-track {
    animation-play-state: paused;
}

.service-requests {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: #00000042;
    border-radius: 5px;
    text-decoration: none;
    /* color: #1f2937; */
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    /* border: 1px solid #eef0f3; */
    background-image: url(https://binghattiweb.imgix.net/web_button_bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgb(255 255 255 / 80%);
    cursor: pointer;
}

.service-card i {
    font-size: 22px;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover {
    /*transform: translateY(-4px);*/
    /*box-shadow: 0 10px 25px rgba(0,0,0,0.12);*/
    background: #fff;
    /*color: #fff;*/
}

.service-card:hover i {
  color: #000;
}

.service-card:hover span {
    color: #000;
}

h3 {
/*    margin: 30px 0 14px;
    font-size: 18px;
    font-weight: 600;*/
}

.popular-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.topic-card {
    display: flex;
    flex-direction: column;      /* icon top, text down */
    align-items: center;
    justify-content: center;
    gap: 10px;                   /* space between icon & text */
    padding: 18px;
    background: #ffffff24;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 140px;
    border-radius: 5px;
    border: 1px solid rgb(57 57 57 / 80%);
}

.topic-card i {
    font-size: 30px;             /* icon bigger */
    line-height: 1;
}

.topic-card span {
    display: block;
}

.topic-card:hover {
    background: #fff;
}

.topic-card:hover i,
.topic-card:hover span {
    color: #000;
}

.team-text h4 {
    font-size: 18px;
}

.user-request h2 {
    margin-top: 10px;
}

.service-card{
    position:relative;
}

/* hidden state */
.service-card .sub-menu{
    position:absolute;
    top:100%;
    left:0;
    background: #000000;
    /* border: 1px solid #000000; */
    padding:10px 15px;
    min-width:220px;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px) scale(0.98);
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
    z-index:10;
    background-image: url(https://binghattiweb.imgix.net/web_button_bg.svg);
    background-repeat: no-repeat;
    background-size: cover !important;
    border: 1px solid rgb(255 255 255 / 80%);
    background-position: center !important;
    border-radius: 5px;
}

/* horizontal menu */
.sub-menu ul{
    display:flex;
    gap:15px;
    list-style:none;
    padding:0;
    margin:0;
    flex-direction: column;
}

.sub-menu ul li a {
    text-decoration:none;
    font-size:14px;
    color: #ffffff;
    white-space:nowrap;
    display: block;
    /* border-bottom: 1px solid #1c1c1c; */
    text-transform: capitalize;
    border-bottom: 1px solid #434343;
}

/* show on hover */
.service-card:hover .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}

@media (max-width: 768px) {
    .user-requests {
        grid-template-columns: 1fr;
    }
    .team-contect {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .team-contect {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}














































/* Cards Grid Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 0;
}

/* Card Styling */
.helpdesk-card {
    background: #000000;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #161616;
    transition: all 0.3s ease;
}

.helpdesk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    margin: 0;
}

/* Card Icons */
.card-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.open-requests .card-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.resolved .card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.request-hold .card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.cancelled .card-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Chart Container */
.chart-container {
    position: relative;
    height: 180px;
    margin-bottom: 20px;
}

/* Chart Legend */
.chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #64748b;
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Metrics Summary */
.metrics-summary {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #313131;
}

.metric-item {
    text-align: center;
    flex: 1;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1e293b;
}

.metric-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 5px;
}

/* Percentage Changes */
.metric-change {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.positive {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.negative {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    z-index: 0;
}

.floating-1 {
    width: 100px;
    height: 100px;
    background: #3b82f6;
    top: -30px;
    right: -30px;
}

.floating-2 {
    width: 70px;
    height: 70px;
    background: #10b981;
    bottom: -20px;
    right: 20px;
}

.floating-3 {
    width: 90px;
    height: 90px;
    background: #f59e0b;
    bottom: -25px;
    left: -25px;
}

.floating-4 {
    width: 60px;
    height: 60px;
    background: #ef4444;
    top: 15px;
    left: -15px;
}

/* Update Indicator */
.update-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #64748b;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .chart-legend {
        gap: 15px;
    }
}







