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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #002158 0%, #0B3D91 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.1;
    z-index: -1;
}

.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: #0B3D91;
    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: #fff;
    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: 40px;
    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);
}

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

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

.navbar-nav .nav-link:hover {
    color: white !important;
    background-color: #0B3D91;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.2);
}

/* 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: linear-gradient(135deg, #002158 0%, #0B3D91 100%);
    color: white;
    padding: 20px 0 10px;
    margin-top: 40px;
}

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

footer a:hover {
    color: #f8f9fa;
    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;
}