/* landing.css */

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #f9f9f9, #fff);
    padding: 60px 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-top: 20px;
    color: #444;
}

.btn-primary-custom,
.btn-secondary-custom {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.btn-primary-custom {
    background-color: #1a237e;
    color: #fff;
}

.btn-primary-custom:hover {
    background-color: #0d1547;
}

.btn-secondary-custom {
    background-color: #f5f5f5;
    color: #1a237e;
    border: 1px solid #1a237e;
}

.btn-secondary-custom:hover {
    background-color: #e3e3e3;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 16px;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.features-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a237e;
}

.feature-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 16px;
    color: #333;
}

.feature-description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
}

.feature-link {
    text-decoration: none;
    color: #1a237e;
    font-weight: 500;
}

.feature-icon {
    color: #1a237e;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 20px;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
}

.form-control {
    border-radius: 6px;
    padding: 10px 12px;
    border: 1px solid #ccc;
}

.btn-submit {
    background-color: #1a237e;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #0d1547;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image {
        margin-top: 30px;
        text-align: center;
    }

    .feature-card {
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }
}
