:root {
    --primary-blue: #007bff;
    --dark-blue: #0056b3;
    --light-gray: #f8f9fa;
    --text-color: #343a40;
    --heading-color: #212529;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --gradient-start: #007bff;
    --gradient-end: #6f42c1; /* Purple tint for modern gradient */
    --bs-font-sans-serif: 'Inter', sans-serif; /* Set Inter as default font */
}

body {
    font-family: var(--bs-font-sans-serif);
    color: var(--text-color);
    background-color: #f0f2f5;
    line-height: 1.6;
}

.text-gradient-blue {
    background: linear-gradient(90deg, #5c677d 0%, var(--primary-blue) 35%, #5c677d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Header/Navigation */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 1.5rem 2rem !important; /* Ensure sufficient padding */
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue) !important;
}

.nav-link.active {
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.hero-section .action-button {
    background-color: #fff;
    color: var(--primary-blue);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-section .action-button:hover {
    background-color: var(--light-gray);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Form Section */
.card {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

.form-control-lg {
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-size: 1.1rem;
}

.progress-lg {
    height: 35px; /* Adjust height for better visibility */
    border-radius: 8px;
    background-color: var(--light-gray);
    overflow: hidden; /* Ensure inner bar respects border-radius */
}

.progress-bar {
    background-color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-align: center;
    transition: width 0.6s ease-in-out;
    display: flex; /* Center text vertically */
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-1px);
}

/* Feature/Pricing Cards */
.card-deck .card {
    margin-bottom: 1.5rem;
}

.pricing-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.pricing-section .card-header {
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.pricing-section .card-body {
    padding: 2rem;
}

.pricing-section .card-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-section ul {
    list-style: none;
    padding-left: 0;
}

.pricing-section ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.pricing-section .btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.pricing-section .btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}
.pricing-section .btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Animated Slogan */
.animated-text-glow {
    color: var(--primary-blue);
    text-shadow: 0 0 0.2em var(--primary-blue-light), 0 0 0.6em var(--primary-blue-light), 0 0 1em var(--primary-blue-light);
    animation: glow 4s linear infinite alternate;
}

@keyframes glow {
    0% { text-shadow: none; }
    50% { text-shadow: 0 0 0.2em rgba(0, 123, 255, 0.7), 0 0 0.6em rgba(0, 123, 255, 0.5), 0 0 1em rgba(0, 123, 255, 0.3); }
    100% { text-shadow: none; }
}

/* Recently Added Section */
.jumbotron {
    background: linear-gradient(45deg, var(--info-color), #21d4fd); /* A nice light blue gradient */
    border-radius: 12px !important;
    padding: 3rem !important;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.jumbotron h3 {
    font-weight: 700;
}

.jumbotron a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.jumbotron a:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: #f8f9fa; /* Light background */
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    border-top: 1px solid #e9ecef;
    font-size: 0.95rem;
}

footer .list-unstyled li {
    display: inline-block;
}

footer .list-unstyled a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

footer .list-unstyled a:hover {
    color: var(--primary-blue);
}

footer .social-icons .fab {
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

footer .social-icons .fab:hover {
    color: var(--primary-blue);
}

/* Utility classes */
.fw-semibold {
    font-weight: 600;
}
.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Custom switch (from original, kept for compatibility if re-enabled) */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    vertical-align: middle;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-blue);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-blue);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .hero-section .action-button {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
    }
    .pricing-section .card-title {
        font-size: 2rem;
    }
    .jumbotron h3 {
        font-size: 2rem;
    }
    .jumbotron {
        padding: 2rem !important;
    }
    footer .list-unstyled {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}