/* Creative Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #e0e7ff 60%, #f9fafb 100%);
    padding: 70px 0 60px 0;
    position: relative;
    z-index: 2;
}
.contact-form-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(79,70,229,0.10);
    padding: 48px 36px 36px 36px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}
.contact-form-card:hover {
    box-shadow: 0 16px 48px rgba(79,70,229,0.18);
    transform: translateY(-6px) scale(1.02);
}
.contact-form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.contact-form-desc {
    color: var(--dark-gray);
    font-size: 1.15rem;
    margin-bottom: 24px;
}
.contact-form-creative .contact-input {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    font-size: 1.08rem;
    padding: 14px 18px;
    margin-bottom: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: none;
}
.contact-form-creative .contact-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(79,70,229,0.10);
    background: #fff;
}
.contact-btn {
    padding: 12px 38px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(79,70,229,0.08);
    background: var(--gradient);
    color: var(--secondary);
    transition: background 0.3s, transform 0.3s;
}
.contact-btn:hover {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 991.98px) {
    .contact-form-card {
        padding: 28px 12px 24px 12px;
    }
    .contact-form-title {
        font-size: 2rem;
    }
}
/* Enhanced Breadcrumb Section for Inner Pages */
.breadcrumb-section {
    padding: 2.2rem 0 2.2rem 0;
    background: linear-gradient(90deg, #f3f4f6 60%, #e0e7ff 100%);
    border-radius: 18px;
    margin-top: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(79,70,229,0.08);
    position: relative;
    overflow: hidden;
}
.breadcrumb-section::before {
    content: '';
    position: absolute;
    left: -60px;
    top: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    opacity: 0.08;
    z-index: 0;
}
.breadcrumb-section .container {
    position: relative;
    z-index: 1;
}
.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 0;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-item a:hover {
    color: var(--accent);
    text-decoration: underline;
}
.breadcrumb-item.active {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.18rem;
}

        :root {
            --primary: #4f46e5; /* Modern indigo */
            --secondary: #ffffff;
            --accent: #fcb503; /* Vibrant yellow */
            --text: #1f2937; /* Dark gray for text */
            --light-gray: #f9fafb;
            --dark-gray: #6b7280;
            --gradient: linear-gradient(135deg, #4f46e5 0%, #FF9800 100%);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            overflow-x: hidden;
            background-color: var(--light-gray);
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            letter-spacing: -0.025em;
        }

        .scrolled .navbar-brand img {
            filter: brightness(100);
        }

        .navbar {
            background: var(--secondary);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
            transition: all 0.3s ease;
            padding: 0;
        }

        .navbar.scrolled {
            background: var(--gradient);
            color: var(--secondary);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.75rem;
            display: flex;
            align-items: center;
            color: var(--primary);
        }

        .navbar-brand img {
            margin-right: 12px;
        }

        .nav-link {
            font-weight: 600;
            color: var(--text);
            margin: 0 15px;
            position: relative;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        .navbar.scrolled .nav-link {
            color: var(--secondary);
        }

        .nav-link:hover {
            color: var(--accent);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--accent);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-primary {
            background: var(--gradient);
            border: none;
            padding: 6px 20px !important;
            font-weight: 600;
            border-radius: 100px;
            transition: all 0.3s ease;
            transform: translateY(0);
            color: var(--light-gray);
            font-size: 14px;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #4338ca 0%, #818cf8 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
        }

        .btn-outline-primary {
            color: var(--light-gray);
            border-color: var(--light-gray);
            border-radius: 100px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 6px 20px !important;
            font-weight: 600;
            font-size: 14px;
        }

        .btn-outline-primary:hover {
            background: var(--primary);
            color: var(--secondary);
        }

        /* Hero Section */
        .hero-section {
            padding: 0px 0;
            background: var(--gradient);
            color: var(--secondary);
            position: relative;
            overflow: visible;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.2), transparent 50%);
            z-index: 0;
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
        }

        .hero-section .hero-content {
            padding: 60px 0;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .hero-section h1 span {
            color: var(--accent);
        }

        .hero-section .lead {
            font-size: 1.25rem;
            margin-bottom: 35px;
            opacity: 0.9;
        }

        .cta-buttons .btn {
            margin-right: 20px;
            margin-bottom: 20px;
        }

        /* Floating Icons in Hero Section */
        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-icon {
            position: absolute;
            font-size: 2.5rem;
            opacity: .5;
            color: #ffffff;
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
        }

        .icon1 { left: 5%; top: 18%; animation-delay: 0s; }
        .icon2 { right: 8%; top: 12%; animation-delay: 1.5s; }
        .icon3 { left: 12%; bottom: 10%; color: #ffffff; animation-delay: 3s; }
        .icon4 { right: 10%; bottom: 14%; color: #ffffff; animation-delay: 4.5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-18px) scale(1.12); }
        }

        /* About Section */
        .about-section {
            padding: 60px 0;
            background: var(--secondary);
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2.75rem;
            margin-bottom: 20px;
        }

        .section-header h2 span {
            color: var(--primary);
        }

        .section-header p {
            color: var(--dark-gray);
            font-size: 1.15rem;
            max-width: 750px;
            margin: 0 auto;
        }

        .about-features {
            list-style: none;
            padding: 0;
        }

        .about-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }

        .about-features i {
            color: var(--accent);
            margin-right: 12px;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .about-features li:hover i {
            transform: scale(1.2);
        }

        /* Services Section */
        .services-section {
            padding: 60px 0 0px;
            background: var(--light-gray);
        }

        .service-card {
            background: var(--secondary);
            border-radius: 12px;
            padding: 35px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            transform: translateY(0);
            margin-bottom: 30px;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(165, 180, 252, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .service-icon i {
            font-size: 2rem;
            color: var(--primary);
        }

        .service-card h3 {
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .read-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .read-more i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .read-more:hover {
            color: var(--accent);
        }

        .read-more:hover i {
            transform: translateX(8px);
        }

        /* Features Section */
        .features-section {
            padding: 60px 0 40px;
            background: var(--secondary);
        }


        .why-choose-row {
            position: relative;
            z-index: 1;
        }

        .creative-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(79,70,229,0.08);
            padding: 40px 28px 32px 28px;
            margin-bottom: 40px;
            transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
            position: relative;
            top: 0;
        }

        .creative-card:hover {
            transform: translateY(-12px) scale(1.04) rotate(-2deg);
            box-shadow: 0 16px 48px rgba(79,70,229,0.16);
        }

        .creative-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px auto;
            font-size: 2.2rem;
            color: #fff;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s;
        }

        .bg-indigo { background: linear-gradient(135deg, #6366f1 60%, #818cf8 100%); }
        .bg-green { background: linear-gradient(135deg, #22c55e 60%, #bef264 100%); }
        .bg-yellow { background: linear-gradient(135deg, #fbbf24 60%, #fde68a 100%); color: #b45309; }
        .bg-pink { background: linear-gradient(135deg, #f472b6 60%, #f9a8d4 100%); color: #831843; }

        .feature-card {
            text-align: center;
        }
        .feature-card h4 {
            margin-bottom: 20px;
            font-size: 1.25rem;
        }

        /* App Screens Section */
        .app-screens-section {
            padding: 60px 0;
            background: var(--light-gray);
        }

        .app-screens-swiper {
            width: 100%;
            padding: 40px 0 60px 0;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .appscreen-card {
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(79,70,229,0.10);
            padding: 24px 18px 18px 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: box-shadow 0.3s, transform 0.3s;
            max-width: 320px;
            margin: 0 auto;
        }

        .appscreen-card img {
            width: 200px;
            height: 400px;
            object-fit: contain;
            border-radius: 18px;
            box-shadow: 0 4px 24px rgba(79,70,229,0.08);
            margin-bottom: 18px;
            background: #f3f4f6;
        }

        .appscreen-card .slide-caption {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.1rem;
            margin-top: 6px;
            text-align: center;
            display: none;
        }

        .swiper-pagination-bullet {
            background: var(--primary);
            opacity: 0.5;
        }

        .swiper-pagination-bullet-active {
            background: var(--accent);
            opacity: 1;
        }

        .swiper-button-next, .swiper-button-prev {
            color: var(--primary);
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(79,70,229,0.10);
            width: 44px;
            height: 44px;
            top: 50%;
            transform: translateY(-50%);
        }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.5rem;
        }

        /* Download Section */
        .download-section {
            padding: 60px 0;
            background: var(--gradient);
            color: var(--secondary);
            position: relative;
        }

        .download-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.2), transparent 50%);
            z-index: 0;
        }

        .download-section .container {
            position: relative;
            z-index: 1;
        }

        .download-section h2 {
            font-size: 2.75rem;
            margin-bottom: 25px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .download-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 35px;
        }

        .download-btn {
            background: #111827;
            color: var(--secondary);
            border-radius: 12px;
            padding: 12px 25px;
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .download-btn:hover {
            transform: scale(1.05);
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
        }

        .download-btn i {
            font-size: 2.5rem;
            margin-right: 12px;
        }

        .download-btn div {
            display: flex;
            flex-direction: column;
        }

        .download-btn div span {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .download-btn div strong {
            font-size: 1.25rem;
        }

        .app-mobile-frames {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 24px;
            position: relative;
            min-height: 520px;
        }

        .mobile-frame {
            width: 220px;
            height: 440px;
            background: #222;
            border-radius: 10px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.18);
            border: 6px solid #fff;
            position: absolute;
            left: 50px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .frame1 { top: 0; z-index: 3; transform: rotate(-7deg) scale(1.04); }
        .frame2 { top: 60px; left: 90px; z-index: 2; opacity: 0.92; transform: rotate(5deg) scale(0.98); }
        .frame3 { top: 120px; left: 30px; z-index: 1; opacity: 0.85; transform: rotate(-3deg) scale(0.93); }

        .app-frame-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        .app-mobile-frames-row {
            display: flex;
            flex-direction: row;
            align-items: flex-end;
            justify-content: center;
            gap: 32px;
            position: static;
            min-height: unset;
        }

        .app-mobile-frames-row .mobile-frame {
            position: static;
            width: 170px;
            height: 340px;
            margin: 0;
            opacity: 1;
            transform: none;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            background: white;
        }

        /* Footer */
        .footer {
            background: #111827;
            color: var(--secondary);
            padding: 80px 0 0;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .footer-brand img {
            margin-right: 12px;
        }

        .footer-brand:hover img {
            transform: rotate(360deg);
        }

        .footer-brand span {
            font-weight: 700;
            font-size: 1.75rem;
        }

        .footer-about {
            color: var(--dark-gray);
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: var(--secondary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .footer h5 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.25rem;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: var(--dark-gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer ul li a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }

        .contact-info {
            list-style: none;
            padding: 0;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            margin-right: 12px;
            color: var(--accent);
            font-size: 1.5rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            margin-top: 60px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
        }

        .footer-links a {
            color: var(--dark-gray);
            text-decoration: none;
            font-size: 1rem;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        /* Offcanvas Menu */
        .offcanvas {
            background: var(--primary);
            color: var(--secondary);
        }

        .offcanvas .btn-close {
            filter: invert(1);
        }

        .offcanvas .nav-link {
            color: var(--secondary);
            margin: 15px 0;
            font-size: 1.15rem;
        }

        .offcanvas .nav-link::after {
            background: var(--secondary);
        }

        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .floating-icon { font-size: 1.5rem; }
            .icon1, .icon2, .icon3, .icon4 { display: none; }
            .hero-section h1 {
                font-size: 2.75rem;
            }
            .section-header h2 {
                font-size: 2.25rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
            .app-mobile-frames {
                min-height: 340px;
            }
            .mobile-frame {
                width: 140px;
                height: 270px;
                left: 0;
            }
            .frame2 { left: 40px; }
            .frame3 { left: -20px; }
            .why-choose-bg { border-radius: 18px; }
            .creative-card { padding: 28px 12px 24px 12px; }
            .creative-icon { width: 54px; height: 54px; font-size: 1.5rem; }
            .appscreen-card img {
                width: 120px;
                height: 220px;
            }
            .appscreen-card {
                max-width: 180px;
                padding: 12px 6px 10px 6px;
            }
        }

        @media (max-width: 767.98px) {
            .hero-section, .about-section, .services-section, 
            .features-section, .app-screens-section, .download-section {
                padding: 80px 0 20px;
            }
            .hero-section h1 {
                font-size: 2.25rem;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            .download-buttons {
                justify-content: center;
            }
            .footer-links {
                justify-content: center;
                margin-top: 20px;
            }
            .footer-bottom .col-md-6 {
                text-align: center;
            }
            .app-mobile-frames {
                display: none;
            }
            .app-mobile-frames-row {
                display: none;
            }
            .why-choose-bg { border-radius: 10px; padding-bottom: 30px; }
            .why-choose-row { margin-top: -20px; }
            .app-screens-swiper {
                padding: 10px 0 30px 0;
            }
            .appscreen-card img {
                width: 100%;
                height: auto;
            }
            .appscreen-card {
                max-width: 70%;
                padding: 6px 2px 6px 2px;
            }
            .hero-section {
                padding: 60px 0px 0px;
            }
            .hero-section .hero-content {
                padding: 0 60px;
            }
            .about-section img {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-section h1 {
                font-size: 1.75rem;
            }
            .cta-buttons .btn {
                display: block;
                width: 100%;
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        h4 .footer-download {
            text-decoration: none;
            color: white;
            padding-bottom: 20px;
            display: flex;
            flex-direction: row;
            font-weight: 600;
        }
        h4 .footer-download i {
            margin-right: 10px;
        }
        h4 .footer-download .span1 {
            display: flex;
            flex-direction: column;
        }
        h4 .footer-download .span1 span {
            font-size: 12px;
            font-weight: normal !important;
        }
        @media (min-width: 992px) {
            .navbar-expand-lg .navbar-nav {
                flex-direction: row;
                display: flex;
                align-items: center;
            }
        }
        .slide-banners {
            padding-top: 80px;
        }
        .slide-banners img {
            border-radius: 6px;
        }
        @media screen and (max-width: 991px) {
            .slide-banners img {
                margin-bottom: 30px;
            }            
        }