@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-gradient: linear-gradient(180deg, #9dcdea 0%, #b8dcef 25%, #d6e9f2 50%, #f1f6f9 100%);
}

body {
    background: #f1f6f9;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #9dcdea 0%, #b8dcef 30%, #d6e9f2 60%, #f1f6f9 100%);
    color: #002158;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #e3edf3;
}

.hero-badge,
.section-label {
    display: inline-block;
    background: #e8f4fa;
    color: #0B3D91;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-white-outline {
    background: transparent;
    color: #111;
    border: 2px solid #4587C6;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    background: #9dcdea;
    color: #fff;
}

/* Main content panel (features, testimonials, etc.) */
.main-panel {
    background: #fff;
    padding: 60px 0 0;
    margin-top: 0 !important;
}

.content-section {
    margin-bottom: 50px;
}

.content-section:last-child {
    margin-bottom: 0;
    background: linear-gradient(180deg, #9dcdea 0%, #b8dcef 30%, #d6e9f2 60%, #f1f6f9 100%);
    padding: 80px 0;
}

.section-header {
    margin-bottom: 40px;
}

.page-subtitle {
    color: #5a6c7d;
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
}

.testimonial-rating {
    margin-bottom: 9px;
}

.quote-icon {
    font-size: 35px;
}

.section-divider {
    border: none;
    border-top: 1px solid #e3edf3;
    margin: 50px 0;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 20px;
    margin: 20px 0;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.btn-white {
    background-color: white;
    color: #111;
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
    color: #002158;
}

.auth-links {
    margin-top: 20px;
}

.auth-links a {
    color: #0B3D91;
    margin: 0 15px;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.auth-links a:hover {
    opacity: 0.8;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 40px;
    color: #0B3D91;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #002158;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.navbar-brand img {
    width: 100px;
}

.navbar-brand {
    color: #0B3D91 !important;
    font-weight: 700;
    font-size: 24px;
}

.navbar-nav .nav-link {
    color: #111 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
}

.feature-card ul li {
    text-align: left;
    padding-bottom: 10px;
}

.feature-card ul {
    min-height: 150px;
}

.navbar-nav .nav-link:hover {
    color: #000000 !important;
    border-bottom: 2px solid #9dcdea;
    border-radius: 0;
    transform: translateY(-1px);
}

/* Navbar Login / Sign Up — same as hero buttons */
.navbar .btn-white,
.navbar .btn-white-outline {
    padding: 10px 24px;
    font-size: 15px;
}

/* Custom Button Styles */
.btn-primary {
    background-color: #0B3D91 !important;
    border-color: #0B3D91 !important;
    color: white !important;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #002158 !important;
    border-color: #002158 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.3);
}

.btn-outline-primary {
    border-color: #0B3D91 !important;
    color: #0B3D91 !important;
    background-color: transparent !important;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: #0B3D91 !important;
    border-color: #0B3D91 !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.3);
}

/* Footer */
footer {
    background: #fff;
    color: #002158;
    padding: 20px 0 10px;
}

footer a {
    color: #0B3D91;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    color: #002158;
    opacity: 0.8;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #0B3D91;
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .page-title {
        font-size: 28px;
    }
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: #0B3D91;
    box-shadow: 0 0 0 0.2rem rgba(11, 61, 145, 0.25);
}

/* Contact Info */
.contact-info {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 24px;
    color: #0B3D91;
    margin-right: 15px;
    width: 30px;
}

.contact-text h5 {
    margin: 0;
    font-weight: 600;
    color: #002158;
}

.contact-text p {
    margin: 0;
    color: #555;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

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

.pricing-card.popular {
    border: 2px solid #0B3D91;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0B3D91;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: #0B3D91;
    margin: 20px 0;
}

.price span {
    font-size: 18px;
    color: #555;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    color: #555;
}

.features-list li i {
    color: #0B3D91;
    margin-right: 10px;
}

.btn-primary-custom {
    background-color: #0B3D91;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    border: none;
    margin-top: 20px;
}

.btn-primary-custom:hover {
    background-color: #092a6b;
    color: white;
}

/* Testimonial Cards */
.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    font-size: 48px;
    color: #0B3D91;
    margin-right: 15px;
}

.author-info h5 {
    margin: 0;
    font-weight: 600;
    color: #002158;
}

.author-info p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.rating {
    margin-top: 5px;
    color: #ffc107;
}

.rating i {
    margin-right: 2px;
}