/* Features Section */

.features-section {
    background: linear-gradient(180deg, #ffffff 0%, #2eacbe33 50%, #ffdb9b33 85%);
}

.features-label {
    font-family: "Manrope";
    font-size: 1.65vw;
    font-weight: 600;
    color: #27aae1;
    line-height: 130%;
    margin-bottom: 10px;
}

.features-title {
    font-family: "Manrope";
    font-size: 3.13vw;
    font-weight: 600;
    color: #211d1a;
    line-height: 130%;
}

.features-desc {
    font-family: "Inter";
    font-weight: 400;
    font-size: 1.39vw;
    color: #404040;
    line-height: 30px;
    margin-top: 10vh;
}

/* Feature Cards */
.feature-cardBG,
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.feature-card {
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent for alternate cards */
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.feature-cardBG::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
}

.feature-cardBG:hover::before,
.feature-card:hover::before {
    transform: scaleX(1);
}

/* .feature-cardBG:hover,
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: #fff;
} */

.featuresIcon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
    border: none;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111315;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #7e7e7f;
    line-height: 1.5;
    margin: 0;
}




/* Contact Section */

.contact-section {
    position: relative;
    overflow: visible;
    background: #1293ec0d;
    /* min-height: 1000px; */
}

.contact-left {
    position: relative;
    z-index: 3;
    max-width: 560px;
}

.contact-image-abs {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90%;
    max-width: 1000px;
    pointer-events: none;
    z-index: 1;
}

.contact-image-abs .contact-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transform: none;
}

@media (max-width: 991.98px) {
    .contact-left {
        max-width: 100%;
        z-index: 2;
        padding: 1.5rem;
    }
}

.contact-label {
    font-size: 1.65vw;
    font-family: "Manrope";
    font-weight: 600;
    line-height: 130%;
    color: #27aae1;
}

.contact-title {
    font-size: 3.13vw;
    font-family: "Manrope";
    font-weight: 600;
    line-height: 130%;
    color: #211d1a;
}

.form-control,
.message-control {
    border: 1px solid #d9d9d9;
    border-radius: 7px;
    width: 44.65vw;
    height: 4.44vh !important;
    padding: 4vh 1vw;
}

.message-control {
    height: 20vh !important;
}

.form-control::placeholder {
    font-size: 1.25vw;
    font-family: "Poppins", sans-serif;
    color: #313131;
}

.message-control::placeholder {
    font-size: 1.25vw;
    font-family: "Poppins", sans-serif;
    color: #313131;
    margin-left: 8vw;
}

.btn {
    background: var(--primary-gradient);
    border-radius: 50px;
    width: 14.79vw;
    height: 4.72vw;
    transition: all 0.3s ease;
    color: #fff;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1vw;
    /* Adjusted for readability */
}

.btn:hover {
    background: linear-gradient(135deg, #1e81b0 0%, #27aae1 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 170, 225, 0.4);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(39, 170, 225, 0.3);
}

/* Navbar Text */
.navbar-text {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    color: var(--primary-color);
    font-size: 2.5rem;
    letter-spacing: 3px;
    line-height: 1;
    margin-left: 10px;
}