:root {
    --primary-color: #F05423;
    --primary-light: #ff7a52;
    --primary-dark: #d43e0f;
    --accent-color: #6366F1;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FF;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

#preloader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: var(--white);
    z-index: 9999;
}
#preloader .loader{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    transform: translate(-50%, -50%);
}
.logo{
    max-height: 42px;
}
.footer-logo{
    max-height: 36px;
}
.navbar {
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 84, 35, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 84, 35, 0.2);
}

.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(240, 84, 35, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
}

.demo-button:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.demo-button i {
    margin-right: 8px;
    background-color: rgba(240, 84, 35, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* Pricing Section Styles */
.pricing-section {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    border: 1px solid #eaeaea;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
}

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

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

.pricing-features i.fa-times {
    color: #ccc;
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 30px;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
    background-color: var(--white);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(240, 84, 35, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23F05423' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
    padding: 0 30px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-info-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(240, 84, 35, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-text {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    padding: 10px 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(240, 84, 35, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.form-label {
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.invalid-feedback {
    color: #dc3545;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
}

/* Footer Styles */
.footer {
    background-color: #2A2A2A;
    color: #FFFFFF;
    padding: 80px 0 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-description {
    color: #B0B0B0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3A3A3A;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid #3A3A3A;
    color: #B0B0B0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-section {
        padding: 60px 0;
    }
    .hero-image-container {
        margin-top: 40px;
    }
    .pricing-card.popular {
        transform: scale(1);
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    .contact-info-wrapper {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }
    .section-heading {
        font-size: 28px;
    }
    .footer-column {
        margin-bottom: 40px;
    }
    .contact-form {
        padding: 30px 20px;
    }
}
