





/*  Features Section */


.features {
  max-width:80%;   
    margin: 0 auto;
    padding: 6rem 2rem;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
  max-width:80%;   
    margin: 0 auto;
}


.feature-card {
    background: #1e1e1e; 
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2c6ba5; 
    box-shadow: 0 2px 6px rgba(44, 107, 165, 0.3);
    color: #ddd; 
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(44, 107, 165, 0.6);
    border-color: #2c6ba5;
}

.banner-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .banner-image {
    transform: scale(1.05);
}

.banner-text {
    padding: 2rem;
}

.banner-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.highlight {
    color: #2c6ba5; 
    font-weight: 700;
}



.feature-card:hover .card-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.feature-card:hover .status-badge {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* end Features Section */







