.font-switzer {
    font-family: 'Switzer';
}

/***** COLORS *******/
.bg-yellow {
    background-color: #faf999;
}






/* Hero Section Styles */
@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Light.eot');
    src: url('../fonts/Switzer-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Switzer-Light.woff2') format('woff2'),
        url('../fonts/Switzer-Light.woff') format('woff'),
        url('../fonts/Switzer-Light.ttf') format('truetype'),
        url('../fonts/Switzer-Light.svg#Switzer-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Regular.eot');
    src: url('../fonts/Switzer-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Switzer-Regular.woff2') format('woff2'),
        url('../fonts/Switzer-Regular.woff') format('woff'),
        url('../fonts/Switzer-Regular.ttf') format('truetype'),
        url('../fonts/Switzer-Regular.svg#Switzer-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Medium.eot');
    src: url('../fonts/Switzer-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Switzer-Medium.woff2') format('woff2'),
        url('../fonts/Switzer-Medium.woff') format('woff'),
        url('../fonts/Switzer-Medium.ttf') format('truetype'),
        url('../fonts/Switzer-Medium.svg#Switzer-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Semibold.eot');
    src: url('../fonts/Switzer-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Switzer-Semibold.woff2') format('woff2'),
        url('../fonts/Switzer-Semibold.woff') format('woff'),
        url('../fonts/Switzer-Semibold.ttf') format('truetype'),
        url('../fonts/Switzer-Semibold.svg#Switzer-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Extrabold.eot');
    src: url('../fonts/Switzer-Extrabold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Switzer-Extrabold.woff2') format('woff2'),
        url('../fonts/Switzer-Extrabold.woff') format('woff'),
        url('../fonts/Switzer-Extrabold.ttf') format('truetype'),
        url('../fonts/Switzer-Extrabold.svg#Switzer-Extrabold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Black.eot');
    src: url('../fonts/Switzer-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Switzer-Black.woff2') format('woff2'),
        url('../fonts/Switzer-Black.woff') format('woff'),
        url('../fonts/Switzer-Black.ttf') format('truetype'),
        url('../fonts/Switzer-Black.svg#Switzer-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.insights-list {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: stretch start;
}

.insights-list div:first-child {
    grid-area: span 2 / span 1 / span 2 / span 1;
}

.insights-list div:nth-child(3) {
    grid-area: span 2 / span 1 / span 2 / span 1;
}

#accordion-collapse button[aria-expanded="true"] {
    background-color: transparent;
    color: #fff;
}

#accordion-collapse button img {
    height: 32px;
}

#accordion-collapse button[aria-expanded="true"] img {
    rotate: 45deg;
}

.menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    padding-right: 0; 
}

.menu-icon-line-top {
    background-color: #000;
    border-radius: .0625rem;
    width: 32px;
    height: 3px;
    margin-bottom: 4px;
    padding-bottom: 0;
    padding-right: 0;
    transform: translate3d(0px, 0rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: all 0.3s ease-in-out;
}

.menu-icon-line-bottom {
    background-color: #000;
    border-radius: 1px;
    width: 32px;
    height: 3px;
    margin-top: 4px;
    padding-bottom: 0;
    padding-right: 0;
    transform: translate3d(0px, 0rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: all 0.3s ease-in-out;
}

.menu-icon.active .menu-icon-line-top {
    transform: translate3d(0px, 0.5rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(45deg) skew(0deg, 0deg);
    transition: all 0.3s ease-in-out;
}

.menu-icon.active .menu-icon-line-bottom {
    transform: translate3d(0px, -0.1875rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) skew(0deg, 0deg);
    transition: all 0.3s ease-in-out;
}
.menu-inner { 
    background: #000;
    position: absolute;
    left: 0;
    top: 80px;
    transform: translate(0, -100%);
    transition: all 0.3s ease-in-out;
}
.menu-inner.active{ 
    transform: translate(0, 0);
    transition: all 0.3s ease-in-out;
}

/**** ABOUT ****/
.about-img{
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: stretch stretch;
}
.about-img-box{
    grid-area: span 2 / span 2 / span 2 / span 2;
}

/* Hero Section Styles */

.text-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* width: 80%; */
    /* max-width: 800px; */
    height: auto;
    min-height: 400px;
    max-height: 80vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Hero sections with background cover */
.hero-section.bg-cover .mega-title {
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-section.bg-cover .description {
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.description {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a4a4a;
}

/* Card Styles */
.feature-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.use-case-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    overflow-y: auto;
    white-space: normal;
    word-wrap: break-word;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.use-case-card p {
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Layout and Spacing */
/* @media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
} */

.feature-card,
.use-case-card {
    padding: 2rem;
}

.grid {
    justify-content: center;
}

/* Dashboard Layout */
.dashboard-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    background-color: white;
    padding: 0.5rem;
    border-right: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo img {
    height: 40px;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin-bottom: 0rem;
}

.menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
}

.menu li.active a {
    background-color: #f5f5f5;
    color: #333;
}

/* Main Content Styles */
.main-content {
    padding: 2rem;
    background-color: #f9f9f9;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Analytics Cards */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-trend.positive {
    color: #34D399;
}

.stat-trend.negative {
    color: #EF4444;
}

/* Charts Section */
.charts-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.line-chart,
.donut-chart {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Products Table */
.products-table {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

/* User Profile */
.user-profile {
    margin-top: auto;
    margin-left: 0;
    padding: 2rem 0;
    border-top: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logout-btn {
    padding: 0.5rem 1rem;
    background-color: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Add this new style for the hero content background */
.hero-content-bg {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0));
    padding: 3rem;
}

@media screen and (max-width: 767px){
    .insights-list div:first-child {
        grid-area: inherit;
    }
    .insights-list div:nth-child(3) {
        grid-area: inherit;
    }
    .insights-list {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
        grid-auto-columns: 1fr;
        place-items: stretch start;
    }
  }
  @media screen and (max-width: 635px){
    .menu-inner { 
        top: 70px; 
    }
    #accordion-collapse button img {
        height: 18px;
    }
    .about-img{
        grid-template-columns: 1fr;
    } 
  }