body {
    font-family: "Lexend Deca", sans-serif;
    font-size: 15px;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #fef3ec 50%, #fff 100%);
    padding: 106px 0 30px;
    overflow: hidden;
    margin-top: -79px;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff9900" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff9900" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ff9900" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.hero-section .container {
    z-index: 2;
    position: relative;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1d;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: #ff9900;
    background: linear-gradient(45deg, #ff9900, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero {
    min-height: 500px;
}

.banner-section {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #fef3ec 50%, #fff 100%);
    padding: 130px 0 54px;
    overflow: hidden;
    margin-top: -79px;
    z-index: 1;
}

.banner-section .container {
    z-index: 2;
    position: relative;
}

.banner-text h1 {
    font-size: 38px;
    font-weight: 700;
    color: #1d1d1d;
    line-height: 1.2;
}

.banner-text h1 span {
    color: #ff9900;
    background: linear-gradient(45deg, #ff9900, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.email-box {
    display: flex;
    max-width: 500px;
    margin-top: 20px;
}

.email-box input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 30px 0 0 30px;
}

.email-box button {
    border: none;
    padding: 12px 24px;
    border-radius: 0 30px 30px 0;
    background: #000;
    color: #fff;
    font-weight: 500;
}

.stats-col {
    position: relative;
}

.floating-boxes {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 25px;
    max-width: 400px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    border: 1px solid rgba(255, 153, 0, 0.1);
    transition: all 0.3s ease;
}

.floating-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 153, 0, 0.3);
}

/* Prevent floating box hover effects in modals */
.modal .floating-box:hover {
    transform: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 153, 0, 0.1);
}

.floating-box:nth-child(1) {
    animation-delay: 0.2s;
}

.floating-box:nth-child(2) {
    animation-delay: 0.4s;
}

.floating-box:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-container {
    background: #fffbf0;
}

.features-icon {
    padding: 15px;
    margin: 15px auto;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.features-icon:hover {
    transform: scale(1.1);
}

.testimonial {
    text-align: center;
    padding: 40px 60px;
}

.testimonial .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #ff9900;
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.2);
}

.testimonial .name {
    font-weight: 600;
    margin-top: 15px;
    font-size: 1.1rem;
    color: #1d1d1d;
}

.testimonial .text-muted {
    font-size: 1rem;
    line-height: 1.6;
}

.carousel-inner {
    border-radius: 20px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#testimonialCarousel {
    position: relative;
    padding: 0 40px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: all 0.3s ease;
}

#testimonialCarousel .carousel-control-prev {
    left: -25px;
}

#testimonialCarousel .carousel-control-next {
    right: -25px;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    background-color: #ff9900;
    box-shadow: 0 6px 16px rgba(255, 153, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: none;
}

#testimonialCarousel .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff9900'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#testimonialCarousel .carousel-control-prev:hover .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}



#testimonialCarousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff9900'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


#testimonialCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Enhanced Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 153, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 153, 0, 0.3);
}

/* Prevent feature card hover effects in modals */
.modal .feature-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 153, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1d;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Enhanced Button Styling */
.btn {
    padding: 12px 25px;
    transition: all 0.3s ease;
    border: none;
}

.btn-dark {
    background: linear-gradient(45deg, #1d1d1d, #333);
    box-shadow: 0 5px 15px rgba(29, 29, 29, 0.3);
}

.btn-dark:hover {
    background: linear-gradient(45deg, #333, #1d1d1d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 29, 29, 0.4);
}

.btn-warning {
    background: linear-gradient(45deg, #ff9900, #ff6b35);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(45deg, #ff6b35, #ff9900);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

.btn-outline-warning {
    border: 2px solid #ff9900;
    color: #ff9900;
    background: transparent;
}

.btn-outline-warning:hover {
    background: #ff9900;
    border-color: #ff9900;
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Form Styling */
.form-control {
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ff9900;
    box-shadow: 0 0 0 0.2rem rgba(255, 153, 0, 0.25);
}

/* Enhanced Card Styling */
.card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Prevent hover effects on modal elements */
.modal .card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.modal .btn:hover {
    transform: none;
}

.modal .feature-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.modal .pricing-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Ensure modal content is stable */
.modal-content {
    transform: none !important;
}

.modal .card-body {
    transform: none !important;
}

/* Modal specific styling to prevent flickering */
.modal {
    backdrop-filter: blur(5px);
}

.modal-dialog {
    transform: none !important;
}

.modal.fade .modal-dialog {
    transition: opacity 0.15s linear;
}

.modal.show .modal-dialog {
    transform: none !important;
}

/* Disable all hover effects within modals */
.modal *:hover {
    transform: none !important;
}

/* Ensure buttons in modals don't have hover transforms */
.modal .btn-primary:hover,
.modal .btn-secondary:hover,
.modal .btn-danger:hover,
.modal .btn-outline-primary:hover,
.modal .btn-outline-danger:hover {
    transform: none !important;
}

/* Additional modal stability fixes */
.modal-backdrop {
    backdrop-filter: blur(5px);
}

.modal .list-unstyled li {
    transform: none !important;
}

.modal .alert {
    transform: none !important;
}

/* Prevent any transition effects that might cause flickering */
.modal * {
    transition: none !important;
}

.modal .btn {
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

/* Ensure modal content doesn't move during loading states */
.modal [wire:loading] {
    transform: none !important;
}

.card-body {
    padding: 2rem;
}

.pricing-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff9900;
    margin-bottom: 1rem;
}

.faq-container {
    background: #fffbf0;
    border-top: 1px solid rgba(255, 153, 0, 0.2);
    border-bottom: 1px solid rgba(255, 153, 0, 0.2);
}

.faq-container:last-of-type {
    border-bottom: 1px solid rgba(255, 153, 0, 0.2);
}

.faq-container h3 {
    color: #1d1d1d;
    font-weight: 700;
    margin-bottom: 0;
    font-size: 1.25rem;
}

.faq-container p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-section {
    background: #fff;
}

.faq-section .section-title {
    margin-bottom: 1rem;
}

.faq-section .section-subtitle {
    margin-bottom: 2rem;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.section-title.text-start {
    text-align: left !important;
    margin-bottom: 1rem;
}

.section-subtitle.text-start {
    text-align: left !important;
    margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
    .faq-container .row {
        flex-direction: column;
    }

    .faq-container .col-lg-4 {
        margin-bottom: 0.5rem;
    }

    .faq-container .col-lg-7,
    .faq-container .col-lg-8 {
        padding-top: 0 !important;
    }
}

.cta-section {
    background: linear-gradient(135deg, #ff9900 0%, #ff6b35 100%);
    color: white;
    padding: 3rem 0;
}

.cta-section h5 {
    font-weight: 600;
    margin-bottom: 0;
}

/* Gradient Text Utility */
.gradient-text {
    background: linear-gradient(45deg, #ff9900, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Effects */
.hover-text-white:hover {
    color: white !important;
}

/* Footer Styling */
.footer {
    background-color: #fef3ec;
}

.footer.bg-dark {
    background-color: #23272b !important;
}

.footer.bg-dark,
.footer.bg-dark .text-muted,
.footer.bg-dark .text-light,
.footer.bg-dark p,
.footer.bg-dark ul,
.footer.bg-dark li,
.footer.bg-dark a,
.footer.bg-dark h6 {
    color: #f8f9fa !important;
}

.footer.bg-dark .text-warning {
    color: #ff9900 !important;
}

.footer.bg-dark .text-danger {
    color: #ff6b6b !important;
}

.footer .footer-brand {
    color: #ff9900 !important;
}

.footer .footer-brand:hover {
    color: #fff !important;
}

.footer a {
    color: #ff9900;
    text-decoration: none;
}

.footer a:hover {
    color: #000;
    text-decoration: none;
}

/* Pricing Cards */
.pricing-card {
    background: #fff;
    border-radius: 0 18px 0 18px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.selected {
    border-color: #ff9900;
    box-shadow: 0 15px 35px rgba(255, 153, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, #ff9900, #ff6b35);
    color: white;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0.375rem 0 0;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 1rem;
}

.price-section {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1d;
    vertical-align: top;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ff9900;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.feature-item i {
    min-width: 20px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff9900, #ff6b35);
    border: none;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff6b35, #ff9900);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.btn-outline-primary {
    border: 2px solid #ff9900;
    color: #ff9900;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #ff9900;
    border-color: #ff9900;
    color: white;
    transform: translateY(-2px);
}

.btn-selected {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3) !important;
}

.btn-selected:hover {
    background: linear-gradient(45deg, #20c997, #28a745) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4) !important;
}

/* ===== MOBILE RESPONSIVENESS ===== */

/* Mobile Navigation Overlay - applies when navbar is collapsed (below lg breakpoint) */
@media (max-width: 991.98px) {
    #mainNav {
        position: relative;
    }

    #mainNav .container-fluid {
        position: relative;
    }

    .mobile-nav-overlay {
        position: absolute !important;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1050;
        margin-top: 0;
        padding: 1rem 0;
    }

    .mobile-nav-overlay .d-flex {
        flex-direction: column;
        gap: 0.75rem !important;
        padding: 0 1rem;
        margin-top: 1rem;
    }

    .mobile-nav-overlay .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Large Mobile and Small Tablet */
@media (max-width: 768px) {

    /* Typography */
    .hero-text h1 {
        font-size: 32px !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }


    .banner-text h1 {
        font-size: 28px !important;
        line-height: 1.1;
    }

    .section-title {
        font-size: 2rem !important;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }

    /* Navigation */
    .navbar-brand {
        font-size: 1.5rem !important;
    }

    .navbar-nav {
        margin-top: 1rem;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }

    .btn-sm {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }

    .card {
        margin-bottom: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem !important;
    }

    .pricing-card,
    .card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem;
    }

    .pricing-card-title {
        font-size: 2rem !important;
    }

    .plan-name {
        font-size: 1.3rem !important;
    }

    /* Testimonials */
    .container-fluid.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .container.my-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .testimonial {
        padding: 1.5rem 1rem !important;
    }

    .testimonial .avatar {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 1rem !important;
    }

    .testimonial .name {
        font-size: 1rem !important;
        margin-top: 1rem !important;
    }

    .testimonial .text-muted {
        font-size: 0.95rem !important;
        margin-bottom: 0.75rem !important;
    }

    .carousel-inner {
        padding: 1.5rem 1rem !important;
    }

    #testimonialCarousel {
        padding: 0 30px;
    }

    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    #testimonialCarousel .carousel-control-prev {
        left: -10px;
    }

    #testimonialCarousel .carousel-control-next {
        right: -10px;
    }

    #testimonialCarousel .carousel-control-prev-icon,
    #testimonialCarousel .carousel-control-next-icon {
        width: 1.2rem;
        height: 1.2rem;
    }

    .col-lg-4 h4 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .col-lg-4 .mt-4 {
        margin-top: 1.5rem !important;
    }

    .col-lg-6 {
        margin-bottom: 2rem;
    }

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

    .section-title.text-start {
        text-align: center !important;
        font-size: 1.75rem !important;
    }

    .section-subtitle.text-start {
        text-align: center !important;
        font-size: 0.95rem !important;
    }

    .bg-light .container.my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .cta-section {
        padding: 2rem 0 !important;
    }

    .cta-section .row {
        flex-direction: column;
        text-align: center;
    }

    .cta-section .col-lg-8 {
        margin-bottom: 1rem;
    }

    .cta-section .col-lg-2 {
        width: 100%;
    }

    .cta-section .btn {
        width: 100%;
    }

    .hero-section,
    .banner-section {
        margin-top: 0 !important;
        padding: 60px 0 30px !important;
    }

    .hero {
        min-height: auto !important;
    }

    .floating-box {
        padding: 20px !important;
        margin-bottom: 1rem;
        max-width: 100% !important;
    }

    .stats-col {
        margin-top: 2rem;
    }

    /* Email Box */
    .email-box {
        flex-direction: column;
        gap: 10px;
    }

    .email-box input,
    .email-box button {
        border-radius: 15px !important;
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 !important;
    }

    .footer .col-md-6 {
        margin-bottom: 2rem;
    }
}

/* Medium Mobile */
@media (max-width: 576px) {

    .hero-text .input-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-text .input-group .form-control {
        width: 100%;
        border-radius: 15px !important;
        margin-bottom: 0;
    }

    .hero-text .input-group .btn {
        width: 100%;
        padding: 12px 15px !important;
        margin: 0 !important;
    }

    .hero-text h1 {
        font-size: 28px !important;
    }

    .banner-text h1 {
        font-size: 24px !important;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    .hero-text p {
        font-size: 1rem !important;
    }

    /* Navigation */
    .navbar {
        padding: 0.5rem 1rem !important;
    }

    .navbar-brand {
        font-size: 1.3rem !important;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem !important;
    }

    /* Buttons */
    .btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }

    .d-flex.gap-3 {
        gap: 0.5rem !important;
    }

    /* Cards */
    .feature-card,
    .pricing-card {
        padding: 1.25rem !important;
    }

    .card-body {
        padding: 1.25rem !important;
    }

    /* Hero Sections */
    .hero-section,
    .banner-section {
        padding: 40px 0 20px !important;
    }

    .pricing-card-title {
        font-size: 1.75rem !important;
    }

    .card-body {
        padding: 1.5rem !important;
    }

    .faq-container {
        background: #fffbf0 !important;
        padding: 1.5rem !important;
    }

    .faq-container h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .faq-container p {
        font-size: 0.95rem !important;
    }

    /* Testimonials */
    .container-fluid.py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .container.my-5 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .testimonial {
        padding: 1.25rem 0.75rem !important;
    }

    .testimonial .avatar {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 0.75rem !important;
    }

    .testimonial .name {
        margin-top: 0.75rem !important;
    }

    .carousel-inner {
        padding: 1.25rem 0.75rem !important;
    }

    #testimonialCarousel {
        padding: 0 25px;
    }

    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        width: 36px;
        height: 36px;
    }

    #testimonialCarousel .carousel-control-prev {
        left: -8px;
    }

    #testimonialCarousel .carousel-control-next {
        right: -8px;
    }

    #testimonialCarousel .carousel-control-prev-icon,
    #testimonialCarousel .carousel-control-next-icon {
        width: 1rem;
        height: 1rem;
    }

    .col-lg-4 h4 {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem !important;
    }

    .col-lg-4 .mt-4 {
        margin-top: 1rem !important;
    }

    .col-lg-6 {
        margin-bottom: 1.5rem;
    }

    .section-title.text-start {
        text-align: center !important;
        font-size: 1.5rem !important;
    }

    .section-subtitle.text-start {
        text-align: center !important;
        font-size: 0.9rem !important;
    }

    .bg-light .container.my-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .cta-section {
        padding: 1.5rem 0 !important;
    }

    .cta-section h5 {
        font-size: 1.1rem !important;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 !important;
    }

    .footer h6 {
        font-size: 1rem !important;
    }

    .footer .small {
        font-size: 0.8rem !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    /* Typography */
    .hero-text h1 {
        font-size: 24px !important;
    }

    .banner-text h1 {
        font-size: 20px !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .hero-text p {
        font-size: 0.95rem !important;
    }

    /* Navigation */
    .navbar-brand {
        font-size: 1.2rem !important;
    }

    .navbar-brand svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* Buttons */
    .btn {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }

    .btn-sm {
        padding: 6px 10px !important;
        font-size: 0.75rem !important;
    }

    /* Cards */
    .feature-card,
    .pricing-card {
        padding: 1rem !important;
    }

    .card-body {
        padding: 1rem !important;
    }

    /* Testimonials */
    .container-fluid.py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .container.my-5 {
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .testimonial {
        padding: 1rem 0.5rem !important;
    }

    .testimonial .text-muted {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }

    .testimonial .avatar {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 0.5rem !important;
    }

    .testimonial .name {
        margin-top: 0.5rem !important;
        font-size: 0.95rem !important;
    }

    .carousel-inner {
        padding: 1rem 0.5rem !important;
    }

    #testimonialCarousel {
        padding: 0 20px;
    }

    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        width: 32px;
        height: 32px;
    }

    #testimonialCarousel .carousel-control-prev {
        left: -5px;
    }

    #testimonialCarousel .carousel-control-next {
        right: -5px;
    }

    #testimonialCarousel .carousel-control-prev-icon,
    #testimonialCarousel .carousel-control-next-icon {
        width: 0.9rem;
        height: 0.9rem;
    }

    .col-lg-4 h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .col-lg-4 p {
        font-size: 0.9rem !important;
    }

    .col-lg-4 .mt-4 {
        margin-top: 0.75rem !important;
    }

    .col-lg-6 {
        margin-bottom: 1rem;
    }

    .cta-section {
        padding: 1.25rem 0 !important;
    }

    .cta-section h5 {
        font-size: 1rem !important;
    }

    /* Hero Sections */
    .hero-section,
    .banner-section {
        padding: 30px 0 15px !important;
    }

    .floating-box {
        padding: 15px !important;
    }

    .pricing-card-title {
        font-size: 1.5rem !important;
    }

    .card-body {
        padding: 1.25rem !important;
    }

    /* Footer */
    .footer {
        padding: 1rem 0 !important;
    }

    .footer .col-lg-4,
    .footer .col-lg-2 {
        margin-bottom: 1.5rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {

    /* Typography */
    .hero-text h1 {
        font-size: 22px !important;
    }

    .banner-text h1 {
        font-size: 18px !important;
    }

    .section-title {
        font-size: 1.4rem !important;
    }

    /* Navigation */
    .navbar-brand {
        font-size: 1.1rem !important;
    }

    /* Buttons */
    .btn {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }

    /* Cards */
    .feature-card,
    .pricing-card {
        padding: 0.75rem !important;
    }

    .card-body {
        padding: 0.75rem !important;
    }

    /* Hero Sections */
    .hero-section,
    .banner-section {
        padding: 25px 0 10px !important;
    }

    .pricing-card-title {
        font-size: 1.4rem !important;
    }

    /* Footer */
    .footer {
        padding: 0.75rem 0 !important;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {

    .hero-section,
    .banner-section {
        padding: 20px 0 !important;
        margin-top: 0 !important;
    }

    .hero-text h1 {
        font-size: 24px !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-text p {
        margin-bottom: 1rem !important;
    }
}

#mainNav {
    transition: background-color 0.3s ease;
    background-color: transparent;
    min-height: 56px;
}

#mainNav .navbar-collapse {
    min-height: 0;
}

/* When scrolled */
#mainNav.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#mainNav.scrolled .mobile-nav-overlay {
    background-color: #ffffff;
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0px;
        width: 180px;
    }

    .navbar .nav-item:hover .nav-link:not(.dropdown-toggle) {
        color: #ff9900;
    }

    .navbar .nav-item.dropdown:hover .nav-link.dropdown-toggle {
        background-color: #ff9900 !important;
        color: #fff !important;
    }

    .navbar .nav-item.dropdown:hover .nav-link.dropdown-toggle i {
        color: #fff !important;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
}

.nav-item {
    margin: auto 5px;
}

.dropdown-menu li {
    padding: 5px 10px
}

.nav-item.dropdown:hover>.nav-link,
.nav-item.dropdown.show>.nav-link {
    background-color: #ff9900 !important;
    color: #fff !important;
}

.nav-item.dropdown:hover>.nav-link i,
.nav-item.dropdown.show>.nav-link i {
    color: #fff !important;
}

.nav-item.dropdown.show>.nav-link {
    background-color: #ff9900 !important;
    color: #fff !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 1000;
    margin-top: 0.125rem;
    min-width: 100%;
    width: max-content;
    white-space: nowrap;
}

.nav-item.dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    min-width: 180px;
}

.dropdown-menu.dropdown-menu-end {
    left: auto !important;
    right: 0 !important;
}

@media (max-width: 991.98px) {
    .dropdown-menu.dropdown-menu-end {
        width: 180px;
        min-width: 180px;
    }
}

.dropdown-item {
    padding: 8px 20px;
    color: #333;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #333;
    transform: none;
}

.dropdown-item:focus {
    background-color: #f8f9fa;
    color: #333;
    box-shadow: none;
}

.navbar-nav .nav-link.active {
    color: #ff9900 !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active:hover {
    color: #ff9900 !important;
}

.navbar-nav .nav-link:not(.dropdown-toggle) {
    color: #333;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover {
    color: #ff9900 !important;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover i {
    color: #ff9900 !important;
}

.navbar-nav .nav-link.dropdown-toggle {
    color: #333;
}

.navbar-nav .nav-link.dropdown-toggle:hover {
    background-color: #ff9900 !important;
    color: #fff !important;
}

.navbar-nav .nav-link.dropdown-toggle:hover i {
    color: #fff !important;
}

.dropdown-menu .dropdown-item.active {
    color: #28a745 !important;
    font-weight: 600;
    background-color: #f8f9fa;
}

.dropdown-menu .dropdown-item.active:hover {
    color: #218838 !important;
    background-color: #e9ecef;
}

@media (min-width: 992px) {
    .login-form-border {
        border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }
}