* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: calc(2rem + 2vw);
}

h2 {
    font-size: calc(1.5rem + 1vw);
}

h3 {
    font-size: calc(1.3rem + .6vw);
}

h4, h5 {
    font-size: 1.25rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
}

a:hover {
    opacity: .8;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

input, button, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.display-3 {
    font-size: calc(2rem + 3vw);
    font-weight: 700;
    line-height: 1.1;
}

.display-4 {
    font-size: calc(1.75rem + 2vw);
    font-weight: 700;
    line-height: 1.1;
}

.display-5 {
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    line-height: 1.1;
}

.container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.form-label {
    margin-bottom: .5rem;
    display: inline-block;
}

.form-control {
    display: block;
    width: 100%;
    padding: .825rem 1.1875rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: .625rem;
    transition: border-color .3s ease;
}

.form-control:focus {
    outline: 0;
    border-color: #6366f1;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 0;
    margin-bottom: 0;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0;
    margin-right: .5rem;
    vertical-align: top;
    background-color: #fff;
    border: 2px solid #d1d5db;
    appearance: none;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

.form-check-label {
    cursor: pointer;
    font-size: .95rem;
}

.btn {
    display: inline-block;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    padding: .825rem 1.5rem;
    font-size: 1rem;
    border-radius: .625rem;
    transition: all .3s ease;
}

.btn-action {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    opacity: 1;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #1a1a2e;
    font-weight: 500;
    transition: color .3s ease;
}

.nav-link:hover {
    color: #6366f1;
    opacity: 1;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar > .container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    padding-top: .40625rem;
    padding-bottom: .40625rem;
    margin-right: 1rem;
    font-size: 1.5rem;
    white-space: nowrap;
    font-weight: 700;
    color: #6366f1;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.125rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .625rem;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.collapse:not(.show) {
    display: none;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-block {
    display: inline-block !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-center {
    align-items: center !important;
}

.text-center {
    text-align: center !important;
}

.text-start {
    text-align: left !important;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.overflow-hidden {
    overflow: hidden !important;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.rounded-3 {
    border-radius: .625rem !important;
}

.rounded-4 {
    border-radius: .875rem !important;
}

.rounded-5 {
    border-radius: 1.25rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.z-index-2 {
    z-index: 2 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.mb-3 {
    margin-bottom: .75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 1.25rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem !important;
}

.mb-8 {
    margin-bottom: 2rem !important;
}

.mb-10 {
    margin-bottom: 2.5rem !important;
}

.mb-12 {
    margin-bottom: 3rem !important;
}

.mb-15 {
    margin-bottom: 3.75rem !important;
}

.mt-6 {
    margin-top: 1.5rem !important;
}

.mt-8 {
    margin-top: 2rem !important;
}

.me-3 {
    margin-right: .75rem !important;
}

.me-4 {
    margin-right: 1rem !important;
}

.me-6 {
    margin-right: 1.5rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.p-3 {
    padding: .75rem !important;
}

.p-4 {
    padding: 1rem !important;
}

.p-6 {
    padding: 1.5rem !important;
}

.p-8 {
    padding: 2rem !important;
}

.p-10 {
    padding: 2.5rem !important;
}

.py-3 {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
}

.py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
}

.g-6 > * {
    padding: 1.5rem;
}

.g-8 > * {
    padding: 2rem;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.opacity-90 {
    opacity: .9 !important;
}

.fs-1 {
    font-size: 1.25rem !important;
}

.fs-2 {
    font-size: 1.125rem !important;
}

.fs-3 {
    font-size: 1rem !important;
}

.fs-4 {
    font-size: .95rem !important;
}

.w-40 {
    width: 40% !important;
}

.hero-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
}

.hero-decoration {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(139,92,246,0.15) 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.accent-text {
    color: #fbbf24;
}

.section-bg-1 {
    background-color: #f3f4f6;
}

.section-bg-2 {
    background-color: #fff;
}

.section-bg-3 {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
}

.section-bg-4 {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.section-title-1 {
    color: #6366f1;
}

.section-title-2 {
    color: #1e1b4b;
}

.section-text-muted {
    color: #6b7280;
}

.section-text-dark {
    color: #1a1a2e;
}

.section-light-text {
    color: rgba(255,255,255,0.9);
}

.feature-card {
    background-color: #fff;
    transition: transform .3s ease;
}

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

.feature-border-1 {
    width: 100%;
    height: 6px;
    background-color: #6366f1;
}

.feature-border-2 {
    width: 100%;
    height: 6px;
    background-color: #10b981;
}

.feature-border-3 {
    width: 100%;
    height: 6px;
    background-color: #f59e0b;
}

.icon-box-1 {
    background-color: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.icon-box-2 {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.icon-box-3 {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.link-style-1 {
    color: #6366f1;
}

.link-style-2 {
    color: #10b981;
}

.link-style-3 {
    color: #f59e0b;
}

.icon-circle {
    background-color: #6366f1;
    color: #fff;
}

.accent-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.floating-icon {
    background-color: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.floating-icon-2 {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.floating-icon-3 {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.decoration-left {
    background: rgba(255,255,255,0.05);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.decoration-right {
    background: rgba(255,255,255,0.05);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.card-elevated {
    background: rgba(255,255,255,0.95);
}

.stats-circle {
    width: 120px;
    height: 120px;
    background-color: rgba(99, 102, 241, 0.15);
    border-radius: 50%;
}

.stats-circle-2 {
    width: 120px;
    height: 120px;
    background-color: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
}

.stats-circle-3 {
    width: 120px;
    height: 120px;
    background-color: rgba(245, 158, 11, 0.15);
    border-radius: 50%;
}

.stats-circle-4 {
    width: 120px;
    height: 120px;
    background-color: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
}

.stats-text-1 {
    color: #6366f1;
}

.stats-text-2 {
    color: #10b981;
}

.stats-text-3 {
    color: #f59e0b;
}

.stats-text-4 {
    color: #3b82f6;
}

.bg-cta-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.cta-icon-box {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.cta-text-box {
    background-color: rgba(255,255,255,0.1);
}

.contact-info-card {
    background-color: #f8f9fa;
}

.contact-form-card {
    background-color: #fff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1);
}

.contact-icon-1 {
    color: #6366f1;
}

.footer-section {
    background-color: #1a1a2e;
    color: #fff;
}

.footer-text {
    color: rgba(255,255,255,0.7);
}

.footer-link {
    color: rgba(255,255,255,0.8);
    transition: color .3s ease;
}

.footer-link:hover {
    color: #6366f1;
    opacity: 1;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.1);
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .py-md-25 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .py-lg-12 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-lg-20 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .py-lg-24 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .py-lg-25 {
        padding-top: 6.25rem !important;
        padding-bottom: 6.25rem !important;
    }

    .text-lg-start {
        text-align: left !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}