/*abbout section*/


.mars-about-section {
    padding: 50px 0;
    text-align: center;
    background: transparent; /* Adjust as needed */
    color: white;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.about-heading {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    line-height: 1.4;
    background: linear-gradient(90deg, #C50E57 10.99%, #FEDF67 89.01%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-heading::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 8px;
    background: linear-gradient(90deg, #C50E57 10.99%, #FEDF67 89.01%);
    border-radius: 0;
}

.about-subtext {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    background-image: url('../img/button-bg.png');
    height: 3.5rem; /* Replace with your image path */
    width: 8rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-heading {
        font-size: 1.5rem;
    }

    .about-subtext {
        font-size: 0.9rem;
    }

    .read-more-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}


/*about feature section*/

/* style.css */
.mars-about-feature-section {
    padding: 50px 0;
    text-align: center;
    background: transparent; /* Adjust background as needed */
    color: white;
}

.mars-feature-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.mars-feature-title-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.mars-feature-title-row h2 {
    font-size: 2rem;
}

.mars-feature-icon {
    height: 50px; /* Adjust as needed */
}

.mars-feature-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8rem;
}

.mars-feature-col-60, .mars-feature-col-40 {
    padding: 10px;
}

.mars-feature-col-60 {
    flex: 60%;
}

.mars-feature-col-40 {
    flex: 40%;
    text-align: start;
}

.mars-feature-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(2px 4px 10px #fde276);
}
.feature-about-heading{
    font-size: 2rem;
    background: linear-gradient(90deg, #C50E57 10.99%, #FEDF67 89.01%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

@media (max-width: 768px) {
    .mars-feature-content-row {
        flex-direction: column;
    }

    .mars-feature-col-60, .mars-feature-col-40 {
        width: 100%;
    }
}
