        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: #ffffff;
            color: #333333;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        
        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        .hero-section.text-white.rounded-3.p-5.mb-5.custom-color {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        p.lead.mb-4.fs-5 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        a.btn.btn-light.btn-lg.px-4 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        button.btn.btn-outline-light.btn-lg.px-4 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        @media (max-width: 394px) {
    button.btn.btn-light.btn-lg.px-4.pulse {
        font-size: 17px;
    }
}

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        .parallax-section {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .pricing-card {
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .pricing-card:hover {
            border-color: #0f1f7a;
            transform: scale(1.02);
        }
        
        .pricing-card.popular {
            border: 3px solid #0f1f7a;
            position: relative;
        }
        
        .pricing-card.popular::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
            color: white;
            padding: 5px 20px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .testimonial-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            box-shadow: 0 15px 35px rgba(15, 31, 122, 0.1);
        }
        
        .star-rating {
            color: #ffc107;
        }
        
        .section-header {
            position: relative;
            padding-bottom: 20px;
        }
        
        .section-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
            border-radius: 2px;
        }
        
        .image-overlay {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }
        
        .image-overlay img {
            transition: transform 0.5s ease;
        }
        
        .image-overlay:hover img {
            transform: scale(1.05);
        }
        
        .btn-gradient {
            background: linear-gradient(135deg, #0f1f7a 0%, #0056b3 100%);
            border: none;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(15, 31, 122, 0.3);
        }
        
        .btn-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(15, 31, 122, 0.4);
            color: white;
        }
        
        .floating {
            animation: floating 8s ease-in-out infinite;
        }
        
        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .pulse {
            animation: pulse 6s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .divider-gradient {
            height: 3px;
            background: linear-gradient(90deg, transparent, #0f1f7a, transparent);
            border: none;
            margin: 4rem 0;
        }
        .navbar-white {
            background-color: #ffffff !important;
            border-bottom: 1px solid #e9ecef;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-white .navbar-brand,
        .navbar-white .nav-link {
            color: #555555 !important;
            font-size: 0.95rem;
        }
        
        .navbar-white .nav-link {
            padding: 0.25rem 0.75rem !important;
            margin: 0 0.25rem;
        }
        @media (min-width: 1024px) {
          a.nav-border { 
            border-radius: 3px;
            text-align: center;
            padding: 12px 15px;
            transition: border-color 0.3s ease;
            min-width: 94px;
          }
        }

        
        .navbar-white .navbar-toggler {
            border-color: #dee2e6;
        }
        
        .footer-white {
            background-color: #fafbfc;
            border-top: 1px solid #f0f0f0;
            color: #666;
            padding: 2rem 0 !important;
        }
        
        .footer-white h6 {
            color: #333333;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .footer-white a {
            font-size: 0.85rem;
            color: #666 !important;
        }
        
        .footer-white a:hover {
            color: #0f1f7a !important;
        }
        
        .footer-white .text-primary {
            color: #666 !important;
        }
        
        .card {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            color: white;
            border-radius: 15px;
        }
        
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, #007bff, #0056b3);
            border: none;
            margin: 3rem 0;
        }
        
        .icon-feature {
            transition: transform 0.3s ease;
        }
        
        .icon-feature:hover {
            transform: translateY(-5px);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #0f1f7a, #0056b3);
            border: none;
            border-radius: 6px;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
        }
        
        .form-control, .form-select {
            border-radius: 10px;
            border: 2px solid #e9ecef;
            padding: 12px 15px;
            transition: border-color 0.3s ease;
        }
        strong.text-primary, strong.text-success, strong.text-info {
            font-family: fangsong;
            color: #0f1f7a !important;
        }
        .form-control:focus, .form-select:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }
        .bg-new{
            background: #c20a2a !important;
        }
        .clr-new{
            color: #c20a2a !important;
        }
        .bg-new2{
        background-color: #0056b3 !important;
        }
        .clr-new2{
        color: #0056b3 !important;
        }



        
        .alert {
            border-radius: 15px;
            border: none;
        }
        .text-primary {
            color: #0f1f7a !important;
        }
        .bg-primary {
            background-color: rgb(15 31 122) !important;
        }
        .text-gradient {
            background: linear-gradient(135deg, #0f1f7a, #0056b3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .rounded-circle
         {
            border-radius: 10px !important;
        }
        .progress-thin {
            height: 8px;
        }
        
        .icon-circle-sm {
            width: 40px;
            height: 40px;
        }
        
        .icon-circle-md {
            width: 50px;
            height: 50px;
        }
        
        .icon-circle-lg {
            width: 80px;
            height: 80px;
        }
        
        .signature-canvas {
            border: 2px solid #dee2e6;
            border-radius: 10px;
            width: 100%;
            height: 200px;
            touch-action: none;
            background-color: white;
        }
        main.container {
            margin-bottom: 100px;
        }
        .badge-new{
            background: white;
            box-shadow: 0px 1px 13px 1px #0f1f7a24;
            padding: 16px !important;
        }
        .signature-preview {
            max-width: 100%;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            background-color: white;
        }
        .new{
                border: 4px solid #0f1f7a;
                border-radius: 6px;
        }
        .btn-new{
            background: #2d3a89 !important;
            border: 4px solid #33408e !important;
        }
        
        .logo-img {
            height: 55px;
        }
        
        .icon-fixed-md {
            min-width: 50px;
            flex-shrink: 0;
        }
        
        .progress-33 {
            width: 33%;
        }
        
        .progress-66 {
            width: 66%;
        }
        
        .footer-logo {
            height: 50px;
        }
        .new-color{
           color: #0f1f7a !important;
        }

        .new-ft{
            background-color: #c10828 !important;
            padding-left: 10px;
            padding-right: 10px;
        }

        .new-ft1{
            padding-right: 18px;
        }
        .footer-white .text-primary {
            color: #495057 !important;
        }
        .bg-warning.text-dark.rounded-circle.d-flex.align-items-center.justify-content-center.me-3.icon-circle-sm {
            background-color: #0f1f7a !important;
            color: white !important;
        }
        .case-ref{
            font-family: fantasy;
            font-synthesis-weight: none;
            font-size: xxx-large;
        }
@media (max-width: 494px) {
    h4#evaluationModalLabel {
        display: none;
    }
}
i.fas.fa-envelope.me-2.mt-1 {
    position: relative;
    top: 10px;
}
