/* =========================================
   DASHBOARD FIRST SECTION
========================================= */

:root {
    --primary-color: #ff6d00;
    --text-dark: #111111;
    --text-light: #444444;
}

/* Main Container */
.dashbordfirstsec {
    display: flex;
    align-items: center;
    justify-content: center;
    width:1400px;
    padding: 80px 60px;
  
    background: #ffffff;
}

/* =========================================
   LEFT CONTENT
========================================= */





.description-dot{


    text-align:start

}














.dashboard-left {
    flex: 1;
}

/* Heading */
.dashboard-heading {
    text-align:start;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    max-width: 650px;
    margin-bottom: 30px;
}

.highlight-big {
    font-size: 48px;
}

.highlight {
    color: var(--primary-color);
}

/* =========================================
   FEATURES LIST
========================================= */

.features-list {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* =========================================
   RIGHT IMAGE
========================================= */

.dashboard-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    display: block;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    /* Hover Animation */
    .image-container img:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
    }

/* =========================================
   RESPONSIVE DESIGN
========================================= */



/* Mobile */
@media (max-width: 600px) {

    .Accesinfo-cards {
        display: flex;
        flex-direction:column;
        gap: 20px;
    }


    .dashbordfirstsec {
        flex-direction: column;
        padding: 40px 10px;
        gap: 40px;
        width: 300px;
    }

    .dashboard-heading {
        font-size: 12px;
    }

    .highlight-big {
        font-size: 26px;
    }

    .feature-item {
        font-size: 14px;
    }

    .image-container img {
        max-width: 100%;
    }
}


.Accesinfo-cards{
    display:flex;
    gap:20px;
}



/* =========================================
   WRAPPER BACKGROUND SECTION
========================================= */

.ai-dashboard-wrapper {
    background-image: url("../images/background/testbg2.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    width: 100%;
}

/* =========================================
   FIRST INFO SECTION
========================================= */

.secinfo {
    text-align: center;
    margin-bottom: 80px;
}

.secinfo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.secinfo-title {
    font-size: 32px;
    color:white;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.secinfo-description {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    word-spacing: 1px;
    font-weight: 400;
    text-align: left;
}

/* =========================================
   ESENZ AI SECTION
========================================= */

.esenz-ai-section {
    max-width: 1200px;
    margin: 0 auto;
  
}

.esenz-ai-title {
    font-size: 32px;
    color: white;
    
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.esenz-ai-content {
    display: flex;
    align-items: center;
    color: white;
    gap: 60px;
}

/* Image Block */
.tv-dashboard-image {
    width: 520px;
    height: 400px;
    background-image: url("../images/dashboardImage/esenzaichat.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .tv-dashboard-image:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.15);
    }

/* Text Block */
.esenz-ai-text {
    flex: 1;
}

    .esenz-ai-text h4 {
        font-size: 18px;
        line-height: 1.8;
        font-weight: 400;
        margin: 0;
        text-align: left;
    }



/* Mobile */
@media (max-width: 600px) {
    .esenz-ai-content {
        flex-direction: column;
        gap: 40px;
        margin-right:20px;
        text-align: center;
    }

    .secinfo-description {
        text-align: start;
    }

    .tv-dashboard-image {
        width: 100%;
        max-width: 500px;
        height: 350px;
    }

    .esenz-ai-text h4 {
        text-align: start;
    }
    .secinfo-container {
        max-width:500px;
        margin-right: 5px;
    }


    .secinfo-title,
    .esenz-ai-title {
        font-size: 18px;
    }

    .secinfo-description,
    .esenz-ai-text h4 {
        margin-right:30px;
        font-size: 12px;
    }

    .tv-dashboard-image {
        height: 250px;
    }

    .ai-dashboard-wrapper {
        background-attachment: scroll;
    }
}