* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    background-color: #1e272e; /* Dark background */
    color: #eee; /* Light text color for contrast */
}

.container {
    width: 100%;
    margin: 0 auto;
}

.feature-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    background: #273c4e; /* Darker section background */
    scroll-snap-align: start; /* For scroll snapping */
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-text h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #eee; /* Light heading color */
}

.feature-text p {
    font-size: 1.1em;
    color: #ddd; /* Slightly lighter paragraph text */
    line-height: 1.8;
}

.feature-image {
    /* background: #2c3e50;  */
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #999;
}

@media (max-width: 768px) {
    .feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-text h2 {
        font-size: 2em;
    }

    .feature-image {
        height: 360px;
        overflow: hidden;
    }
}
.feature-image img
{
    width: 100%;
    height: 360px;
   
    object-fit: cover;
    border-radius: 10px;
}
.logo
{
    display: block;
    text-decoration: none;
}
.logo img
{
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-right:12px;
    position: relative;
    vertical-align: middle;
    margin-left:40px;
    border-radius:10px;
    top:-2px;
}
.log span{
    height:32px;
    line-height: 32px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
