/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary: #FA8530;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

.alert {
    padding: 15px 20px;
    margin: 0;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

#messageContainer {
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
}

    /* Scrollbar styling for error container */
    #messageContainer::-webkit-scrollbar {
        width: 6px;
    }

    #messageContainer::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    #messageContainer::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
    }

        #messageContainer::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

a {
    color: #FA8530;
}

    a:hover {
        color: #3b8af2;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
}

.faq-card {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-toggle {
    width: 100%;
    text-align: left;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding-left: 35px;
    text-decoration: none !important;
}

.faq-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: 0.3s ease;
    font-size: 14px;
}

    .faq-arrow.open {
        transform: translateY(-50%) rotate(180deg);
    }

.faq-question {
    display: inline-block;
    padding-left: 10px;
}

.card-body {
    padding: 15px 20px;
    background: #fff;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.card-header {
    background: #f9f9f9;
    padding: 12px 20px;
}

.contact-benefits {
    background: #ffffff;
    border-radius: 16px;
    padding:30px;
    padding-bottom:80px;
    border: 1px solid rgba(237,136,25,0.25);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-benefits:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 55px rgba(0,0,0,0.12);
    }

    /* Heading */
    .contact-benefits h3 {
        font-size:28px;
        font-weight: 700;
        margin-bottom: 35px;
        color: #fff;
    }

        .contact-benefits h3 span {
            color: #ed8819;
        }

/* Benefit Items */
.benefit-item {
    display: flex;
    cursor:pointer;
    align-items: flex-start;
    background: #fff7f0;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

    .benefit-item:hover {
        background: #ffffff;
        box-shadow: 0 10px 25px rgba(237,136,25,0.18);
        transform: translateY(-3px);
    }

    /* Icon */
    .benefit-item i {
        min-width: 42px;
        height: 42px;
        background: linear-gradient(135deg, #ed8819, #fa9b45);
        color: #ffffff;
        border-radius: 50%;
        font-size: 1.15rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        margin-top: 2px;
    }

    /* Text */
    .benefit-item p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: #444;
        font-weight: 500;
    }

/* Mobile Optimization */
@media (max-width: 767.98px) {
    .contact-benefits {
        padding: 30px 20px;
    }

        .contact-benefits h3 {
            font-size: 1.55rem;
            margin-bottom: 25px;
        }

    .benefit-item {
        padding: 14px 15px;
    }

        .benefit-item p {
            font-size: 0.95rem;
        }
}


/* About Section */
.about-section {
    background: #ffffff;
    position: relative;
    padding: 0;
}

/* Section Header */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
}

    .section-title h2 {
        font-size: 2.8rem;
        font-weight: 800;
        color: #2d3748;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }

    .section-title h3 {
        font-size: 1.3rem;
        color: #333;
        font-weight: 500;
    }

/* About Image - Full Width */
.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    margin-bottom: 0;
}

        .about-content .row > div {
            padding: 0;
        }

/* Card Styles - Feature Card Style */
.about-card {
    cursor:pointer;
    background: #ffffff;
    padding: 45px 40px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f1f1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

    /* Animated top border */
    .about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #FF6B35, #F7931E);
        border-radius: 20px 20px 0 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .about-card:hover::before {
        transform: scaleX(1);
    }

    .about-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
        border-color: #FF6B35;
    }

/* Alternate card style */
.about-card-alt {
    background: #f8f9fa;
    border-color: #e9ecef;
}

    .about-card-alt:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        border-color: #FF6B35;
    }

/* Icon Container */
.about-icon-wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.about-card:hover .about-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.about-icon-wrapper-alt {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    box-shadow: 0 8px 20px rgba(45, 55, 72, 0.3);
}

.about-card-alt:hover .about-icon-wrapper-alt {
    box-shadow: 0 12px 30px rgba(45, 55, 72, 0.4);
}

.about-icon {
    font-size: 2.2rem;
    color: #ffffff;
}

/* Content Area */
.about-card-content {
    flex: 1;
    text-align: center;
}

/* Title */
.about-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2d3748;
    line-height: 1.3;
}

/* Divider */
.title-divider {
    display: none;
}

/* Text */
.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748b;
    margin: 0;
}

/* CTA Section */
.cta-container {
    padding: 80px 15px;
    background: #ffffff;
}

.cta-box {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 70px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

    .cta-box h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .cta-box p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 35px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
        color: #ffffff;
    }

/* Responsive */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 2.2rem;
    }

    .about-card {
        padding: 60px 40px;
        min-height: 350px;
    }

    .cta-box {
        padding: 60px 40px;
    }

        .cta-box h2 {
            font-size: 2rem;
        }
}

@media (max-width: 768px) {
    .about-content {
        padding: 60px 0;
    }

        .about-content .row {
            padding: 0 20px;
            grid-template-columns: 1fr;
        }

    .section-title {
        padding-top: 40px;
    }

        .section-title h2 {
            font-size: 1.9rem;
        }

        .section-title h3 {
            font-size: 1.1rem;
        }

    .about-img {
        height: 350px;
    }

    .about-card {
        padding: 40px 30px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .about-card-content {
        text-align: center;
    }

    .about-title {
        font-size: 1.7rem;
    }

    .about-text {
        font-size: 1.05rem;
    }

    .cta-box {
        padding: 50px 30px;
    }

        .cta-box h2 {
            font-size: 1.8rem;
        }

        .cta-box p {
            font-size: 1.05rem;
        }
}

@media (max-width: 576px) {
    .about-content .row {
        padding: 0 15px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .about-img {
        height: 250px;
    }

    .about-card {
        padding: 35px 25px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .about-card-content {
        text-align: center;
    }

    .about-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .about-icon {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 16px 30px;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }
}

/* Pricing Section */
.pricing-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    /* Decorative background */
    .pricing-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        z-index: 0;
        clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    }

.pricing-content {
    position: relative;
    z-index: 1;
}

/* Header Styles */
.pricing-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 0;
}

/* Features Box */
.features-highlight-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f1f1;
    position: relative;
    overflow: hidden;
}

    .features-highlight-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #FF6B35, #F7931E);
    }

.features-highlight-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.feature-check-icon {
    color: #FF6B35;
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
}

/* Pricing Cards */
.pricing-plan-card {
    cursor:pointer;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: 2px solid #f1f1f1;
    position: relative;
}

    /* Animated top line effect */
    .pricing-plan-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #FF6B35, #F7931E);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
        z-index: 1;
    }

    .pricing-plan-card:hover::before {
        transform: scaleX(1);
    }

    .pricing-plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
        border-color: #FF6B35;
    }

/* Featured Card */
.pricing-plan-card-featured {
    border: 3px solid #FF6B35;
    position: relative;
}

    .pricing-plan-card-featured::before {
        transform: scaleX(1);
        height: 5px;
        background: linear-gradient(90deg, #FF6B35, #F7931E);
    }

    .pricing-plan-card-featured:hover::before {
        background: linear-gradient(90deg, #F7931E, #FF6B35);
    }

.popular-label {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-plan-header {
    padding: 40px 30px 20px;
    text-align: center;
}

.pricing-plan-card-featured .pricing-plan-header {
    padding-top: 30px;
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.plan-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.plan-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B35;
    line-height: 1.2;
}

.plan-price-old {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e74c3c;
    background: linear-gradient(135deg, #ffe6e6 0%, #ffd4d4 100%);
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: line-through;
    text-decoration-thickness: 2.5px;
    text-decoration-color: #c0392b;
    display: inline-block;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.15);
}

.pricing-plan-body {
    padding: 20px 30px 40px;
    text-align: center;
}

.trial-offer-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    cursor: pointer;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
}

    .trial-offer-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    }

    .trial-offer-badge a {
        color: #fff;
        text-decoration: none;
        display: block;
    }

        .trial-offer-badge a:hover {
            color: #fff;
            text-decoration: none;
        }

    .trial-offer-badge i {
        margin-right: 8px;
    }

.cancel-info-text {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Button */
.btn-plan {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(45, 55, 72, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .btn-plan:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        color: #fff;
        text-decoration: none;
        border-color: #FF6B35;
        background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    }

    .btn-plan i {
        transition: transform 0.3s ease;
    }

    .btn-plan:hover i {
        transform: translateX(5px);
    }

/* Responsive Styles */
@media (max-width: 991px) {
    .pricing-main-title {
        font-size: 2rem;
    }

    .features-highlight-box {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .pricing-main-title {
        font-size: 1.75rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    .features-highlight-box {
        padding: 25px 20px;
    }

    .features-highlight-title {
        font-size: 1.1rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    .pricing-plan-header {
        padding: 30px 20px 15px;
    }

    .pricing-plan-body {
        padding: 15px 20px 30px;
    }

    .btn-plan {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .pricing-main-title {
        font-size: 1.5rem;
    }

    .feature-list-item {
        font-size: 0.95rem;
    }

    .plan-title {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 1.8rem;
    }

    .btn-plan {
        width: 100%;
        padding: 14px 20px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.3rem;
    color: #222;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px;
}

.hero-subdescription {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FA8530 0%, #ed8819 100%);
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(250, 133, 48, 0.3);
}

.badge-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* How It Works Section */
.how-it-works-section {
    background: #fff;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    padding:0 !important;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #333;
}

.step-card {
    cursor:pointer;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #FA8530;
}

    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(250, 133, 48, 0.2);
    }

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FA8530 0%, #ed8819 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(250, 133, 48, 0.4);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.venue-types-section {
    /*background: #f8f9fa;*/
    background: #008080;
}

.venue-card {
    cursor:pointer;
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #FA8530;
}

    .venue-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 128, 128, 0.2);
    }

.venue-container {
    display: flex;
    align-items: flex-start; /* Changed from center to align from top */
    gap: 15px;
    margin-bottom: 20px;
}

.venue-icon {
    width: 60px;
    height: 60px;
    min-width: 60px; /* Prevents shrinking */
    flex-shrink: 0; /* Prevents icon from shrinking */
    background: linear-gradient(135deg, #FA8530 0%, #ed8819 100%);
    color: #fff;
    font-size: 1.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
    margin-bottom: 0;
}

.venue-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0;
    flex: 1; /* Allow title to take remaining space */
    line-height: 1.3; /* Better text alignment */
}

.venue-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.closing-text {
    font-size: 1.2rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Mobile App Section */
.mobile-app-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    /* Decorative background pattern */
    .mobile-app-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 300px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        z-index: 0;
        clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    }

.section-content {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 25px;
}

.intro-text {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Feature Cards Container */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Feature Card */
.feature-card {
    background: #ffffff;
    padding: 30px;
    cursor:pointer;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f1f1;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    position: relative;
    gap:16px;
    padding:20px;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #FF6B35, #F7931E);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
        border-color: #FF6B35;
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 0; /* remove bottom spacing */
    flex-shrink: 0;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

    .feature-icon i {
        font-size: 1.8rem;
        color: #ffffff;
    }

.feature-text {
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.6;
}

/* Closing Text */
.closing-text {
    font-size: 1.1rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

    .download-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .download-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(247, 147, 30, 0.12) 0%, transparent 70%);
        border-radius: 50%;
    }

.download-content {
    position: relative;
    z-index: 1;
}

.download-title {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.download-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* App Store Buttons */
.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 32px;
    background: #ffffff;
    color: #2d3748;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .app-store-btn:hover,
    .google-play-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        color: #2d3748;
        text-decoration: none;
        background: #FF6B35;
    }

    .app-store-btn:hover,
    .google-play-btn:hover {
        color: #ffffff;
    }

    .app-store-btn i,
    .google-play-btn i {
        font-size: 2.5rem;
    }

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.small-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.large-text {
    font-size: 1.15rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .download-section {
        padding: 40px 25px;
    }

    .download-title {
        font-size: 1.5rem;
    }

    .app-buttons {
        flex-direction: column;
    }

    .app-store-btn,
    .google-play-btn {
        width: 100%;
        max-width: 280px;
    }
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.small-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.large-text {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-subdescription {
        font-size: 1rem;
    }

    .section-title,
    .section-title-white {
        font-size: 2rem;
    }

    .step-card,
    .venue-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-subdescription {
        font-size: 0.95rem;
    }

    .badge-text {
        font-size: 0.95rem;
    }

    .section-title,
    .section-title-white {
        font-size: 1.75rem;
    }

    .section-subtitle,
    .section-subtitle-white {
        font-size: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .venue-title {
        font-size: 1.2rem;
    }

    .app-buttons {
        flex-direction: column;
    }

    .app-store-btn,
    .google-play-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-badge {
        padding: 12px 25px;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .section-title,
    .section-title-white {
        font-size: 1.5rem;
    }

    .step-card {
        padding: 30px 20px;
    }

    .venue-card {
        padding: 25px 20px;
    }

    .btn-demo {
        padding: 12px 30px;
        font-size: 1rem;
    }
}


.brand-card {
    border-radius: 15px;
    border: none;
    cursor:pointer;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .brand-card:hover {
        transform: translateY(-5px);
        border:2px solid #FA8530;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.brand-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ed8819;
    margin-right: 15px;
}

.brand-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 3px;
}

.brand-subtitle {
    color: #666;
    font-size: 14px;
    margin: 0;
}


.nav-menu ul li a.btn-login,
.nav-menu ul li a.btn-register {
    display: inline-flex;
    align-items: center; /* vertically center text inside button */
    justify-content: center;
    height: 40px; /* match navbar link height */
    padding: 0 20px;
    border-radius: 4px;
    margin-top: -10px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
}
/* Register button */
.nav-menu ul li a.btn-register {
    background-color: #fff;
    color: #ed8819;
    cursor:pointer;
    border: 2px solid #ed8819;
    text-decoration: none !important;
}

    .nav-menu ul li a.btn-register:hover {
        background-color: #ed8819;
        color: #fff;
        text-decoration: none !important;
    }

btn-register {
    display: inline-flex;
    align-items: center; /* vertically center text inside button */
    justify-content: center;
    height: 40px; /* match navbar link height */
    padding: 0 20px;
    border-radius: 4px;
    margin-top: -10px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
}
/* Register button */
btn-register {
    background-color: #fff;
    color: #ed8819;
    cursor: pointer;
    border: 2px solid #ed8819;
    text-decoration: none !important;
}

    btn-register:hover {
        background-color: #ed8819;
        color: #fff;
        text-decoration: none !important;
    }

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cta-box {
    border: 2px solid #ed8819;
    background: #333;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 700px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .cta-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .cta-box h2 {
        color: #fff;
        font-size: 32px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .cta-box p {
        font-size: 18px;
        color: #fff;
        margin-bottom: 30px;
        line-height: 1.6;
    }

.cta-button {
    background: #ed8819;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .cta-button:hover {
        background: #f3a64b;
        color: #fff;
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(237,136,25,0.3);
    }

@media (max-width: 576px) {
    .cta-box h2 {
        font-size: 26px;
    }

    .cta-box p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}

.pricing-container {
    padding: 5px 15px;
    text-align: center;
}

    .pricing-container h2 {
        font-size: 32px;
        font-weight: 700;
        color: #ed8819;
        margin-top: 20px;
        margin-bottom: 20px;
    }

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    text-align: left;
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .pricing-card.highlighted {
        border: 2px solid #ed8819;
        box-shadow: 0 15px 35px rgba(237,136,25,0.25);
    }

    .pricing-card h3 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #333;
    }

    .pricing-card .price {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #ed8819;
    }

    .pricing-card p.description {
        font-size: 16px;
        color: #555;
        margin-bottom: 20px;
    }

    .pricing-card ul.features {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
        cursor: pointer;
    }

        .pricing-card ul.features li {
            font-size: 16px;
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            transition: all 0.3s ease;
        }

            .pricing-card ul.features li::before {
                content: "\2713"; /* Checkmark */
                position: absolute;
                left: 0;
                top: 0;
                color: #ed8819;
                font-weight: bold;
                font-size: 18px;
            }

            .pricing-card ul.features li:hover {
                color: #ed8819;
                font-weight: 600;
            }

    .pricing-card .btn-plan {
        background: #ed8819;
        color: #fff;
        border: 2px solid #ed8819;
        padding: 12px 35px;
        font-size: 16px;
        border-radius: 50px;
        font-weight: 700;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
    }

        .pricing-card .btn-plan::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            border-radius: 50px;
            border: 2px solid #fff;
            transition: all 0.4s ease;
        }

        .pricing-card .btn-plan:hover::before {
            left: 0;
        }

        .pricing-card .btn-plan:hover {
            color: #ed8819;
            background: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(237, 136, 25, 0.4);
        }


@media (max-width: 767px) {
    .pricing-card {
        padding: 25px 15px;
        text-align: center;
    }

        .pricing-card h3 {
            font-size: 22px;
        }

        .pricing-card .price {
            font-size: 28px;
        }

        .pricing-card ul.features li {
            text-align: left;
        }
}

.btn-plan {
    background: #ed8819;
    color: #fff;
    border: 2px solid #ed8819;
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .btn-plan::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        border-radius: 50px;
        border: 2px solid #fff;
        transition: all 0.4s ease;
    }

    .btn-plan:hover::before {
        left: 0;
    }

    .btn-plan:hover {
        color: #ed8819;
        background: #fff;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(237, 136, 25, 0.4);
    }

/* Outer rounded border */
.pricing-table {
    border: 2px solid #ed8819; /* Outer border color */
    border-radius: 15px; /* Rounded corners */
    overflow: hidden; /* Clip inner borders to outer radius */
    width: 100%;
    margin: 20px 0;
}

    /* Table header */
    .pricing-table thead th {
        border-bottom: 2px solid #ed8819; /* Only bottom border */
        background-color: #f9f9f9; /* Optional: light header */
        font-weight: bold;
        color: #333;
    }

    /* Table body */
    .pricing-table tbody td {
        border-bottom: 1px solid #ddd; /* Only bottom border */
        padding: 15px;
        vertical-align: middle;
    }

    /* Price cell highlight */
    .pricing-table .price-highlight {
        background-color: #fff3e0;
        color: #ed8819;
        font-weight: bold;
        font-size: 18px;
    }

/* Font Awesome check/cross */
.fa-check {
    color: #28a745;
}

.fa-times {
    color: #dc3545;
}

/* Custom Modal Styles */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border: 1px solid #888;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Custom Modal Styles */
.contact-modal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-modal .modal-header {
    background: linear-gradient(135deg, #ed8819 0%, #f5a742 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 30px;
    border: none;
}

.contact-modal .modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-modal .modal-subtitle {
    font-size: 16px;
    font-weight: bold;
    opacity: 0.95;
}

.contact-modal .modal-body {
    padding: 40px 35px;
    background-color: #f8f9fa;
}

.contact-modal .form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-modal .form-control,
.contact-modal .form-control-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: white;
}

    .contact-modal .form-control:focus,
    .contact-modal .form-control-select:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
        outline: none;
    }

.contact-modal textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.contact-modal .required-star {
    color: #dc3545;
    margin-left: 3px;
}

.contact-modal .modal-footer {
    background-color: white;
    border-top: 2px solid #e9ecef;
    padding: 20px 35px;
    border-radius: 0 0 15px 15px;
}

.contact-modal .btn-close-modal {
    background-color: #6c757d;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

    .contact-modal .btn-close-modal:hover {
        background-color: #5a6268;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.contact-modal .btn-confirm-modal {
    background: linear-gradient(135deg, #ed8819 0%, #f5a742 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

    .contact-modal .btn-confirm-modal:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

.contact-modal .close {
    color: white;
    opacity: 0.9;
    text-shadow: none;
    font-size: 32px;
}

    .contact-modal .close:hover {
        opacity: 1;
    }

/* Responsive */
@media (max-width: 768px) {
    .contact-modal .modal-body {
        padding: 30px 20px;
    }

    .contact-modal .modal-header {
        padding: 25px 20px;
    }

    .contact-modal .modal-title {
        font-size: 24px;
    }

    .contact-modal .modal-footer {
        padding: 15px 20px;
    }

    .phone-input-group {
        flex-direction: column;
    }

        .phone-input-group .country-code {
            flex: 1;
        }
}

/* Phone Input with Country Code */
.phone-input-group {
    display: flex;
    gap: 10px;
}

    .phone-input-group .country-code {
        flex: 0 0 120px;
    }

    .phone-input-group .phone-number {
        flex: 1;
    }

.country-option {
    display: flex;
    align-items: center;
    padding: 8px;
}

.flag-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

/* For better dropdown styling */
.country-code-select option {
    padding: 8px;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #FA8530;
        border-top-color: #e2eefd;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.download-app {
    text-align: center;
    padding: 20px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 500px;
    font-family: 'Arial', sans-serif;
}

    .download-app h3 {
        font-size: 24px;
        color: #FA8530; /* Brand color */
        margin-bottom: 15px;
        font-weight: 700;
    }

    .download-app p {
        font-size: 16px;
        color: #555;
        margin-bottom: 25px;
    }

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 16px;
}

    .app-btn i {
        font-size: 20px;
    }

    /* Android button */
    .app-btn.android {
        background: #3DDC84;
    }

        .app-btn.android:hover {
            color: #fff;
            background: #FA8530;
            transform: scale(1.05);
        }

    /* Apple button */
    .app-btn.apple {
        background: #333333;
    }

        .app-btn.apple:hover {
            color: #fff;
            background: #FA8530;
            transform: scale(1.05);
        }


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
/* Back to top button container */
.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 90px;
    z-index: 99999;
    cursor: pointer;
    animation: fadeInUp 0.6s ease forwards;
}

    /* Icon inside the button */
    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #FA8530;
        color: #fff;
        box-shadow: 0 4px 15px rgba(250, 133, 48, 0.4);
        transition: all 0.4s ease-in-out;
        transform: scale(1);
    }

        /* Hover effect */
        .back-to-top i:hover {
            background: #FF9C42;
            color: #fff;
            transform: scale(1.2) rotate(10deg);
            box-shadow: 0 8px 25px rgba(250, 133, 48, 0.6);
        }

/* Bounce animation when appearing */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional pulse animation for attention */
.back-to-top.show i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #FA8530;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
}

    #topbar.topbar-scrolled {
        top: -40px;
    }

    #topbar .contact-info a {
        line-height: 1;
        color: #fff;
        transition: 0.3s;
    }

        #topbar .contact-info a:hover {
            text-decoration: underline;
        }

    #topbar .contact-info i {
        padding-right: 4px;
        margin-left: 15px;
    }

        #topbar .contact-info i:first-child {
            margin-left: 0;
        }

    #topbar .social-links a {
        color: rgba(255, 255, 255, 0.6);
        padding-left: 15px;
        display: inline-block;
        line-height: 1px;
        transition: 0.3s;
    }

        #topbar .social-links a:hover {
            color: #fff;
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 25px 0;
    top: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

    #header.header-scrolled {
        top: 0;
        padding: 15px;
    }

    #header .logo {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 0.8px;
        font-family: "Poppins", sans-serif;
    }

        #header .logo a {
            color: #222222;
        }

            #header .logo a span {
                color: #FA8530;
            }

        #header .logo img {
            max-height: 50px;
        }

#footer .logo img {
    max-height: 50px;
}

@media (max-width: 992px) {
    #header {
        padding: 15px;
        top: 0;
    }

        #header .logo {
            font-size: 28px;
        }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

.nav-menu a {
    display: block;
    position: relative;
    color: #222222;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 600;
    padding: 0 3px;
    font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FA8530;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #FA8530;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 26px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #062b5b;
}

    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
        color: #FA8530;
    }

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

    .nav-menu .drop-down .drop-down > a:after {
        content: "\eaa0";
        font-family: IcoFont;
        position: absolute;
        right: 15px;
    }

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        color: #222222;
    }

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #222222;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: #FA8530;
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\eaa1";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(9, 9, 9, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 75vh;
    /*margin-bottom:50px;*/
    background-size: cover;
    position: relative;
}

    #hero:before {
        content: "";
        background: rgba(255, 255, 255, 0.6);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .container {
        position: relative;
        padding-top: 50px;
    }

@media (max-width: 992px) {
    #hero .container {
        /*padding-top: 58px;*/
    }
}

#hero h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    color: #222222;
    font-family: "Poppins", sans-serif;
}

    #hero h1 span {
        color: #FA8530;
    }

#hero h2 {
    color: #222;
    margin: 5px 0 30px 0;
    font-size: 24px;
    font-weight: 400;
}

#hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #FA8530;
}

    #hero .btn-get-started:hover {
        background: #247cf0;
    }

#hero .btn-watch-video {
    font-size: 16px;
    display: inline-block;
    padding: 10px 25px 8px 40px;
    transition: 0.5s;
    margin-left: 25px;
    color: #222222;
    position: relative;
    font-weight: 600;
}

    #hero .btn-watch-video i {
        color: #FA8530;
        font-size: 32px;
        position: absolute;
        left: 0;
        top: 7px;
        transition: 0.3s;
    }

    #hero .btn-watch-video:hover {
        color: #FA8530;
    }

        #hero .btn-watch-video:hover i {
            color: #3b8af2;
        }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 80vh;
    }

        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }

        #hero .btn-get-started, #hero .btn-watch-video {
            font-size: 13px;
        }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f6f9fe;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 700;
        padding: 8px 20px;
        margin: 0;
        background: #e7f1fd;
        color: #FA8530;
        display: inline-block;
        text-transform: uppercase;
        border-radius: 50px;
    }

    .section-title h3 {
        margin: 15px 0 0 0;
        font-size: 32px;
        font-weight: 700;
        padding:10px;
    }

        .section-title h3 span {
            color: #FA8530;
        }

    .section-title p {
        margin: 15px auto 0 auto;
        font-weight: 600;
    }

@media (min-width: 1024px) {
    .section-title p {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f6fe;
    min-height: 40px;
    margin-top: 134px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 70px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #6c757d;
            content: "/";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

    .featured-services .icon-box::before {
        content: '';
        position: absolute;
        background: #cbe0fb;
        right: 0;
        left: 0;
        bottom: 0;
        top: 100%;
        transition: all 0.3s;
        z-index: -1;
    }

    .featured-services .icon-box:hover::before {
        background: #FA8530;
        top: 0;
        border-radius: 0px;
    }

.featured-services .icon {
    margin-bottom: 15px;
}

    .featured-services .icon i {
        font-size: 48px;
        line-height: 1;
        color: #FA8530;
        transition: all 0.3s ease-in-out;
    }

.featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

    .featured-services .title a {
        color: #111;
    }

.featured-services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
    color: #fff;
}

.featured-services .icon-box:hover .icon i {
    color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 35px;
    }

        .about .content ul li:first-child {
            margin-top: 35px;
        }

    .about .content ul i {
        background: #fff;
        box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
        font-size: 24px;
        padding: 20px;
        margin-right: 15px;
        color: #FA8530;
        border-radius: 50px;
    }

    .about .content ul h5 {
        font-size: 18px;
        color: #555555;
    }

    .about .content ul p {
        font-size: 15px;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
    height: 50px;
    display: block;
    background: none;
}

    .skills .progress .skill {
        padding: 10px 0;
        margin: 0 0 6px 0;
        text-transform: uppercase;
        display: block;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        color: #222222;
    }

        .skills .progress .skill .val {
            float: right;
            font-style: normal;
        }

.skills .progress-bar-wrap {
    background: #e2eefd;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: .9s;
    background-color: #FA8530;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 70px 0 60px;
}

    .counts .count-box {
        padding: 30px 30px 25px 30px;
        width: 100%;
        position: relative;
        text-align: center;
        background: #f1f6fe;
    }

        .counts .count-box i {
            position: absolute;
            top: -28px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 24px;
            background: #FA8530;
            padding: 12px;
            color: #fff;
            border-radius: 50px;
            border: 5px solid #fff;
        }

        .counts .count-box span {
            font-size: 36px;
            display: block;
            font-weight: 600;
            color: #062b5b;
        }

        .counts .count-box p {
            padding: 0;
            margin: 0;
            font-family: "Roboto", sans-serif;
            font-size: 14px;
        }

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 15px 0;
    text-align: center;
}

    .clients img {
        max-width: 45%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
    }

        .clients img:hover {
            transform: scale(1.15);
        }

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    border: 1px solid #e2eefd;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

    .services .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #f1f6fe;
        border-radius: 4px;
        border: 1px solid #deebfd;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
    }

        .services .icon-box .icon i {
            color: #3b8af2;
            font-size: 28px;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .services .icon-box h4 a {
            color: #222222;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .icon-box:hover {
        border-color: #fff;
        box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
    }

        .services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
            color: #FA8530;
        }

        .services .icon-box:hover .icon {
            border-color: #FA8530;
        }

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

    .testimonials::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
    }

    .testimonials .section-header {
        margin-bottom: 40px;
    }

    .testimonials .testimonial-item {
        text-align: center;
        color: #fff;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 100px;
            border-radius: 50%;
            border: 6px solid rgba(255, 255, 255, 0.15);
            margin: 0 auto;
        }

        .testimonials .testimonial-item h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: #fff;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            color: #ddd;
            margin: 0 0 15px 0;
        }

        .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
            color: rgba(255, 255, 255, 0.4);
            font-size: 26px;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
            color: #eee;
        }

    .testimonials .owl-nav, .testimonials .owl-dots {
        margin-top: 5px;
        text-align: center;
    }

    .testimonials .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4) !important;
    }

        .testimonials .owl-dot.active {
            background-color: #FA8530 !important;
        }

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 15px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 10px 15px 8px 15px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }

        .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
            color: #FA8530;
        }

        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

    .portfolio .portfolio-item .portfolio-info {
        opacity: 0;
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: rgba(255, 255, 255, 0.9);
        padding: 15px;
    }

        .portfolio .portfolio-item .portfolio-info h4 {
            font-size: 18px;
            color: #fff;
            font-weight: 600;
            color: #222222;
        }

        .portfolio .portfolio-item .portfolio-info p {
            color: #555555;
            font-size: 14px;
            margin-bottom: 0;
        }

        .portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
            position: absolute;
            right: 40px;
            font-size: 24px;
            top: calc(50% - 18px);
            color: #3c3c3c;
        }

            .portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
                color: #FA8530;
            }

        .portfolio .portfolio-item .portfolio-info .details-link {
            right: 10px;
        }

    .portfolio .portfolio-item .portfolio-links {
        opacity: 0;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 3;
        position: absolute;
        transition: all ease-in-out 0.3s;
    }

        .portfolio .portfolio-item .portfolio-links a {
            color: #fff;
            margin: 0 2px;
            font-size: 28px;
            display: inline-block;
            transition: 0.3s;
        }

            .portfolio .portfolio-item .portfolio-links a:hover {
                color: #6ba7f5;
            }

    .portfolio .portfolio-item:hover .portfolio-info {
        opacity: 1;
        bottom: 20px;
    }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 30px;
}

    .portfolio-details .portfolio-details-container {
        position: relative;
    }

    .portfolio-details .portfolio-details-carousel {
        position: relative;
        z-index: 1;
    }

        .portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
            margin-top: 5px;
            text-align: left;
        }

        .portfolio-details .portfolio-details-carousel .owl-dot {
            display: inline-block;
            margin: 0 10px 0 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd !important;
        }

            .portfolio-details .portfolio-details-carousel .owl-dot.active {
                background-color: #FA8530 !important;
            }

    .portfolio-details .portfolio-info {
        padding: 30px;
        position: absolute;
        right: 0;
        bottom: -70px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 50px;
    }

        .portfolio-details .portfolio-description h2 {
            width: 50%;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0 0 0 0;
        }

@media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
        width: 100%;
    }

    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    padding: 60px 0;
}

    .team .member {
        margin-bottom: 20px;
        overflow: hidden;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
    }

        .team .member .member-img {
            position: relative;
            overflow: hidden;
        }

        .team .member .social {
            position: absolute;
            left: 0;
            bottom: 30px;
            right: 0;
            opacity: 0;
            transition: ease-in-out 0.3s;
            text-align: center;
        }

            .team .member .social a {
                transition: color 0.3s;
                color: #222222;
                margin: 0 3px;
                padding-top: 7px;
                border-radius: 4px;
                width: 36px;
                height: 36px;
                background: rgba(16, 110, 234, 0.8);
                display: inline-block;
                transition: ease-in-out 0.3s;
                color: #fff;
            }

                .team .member .social a:hover {
                    background: #3b8af2;
                }

            .team .member .social i {
                font-size: 18px;
            }

        .team .member .member-info {
            padding: 25px 15px;
        }

            .team .member .member-info h4 {
                font-weight: 700;
                margin-bottom: 5px;
                font-size: 18px;
                color: #222222;
            }

            .team .member .member-info span {
                display: block;
                font-size: 13px;
                font-weight: 400;
                color: #aaaaaa;
            }

            .team .member .member-info p {
                font-style: italic;
                font-size: 14px;
                line-height: 26px;
                color: #777777;
            }

        .team .member:hover .social {
            opacity: 1;
            bottom: 15px;
        }

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

    .pricing .box h3 {
        font-weight: 400;
        margin: -20px -20px 20px -20px;
        padding: 20px 15px;
        font-size: 16px;
        font-weight: 600;
        color: #777777;
        background: #f8f8f8;
    }

    .pricing .box h4 {
        font-size: 36px;
        color: #FA8530;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        margin-bottom: 20px;
    }

        .pricing .box h4 sup {
            font-size: 20px;
            top: -15px;
            left: -3px;
        }

        .pricing .box h4 span {
            color: #bababa;
            font-size: 16px;
            font-weight: 300;
        }

    .pricing .box ul {
        padding: 0;
        list-style: none;
        color: #444444;
        text-align: center;
        line-height: 20px;
        font-size: 14px;
    }

        .pricing .box ul li {
            padding-bottom: 16px;
        }

        .pricing .box ul i {
            color: #FA8530;
            font-size: 18px;
            padding-right: 4px;
        }

        .pricing .box ul .na {
            color: #ccc;
            text-decoration: line-through;
        }

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: #FA8530;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

    .pricing .btn-buy:hover {
        background: #3b8af2;
    }

.pricing .featured h3 {
    color: #fff;
    background: #FA8530;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #FA8530;
    color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
    padding: 60px 0;
}

    .faq .faq-list {
        padding: 0;
        list-style: none;
    }

        .faq .faq-list li {
            padding: 0 0 20px 25px;
        }

        .faq .faq-list a {
            display: block;
            position: relative;
            font-family: #FA8530;
            font-size: 18px;
            font-weight: 500;
        }

        .faq .faq-list i {
            font-size: 18px;
            position: absolute;
            left: -25px;
            top: 6px;
        }

        .faq .faq-list p {
            margin-bottom: 20px;
            font-size: 15px;
        }

        .faq .faq-list a.collapse {
            color: #FA8530;
        }

        .faq .faq-list a.collapsed {
            color: #343a40;
        }

            .faq .faq-list a.collapsed:hover {
                color: #FA8530;
            }

            .faq .faq-list a.collapsed i::before {
                content: "\eab2" !important;
            }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /*border: 2px solid #FA8530;*/
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);*/
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contact .info-box:hover {
        transform: translateY(-10px);
        /*border-color: #FA8530;*/
        /*box-shadow: 0 20px 40px rgba(250, 133, 48, 0.3);*/
    }

    .contact .info-box i {
        font-size: 48px;
        color: #ffffff;
        background: linear-gradient(135deg, #FA8530 0%, #ff6b35 100%);
        width: 90px;
        height: 90px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 20px;
        transition: all 0.4s ease;
        box-shadow: 0 5px 20px rgba(250, 133, 48, 0.4);
    }

    .contact .info-box:hover i {
        transform: rotateY(360deg) scale(1.1);
        box-shadow: 0 8px 30px rgba(250, 133, 48, 0.6);
    }

    .contact .info-box h3 {
        font-size: 22px;
        font-weight: 700;
        color: #222222;
        margin-bottom: 15px;
        transition: color 0.3s ease;
    }

    .contact .info-box:hover h3 {
        color: #FA8530;
    }

    .contact .info-box p {
        font-size: 18px;
        color: #666666;
        line-height: 1.6;
        margin: 0;
        min-height: 48px;
    }

    .contact .info-box a {
        color: #FA8530;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
    }

        .contact .info-box a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #FA8530;
            transition: width 0.3s ease;
        }

        .contact .info-box a:hover::after {
            width: 100%;
        }

        .contact .info-box a:hover {
            color: #ff6b35;
        }

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(250, 133, 48, 0.4);
    }

    50% {
        box-shadow: 0 5px 30px rgba(250, 133, 48, 0.7);
    }
}

.contact .info-box i {
    animation: pulse 2s infinite;
}

.contact .info-box:hover i {
    animation: none;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
    padding: 30px;
}

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input, .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
    }

        .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
            border-color: #FA8530;
        }

    .contact .php-email-form input {
        padding: 20px 15px;
    }

    .contact .php-email-form textarea {
        padding: 12px 15px;
    }

    .contact .php-email-form button[type="submit"] {
        background: #FA8530;
        border: 0;
        padding: 10px 30px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
    }

        .contact .php-email-form button[type="submit"]:hover {
            background: #3b8af2;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #fff;
    padding: 0 0 30px 0;
    color: #444444;
    font-size: 14px;
    background: #f1f6fe;
}

    #footer .footer-newsletter {
        padding: 50px 0;
        background: #f1f6fe;
        text-align: center;
        font-size: 15px;
    }

        #footer .footer-newsletter h4 {
            font-size: 24px;
            margin: 0 0 20px 0;
            padding: 0;
            line-height: 1;
            font-weight: 600;
        }

        #footer .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
            text-align: left;
        }

            #footer .footer-newsletter form input[type="email"] {
                border: 0;
                padding: 4px 8px;
                width: calc(100% - 100px);
            }

            #footer .footer-newsletter form input[type="submit"] {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #FA8530;
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
                box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            }

                #footer .footer-newsletter form input[type="submit"]:hover {
                    background: #0d58ba;
                }

    #footer .footer-top {
        padding: 60px 0 30px 0;
        background: #fff;
    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact h3 {
                font-size: 24px;
                margin: 0 0 15px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

                #footer .footer-top .footer-contact h3 span {
                    color: #FA8530;
                }

            #footer .footer-top .footer-contact p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Roboto", sans-serif;
                color: #222222;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: bold;
            color: #444444;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #FA8530;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #222222;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        text-decoration: none;
                        color: #FA8530;
                    }

    #footer .credits .social-links a {
        font-size: 18px;
        display: inline-block;
        background: #FA8530;
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 4px;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        #footer .credits .social-links a:hover {
            background: #3b8af2;
            color: #fff;
            text-decoration: none;
        }

    #footer .copyright {
        text-align: center;
        float: left;
    }

    #footer .credits {
        float: right;
        text-align: center;
        font-size: 13px;
        color: #444444;
    }

@media (max-width: 768px) {
    #footer .copyright, #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}
