/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffeb3b;
    padding: 20px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-bottom: 10px solid #000000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation styles */
.navigation {
    margin-left: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 24px;
    border: 2px solid #333;
    border-radius: 8px;
    background-color: #333;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links a:hover {
    background-color: transparent;
    color: #333;
}

.logo {
    height: 160px;
    width: auto;
    display: block;
}

/* Slider section */
.slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.desktop-slider {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.mobile-slider {
    display: none;
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 0 auto;
}

/* Content container */
.content-container {
    background-color: #fff;
    min-height: 400px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Two column layout */
.two-column-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    min-height: 300px;
}

.left-column {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.right-column {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
}

.box-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.machine-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.machine-image:last-child {
    margin-bottom: 0;
}

.coming-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-align: left;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.right-column p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: #555;
    text-align: left;
}

.right-column h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 25px 0 15px 0;
    text-align: left;
}

.right-column ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.right-column li {
    margin: 0 0 8px 0;
    line-height: 1.5;
    color: #555;
}

.right-column ul ul {
    margin: 5px 0;
    padding-left: 20px;
}

.right-column table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 0.9rem;
}

.right-column th,
.right-column td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.right-column th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
}

.right-column td {
    color: #555;
}

/* Clickable images */
.clickable-image {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clickable-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffeb3b;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.modal-caption {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 15px;
    padding: 0 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive design */
@media (max-width: 768px) {
    .desktop-slider {
        display: none;
    }
    
    .mobile-slider {
        display: block;
    }
    
    .header-container {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        height: 160px; /* Double size for mobile */
    }
    
    .navigation {
        margin-left: 0;
        width: 100%;
    }
    
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .two-column-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .left-column,
    .right-column {
        flex: 1;
        width: 100%;
    }
    
    .left-column {
        order: 2; /* Image comes second on mobile */
    }
    
    .right-column {
        order: 1; /* Text comes first on mobile */
        padding: 15px;
    }
    
    .coming-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .right-column p,
    .right-column h3 {
        text-align: center;
    }
    
    .right-column ul {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 70px; /* Even smaller on very small screens */
    }
    
    .content-container {
        padding: 20px 15px;
    }
    
    .coming-heading {
        font-size: 1.8rem;
    }
    
    .right-column {
        padding: 10px;
    }
    
    .modal-content {
        width: 95%;
        max-width: none;
    }
    
    .close {
        top: -30px;
        font-size: 30px;
    }
    
    .modal-caption {
        font-size: 1rem;
        margin-top: 10px;
    }
}

/* Footer styles */
footer {
    background-color: #ffeb3b;
    border-top: 10px solid #000000;
    padding: 20px 0;
    margin-top: 40px;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.copyright {
    margin: 0;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}
