
.container {
    max-width: 100%;
    height: 80vh;
    margin: 0 auto;
}

.container h1 {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    font-size: 50px;
}


.content {
    display: flex;
    /* flex-wrap: wrap; */
    /* gap: 40px; */
    justify-content: center;
    align-items: center;
}
.image {
    width: 55%;
    /* text-align: center; */
}
.text {
    width: 55%;
    padding-right: 10px;
}

.text p {
    font-size: 18px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .container {
        height: auto;
        padding: 20px;
    }

    .container h1 {
        font-size: 32px;
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .content {
        flex-direction: column;
        gap: 20px;
    }

    .image{
        width: 120%;
        margin-right: 80px;
        padding: 0;
    }
    .text {
        width: 100%;
        padding: 0;
    }

    .text p {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
  .content {
    flex-direction: column;    /* Stack image and text */
    padding: 0 10px;
    text-align: center;
  }

  .image {
    width: 100%;               /* Fit phone width */
    margin-bottom: 15px;
  }

  .image img {
    width: 100%;               /* Scale image to screen */
    height: auto;              /* Keep aspect ratio */
  }

  .text {
    width: 100%;
    padding: 0;                /* Remove side padding */
  }

  .container h1 {
    font-size: 24px;           /* Smaller heading */
    margin-bottom: 20px;
    padding-top: 20px;
  }

  .text p {
    font-size: 14px;           /* Reduce text size */
    line-height: 1.4;
  }
}



/* <=================================planning===================================> */

.container-1 {
    max-width: 1050px;
    height: 100vh;
    margin-right:50px;
    position: relative; /* Needed for absolute positioning of image */
    display: flex;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: visible; /* Allow image to overflow outside */
}

.planning {
    flex: 1;
}

.planning h1 {
    font-size: 45px;
    font-weight: lighter;
    margin-bottom: 20px;
    color: #2c3e50;
}

.planning p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-right: 250px;
    margin-right: 50px;
}

.erp-image {
    position: absolute;
    top: 50%;
    right: -275px; /* Move half the image width outside */
    transform: translateY(-50%);
}

.erp-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .container-1 {
        max-width: 100%;
        height: auto;
        margin-right: 0;
        padding: 20px;
        flex-direction: column;
        align-items: center;
    }

    .planning {
        width: 100%;
        text-align: center;
    }

    .planning h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .planning p {
        font-size: 16px;
        line-height: 1.5;
        padding-right: 0;
        margin-right: 0;
    }

    .erp-image {
        position: static;
        transform: none;
        margin-top: 20px;
    }

    .erp-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}
@media (max-width: 480px) {
    .container-1 {
        padding: 10px;
    }

    .planning h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .planning p {
        font-size: 14px;
        line-height: 1.4;
    }

    .erp-image {
        margin-top: 15px;
    }

    .erp-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}




/* <====================================erp section===============================> */
.erp-section {
    max-width: 100%;
    height: 110vh;
    margin: auto;
}

.erp-section h1 {
    font-size: 45px;
    font-weight: 600;
    padding-top: 50px;
    padding-left: 100px;
}

.erp-section h2 {
    font-size: 50px;
    font-weight: 500;
    margin-top: 5px;
    padding-left:100px;
}
.erp-section p {
    font-size: 20px;
    margin-top: 10px;
    padding-left: 100px;
    padding-right: 60px;
}

.content-container-1 {
    display: flex;
    margin-top: 20px;
}

.sidebar {
    width: 350px;
    height: 60vh;
    font-size: 25px;
    margin-left: 140px;
    margin-top: 50px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 10px;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.sidebar li:hover {
    background-color: #f4f4f4;
    color: #007BFF;
}

.sidebar li.active {
    font-weight: bold;
    border-left: 3px solid #007BFF;
    color: #007BFF;
}

.main-content {
  display: flex;
    flex-grow: 1;
    margin-left: 100px;
    margin-top: 20px;
}

.main-content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

.main-content ul {
    list-style: disc inside;
    padding: 0;
    margin-top: 20px;
}


#industry-text > li {
    display: none;
    font-size: 25px;
    margin-left: 90px;
    margin-right: 90px;
    padding-left: 30px;
    padding-right: 30px;
    color: #333;
}
#industry-text > li.active {
    display: block;
} 
@media (max-width: 768px) {
    .erp-section {
        height: auto;
        padding: 20px;
    }

    .erp-section h1,
    .erp-section h2 {
        text-align: center;
        padding-left: 0;
        font-size: 28px;
    }

    .erp-section h2 {
        font-size: 32px;
    }

    .erp-section p {
        font-size: 16px;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .content-container-1 {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .sidebar {
        width: 100%;
        height: auto;
        font-size: 18px;
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }

    .sidebar ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sidebar li {
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .sidebar li.active {
        border-bottom: 3px solid #007BFF;
        font-weight: bold;
        color: #007BFF;
    }

    .main-content {
        flex-direction: column;
        margin-left: 0;
        align-items: center;
        text-align: center;
    }

    .main-content img {
        max-width: 90%;
    }

    .main-content ul {
        margin-top: 15px;
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #industry-text > li {
        font-size: 18px;
        margin-left: 20px;
        margin-right: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 480px) {
    .erp-section {
        padding: 10px;
    }

    .erp-section h1,
    .erp-section h2 {
        font-size: 22px;
    }

    .erp-section p {
        font-size: 14px;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }

    .content-container-1 {
        margin-top: 15px;
    }

    .sidebar {
        font-size: 14px;
        margin-top: 15px;
    }

    .sidebar ul {
        gap: 5px;
    }

    .sidebar li {
        padding: 8px;
    }

    .main-content {
        margin-left: 0;
    }

    .main-content img {
        max-width: 100%;
    }

    .main-content ul {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }

    #industry-text > li {
        font-size: 16px;
        margin-left: 10px;
        margin-right: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }
}




/* <=====================================next page==================================> */

.erp-section-1 {
    max-width: 100%;
    margin: auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.erp-section-1 h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a237e;
}

.erp-section-1 p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}
.content-container-2{
    display: flex;
}

.features-1 {
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    height: 25vh;
    display: flex;
    align-items: flex-start;
    background-color:white;
    border-radius: 8px;
    padding-right: 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.number {
    max-width: 52px;
    width: 100%;
    font-size: 38px;
    font-weight: 600;
    color: #1a237e;
    margin-right: 20px;
    margin-top: 40px;
    margin-left: 10px;
}

.feature-content h3 {
    font-size: 16px;
    margin: 0 0 10px;
    padding-top: 20px;
    font-size: 20px;
    color: #2c3e50;
}

.feature-content p {
    font-size: 25px;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
.image-erp {
    justify-content: center;
    align-items: center;
}

.image-erp img {
    width: 550px;
    height: auto;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .erp-section-1 {
        padding: 20px;
    }

    .erp-section-1 h2 {
        font-size: 28px;
        text-align: center;
    }

    .erp-section-1 p {
        font-size: 16px;
        text-align: center;
        margin-bottom: 20px;
    }

    .content-container-2 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .features-1 {
        margin-right: 0;
        width: 100%;
        gap: 20px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        padding-right: 20px;
        text-align: center;
        height: auto;
    }

    .number {
        margin: 10px 0;
        font-size: 32px;
    }

    .feature-content h3 {
        font-size: 18px;
        padding-top: 10px;
    }

    .feature-content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .image-erp {
        justify-content: center;
        align-items: center;
    }

    .image-erp img {
        width: 100%;
        max-width: 90%;
        height: auto;
    }
}
@media (max-width: 480px) {
    .erp-section-1 {
        padding: 10px;
    }

    .erp-section-1 h2 {
        font-size: 22px;
    }

    .erp-section-1 p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .content-container-2 {
        gap: 15px;
    }

    .features-1 {
        gap: 15px;
    }

    .feature-item {
        padding-right: 10px;
    }

    .number {
        font-size: 28px;
    }

    .feature-content h3 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 12px;
        line-height: 1.3;
    }

    .image-erp img {
        max-width: 100%;
    }
}


/* <===========================================final section===============================> */


.container-3 {
    max-width: 100%;
    height: 140vh;
    margin: 0 auto;
    text-align: center;
    background-color: #f0f8ff;
}

.container-3 h1 {
    padding-top: 50px;
    color: #1a237e;
    font-size: 40px;
}

p.description {
    font-size: 18px;
    text-align: center;
    color: #555;
    max-width: 800px;
    margin: 10px auto 40px;
    line-height: 1.5;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.features {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 10px 0;
}

.feature-card-1 {
    background-color: #fff;
    width: 400px;
    height: 70vh;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    margin-left: 20px;
    text-align: left;
    flex-shrink: 0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.blue { background-color: #1976d2; color: #fff; margin-left: 150px;}
.red { background-color: #d32f2f; color: #fff; margin-left: 150px; }
.yellow { background-color: #fbc02d; color: #fff ;margin-left: 150px; }
.green{ background-color: green; color: #fff; margin-left: 150px;}

.feature-card-1 h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature-card-1 p {
    text-align: center;
    color: #666;
    font-size: 20px;
    line-height: 1.5;
}

.nav-buttons {
    text-align: center;
    margin-top: 20px;
}

.nav-buttons button {
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-buttons button:hover {
    background-color: #1976d2;
    color: #fff;
    border-color: #1976d2;
}
@media (max-width: 768px) {
    .container-3 {
        height: auto;
        padding: 20px;
    }

    .container-3 h1 {
        font-size: 28px;
        padding-top: 20px;
    }

    p.description {
        font-size: 16px;
        padding: 0 20px;
    }

    .features {
        padding: 10px;
        gap: 10px;
    }

    .feature-card-1 {
        width: 50%;
        height: auto;
        margin-left: 0;
        padding: 15px;
    }

    .feature-icon {
        margin-left: 0;
        margin-bottom: 15px;
        font-size: 20px;
    }

    .blue, .red, .yellow, .green {
        margin-left: 0;
    }

    .feature-card-1 h3 {
        font-size: 18px;
    }

    .feature-card-1 p {
        font-size: 16px;
        line-height: 1.4;
    }

    .nav-buttons {
        margin-top: 15px;
    }

    .nav-buttons button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .container-3 {
        padding: 10px;
    }

    .container-3 h1 {
        font-size: 22px;
        padding-top: 15px;
    }

    p.description {
        font-size: 14px;
        padding: 0 10px;
    }

    .slider-container {
        overflow: hidden;
    }

    .features {
        gap: 10px;
        padding: 5px 0;
        transition: transform 0.5s ease;
    }

    .feature-card-1 {
        width: 100%; /* make each card occupy the full container width */
        flex-shrink: 0;
        margin-left: 0;
        padding: 10px;
    }

    .feature-icon {
        font-size: 18px;
        margin-bottom: 10px;
        margin-left: 0;
    }

    .blue, .red, .yellow, .green {
        margin-left: 0;
    }

    .feature-card-1 h3 {
        font-size: 16px;
    }

    .feature-card-1 p {
        font-size: 14px;
        line-height: 1.3;
    }

    .nav-buttons {
        margin-top: 10px;
    }

    .nav-buttons button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
