* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: #ffffff;
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 8rem;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 80px 20px 40px;
}

.content {
    text-align: center;
    color: #2c3e50;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}





.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.hero-section {
    margin-bottom: 3rem;
}

.product-showcase {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-width: 400px;
    max-height: 300px;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #34495e, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.feature i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
}

.notify-section {
    margin-bottom: 3rem;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin: 3rem 0;
}

.knowledge-hub {
    margin-bottom: 4rem;
    text-align: center;
}

.knowledge-hub h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.hub-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.articles-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.article-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 0;
    padding: 1.5rem 0;
    text-align: left;
    transition: none;
    box-shadow: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.article-card:hover {
    transform: none;
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: none;
    background: rgba(255, 215, 0, 0.05);
}

.article-card:last-child {
    border-bottom: none;
}

.article-card.coming-soon {
    background: transparent;
    border-color: rgba(149, 165, 166, 0.2);
    cursor: not-allowed;
    opacity: 0.6;
}

.article-card.coming-soon:hover {
    transform: none;
    border-color: rgba(149, 165, 166, 0.2);
    box-shadow: none;
    background: transparent;
}

.article-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    color: #2c3e50;
    line-height: 1.4;
}

.article-card.coming-soon h4 {
    color: #95a5a6;
}

.article-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    line-height: 1.3;
}

.article-content p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.read-more.coming-soon {
    background: linear-gradient(45deg, #bdc3c7, #95a5a6);
    color: #2c3e50;
    cursor: not-allowed;
    opacity: 0.7;
}

.read-more.coming-soon:hover {
    transform: none;
    box-shadow: 0 3px 10px rgba(149, 165, 166, 0.3);
}

.notify-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.industries-section {
    margin-bottom: 3rem;
}

.industries-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.industry-item i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.industry-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
    text-align: center;
}

.email-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.email-form input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    min-width: 300px;
    background: #ffffff;
    color: #2c3e50;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.email-form input::placeholder {
    color: rgba(44, 62, 80, 0.6);
}

.email-form input:focus {
    outline: none;
    background: #ffffff;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.email-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}







@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(44, 62, 80, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(44, 62, 80, 0.5);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 80px 15px 30px;
        align-items: flex-start;
        padding-top: 100px;
    }
    
    .content {
        padding: 1rem;
        width: 100%;
    }
    
    .header {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        margin-left: 3rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .product-image {
        max-width: 300px;
        max-height: 250px;
    }
    
    .features {
        gap: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
    }
    
    .industry-item {
        padding: 0.75rem;
    }
    
    .industry-item i {
        font-size: 1.3rem;
    }
    
    .industry-item span {
        font-size: 0.85rem;
    }
    
    .knowledge-hub h3 {
        font-size: 2rem;
    }
    
    .articles-grid {
        gap: 0;
    }
    
    .article-card {
        padding: 1.25rem 0;
    }
    
    .article-card h4 {
        font-size: 1.1rem;
    }
    
    .article-content h4 {
        font-size: 1.2rem;
    }
    
    .email-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-form input {
        min-width: 280px;
        margin-bottom: 1rem;
    }
    

}

@media (max-width: 480px) {
    .container {
        padding: 90px 10px 30px;
        padding-top: 110px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 300px;
    }
    
    .industry-item {
        padding: 0.5rem;
    }
    
    .industry-item i {
        font-size: 1.2rem;
    }
    
    .industry-item span {
        font-size: 0.8rem;
    }
    
    .knowledge-hub h3 {
        font-size: 1.8rem;
    }
    
    .hub-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .article-card {
        padding: 1.25rem;
    }
    
    .article-card h4 {
        font-size: 1.1rem;
    }
    
    .article-content h4 {
        font-size: 1.1rem;
    }
    
    .article-content p {
        font-size: 0.9rem;
    }
    
    .read-more {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .email-form input {
        min-width: 250px;
    }
    
    .product-image {
        max-width: 250px;
        max-height: 200px;
    }
} 