/* DropAI Page Styles */

.dropai-section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.dropai-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO SECTION */
.dropai-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.dropai-button {
    display: inline-block;
    padding: 14px 28px;
    background: #635BFF ;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s ease-in-out;
}

.dropai-button:hover {
    opacity: 0.85;
}

.hero-art {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.hero-art img {
    width: 90%;
    max-width: 450px;
    animation: float 4s infinite ease-in-out;
}

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* FEATURES SECTION */

.features-section {
    text-align: center;
    margin-bottom: 70px;
}

.features-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.feature-card {
    background: #f7f9fb;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    border: 1px solid #e5e5e5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.07);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* CTA BOX */
.cta-box {
    background: #eef5ff;
    padding: 60px 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 60px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
}

.dropai-button.large {
    padding: 16px 40px;
    font-size: 18px;
}
