
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        :root {
            --primary-dark: #002d77;
            --primary-blue: #0047bb;
            --primary-light: #1a73e8;
            --accent-green: #0d9f16;
            --text-dark: #021440;
            --text-gray: #434e5c;
            --text-light: #ffffff;
            --bg-white: #ffffff;
            --bg-light: #f8f9fa;
            --bg-card: #002d77;
            --star-gold: #f5a623;
            --border-light: #e8eaed;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--bg-white);
        }

       
             
         @font-face {
            font-family: "Eras Light ITC";
            src: url("../fonts/ErasITC-Light.woff2") format("woff2"),
                url("../fonts/ErasITC-Light.woff") format("woff");
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: "Eras Medium ITC";
            src: url("../fonts/ErasITC-Medium.woff2") format("woff2"),
                url("../fonts/ErasITC-Medium.woff") format("woff");
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }


        @font-face {
            font-family: "ErasITC-Medium";
            src: url("../fonts/ErasITC-Medium.woff");
        }


        @font-face {
            font-family: "Inter_18pt-Regular";
            src: url(../fonts/Inter/static/Inter_18pt-Regular.ttf);
        }

        @font-face {
            font-family: "PublicSans-Regular";
            src: url(../fonts/Public_Sans/static/PublicSans-Regular.ttf);
        }

        @font-face {
            font-family: "PublicSans-Bold";
            src: url(../fonts/Public_Sans/static/PublicSans-Bold.ttf);
        }


        @font-face {
            font-family: "ErasDemiITC";
            src: url(../fonts/ErasDemiITC.ttf);
        }




        H2 span {
            color: #0047bb;
            font-weight: bold;
            font-family: "PublicSans-Bold", sans-serif;
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2.5rem;
            line-height: 1.2em;
            color: #021440;
            font-family: "PublicSans-Bold", sans-serif;
            /* margin-bottom: 90px; */
        }

        h3 {
            text-align: left;
            font-size: 17px;
            line-height: 25px;
             color: #021440;
            font-family: "PublicSans-Bold", sans-serif;
        }

        p {
            font-size: 17px;
            line-height: 25px;
            color: #434e5c;
            font-family: "Inter_18pt-Regular";
        }


        .btn-primary {
            background: var(--accent-green);
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.2s;
            letter-spacing: 0.038rem;
        }

        .btn-primary:hover {
            background: #00b348;
            transform: translateY(-1px);
        }

        .btn-secondary {
            border: 2px solid #ffffff;
            color: #ffffff;
            padding: 10px 14px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            background: transparent;
            transition: all 0.2s;
            letter-spacing: 0.038rem;
        }

        .btn-secondary:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-1px);
        }

        /* Hero Section */
        .hero-section{
            background: linear-gradient(135deg, #002d77, #002d77);
        }

        .hero {
            padding: 100px 0px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 5%;
        }

        .hero-content h1 {
            font-size: 3.43rem;
            font-weight: 800;
            line-height: 1.15;
            color: #ffffff;
            margin-bottom: 24px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;;
        }

        .hero-content h1 span {
            color: #f2b500;
        }
        .hero-content .Services-path-link{
            text-align: left;
            margin-bottom: 5px;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }
        .hero-buttons a {
                width: 160px;
                text-align: center;
            }

        .hero-note {
            color: #ffffff;
            font-size: 14px;
        }

        .hero-visual {
            position: relative;
        }

        .hero-visual img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 12px;
            padding: 16px 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
            animation: float 3s ease-in-out infinite;
        }

        .floating-card.delivery {
            bottom: 40px;
            left: -30px;
        }

        .floating-card.status {
            top: 40px;
            right: -20px;
        }

        .card-label {
            font-size: 12px;
            color: var(--text-gray);
            margin-bottom: 4px;
        }

        .card-value {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .card-badge {
            display: inline-block;
            background: var(--accent-green);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-top: 8px;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Feature Cards Section */
        .features-section {
            padding: 70px 24px;
            margin: 0 auto;
            background: radial-gradient(ellipse at top,#f0f8ff 0%,#ffffff 70%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .feature-card {
            background:#fff3cf;
            border-radius: 16px;
            padding: 32px;
            color: white;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(11, 36, 71, 0.3);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 254, 251, 0.922);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: #021440;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #021440;
        }

        .feature-card p {
            font-size: 15px;
            line-height: 1.6;
            opacity: 0.95;
            color: #021440;
        }

        .feature-card a {
            color: white;
            text-decoration: underline;
        }

        /* Large Feature Cards */
        .large-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 24px;
        }
      
        .large-feature-card {
            background:#fff3cf;
            border-radius: 16px;
            padding: 40px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .large-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(11, 36, 71, 0.3);
        }

        .large-feature-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #021440;
        }

        .large-feature-card p {
            font-size: 15px;
            line-height: 1.7;
            opacity: 0.95;
            color: #021440;
        }

        /* All Features Section */
        .all-features {
            padding: 80px 24px;
            background: radial-gradient(ellipse at top,#f0f8ff 0%,#ffffff 70%);
        }

          .bbp-btn {
            margin-top: 60px;
            text-align: center;
           
    }
        .bbp-btn a {
            display: inline-block;
            padding: 15px 44px;
            background: #0047bb;
            color: #fff;
            font-size: 1.3rem;
            border-radius: 5px;
            text-decoration: none;
            box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
            transition: background 0.3s ease;
        }

        .bbp-btn a:hover{
            box-shadow: none;
        }


        .section-header {
            text-align: center;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
            text-align: center;
        }

        .section-header h2 span {
            color: var(--primary-blue);
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-gray);
            text-align: center;
        }

        /* Feature Showcase */
        .feature-showcase {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
        }

        .showcase-item {
            display: flex;
            gap: 30px;
            box-shadow: 12px 13px 17px rgb(180 181 255 / 36%);
            padding: 2rem;
        }

        .showcase-image {
            flex: 1;
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .showcase-image img {
            width: 100%;
            border-radius: 8px;
        }

        .showcase-content {
            flex: 1;
        }

        .showcase-content h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .showcase-content p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
        }

       /* How It Works */
       .how-section {
            background: #fff;
            padding: 20px 60px 80px;
            /* max-width: 900px; */
            margin: 0 auto;
            animation: fadeIn 0.8s ease;
        }

        .how-section .header {
            text-align: center;
            margin-bottom: 10px;
        }

        .how-section .icon-top {
            width: 60px;
            height: 60px;
            background: #0d9f16;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
        }

        .how-section .icon-top::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            top: 15px;
            left: 15px;
        }

        .how-section .icon-top::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            top: 15px;
            right: 15px;
        }

        .how-section .dot-bottom-left {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            bottom: 15px;
            left: 15px;
        }

        .how-section .dot-bottom-right {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            bottom: 15px;
            right: 15px;
        }

        .how-section .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 600;
            text-align: center;
        }

        .how-section .section-subtitle {
            font-size: 1.15rem;
            /* color: #6b7280; */
            line-height: 1.6;
            max-width: 500px;
            margin: 0 auto;
            text-align: center;
        }

        .how-section .process-wrapper {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            position: relative;
            padding-top: 40px;
        }

        .how-section .step {
            flex: 1;
            text-align: center;
            position: relative;
            animation: slideUp 0.8s ease;
        }

        .how-section .step:nth-child(1) { animation-delay: 0.2s; }
        .how-section .step:nth-child(2) { animation-delay: 0.4s; }
        .how-section .step:nth-child(3) { animation-delay: 0.6s; }

        .how-section .step-top {
            margin-bottom: 40px;
            position: relative;
        }

        .how-section .step-number {
            font-size: 0.9rem;
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 25px;
            text-align: center;
        }

        .how-section .icon-wrapper {
            width: 70px;
            height: 70px;
            margin: 0 auto;
            position: relative;
        }

        .how-section .circle-outer {
            width: 80px;
            height: 80px;
            border: 2px dashed #d1d5db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .how-section .step:hover .circle-outer {
            border-color: #2d7a6e;
            transform: scale(1.05);
        }

        .how-section .circle-inner {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #2d7a6e 0%, #3d8f80 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(45, 122, 110, 0.2);
            transition: all 0.3s ease;
        }

        .how-section .step:hover .circle-inner {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(45, 122, 110, 0.3);
        }

        .how-section .icon {
            font-size: 1.5rem;
            color: #fff;
        }
         .how-section .icon img {
            width: 100%;
            height: auto;
         }

        .how-section .dashed-line {
            position: absolute;
            top: 40px;
            left: 60%;
            width: 100%;
            height: 2px;
            border-top: 2px dashed #d1d5db;
            z-index: 0;
        }

        .how-section .step:last-child .dashed-line {
            display: none;
        }

        .how-section .step h3 {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 12px;
            font-weight: 600;
            text-align: center;
        }

        .how-section .step p {
            font-size: 1rem;
            /* color: #6b7280; */
            line-height: 1.6;
            padding: 10px 20px;
            margin: 0 auto;
            text-align: center;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .how-section {
                padding: 50px 30px;
            }

            .how-section .section-title {
                font-size: 2rem;
            }

            .how-section .process-wrapper {
                flex-direction: column;
                gap: 50px;
            }

            .how-section .dashed-line {
                display: none;
            }

            .how-section .step p {
                max-width: 100%;
            }
        }

        /* Problems Section */
        .problems-section {
            padding: 80px 24px;
            background: radial-gradient(ellipse at top,#f0f8ff 0%,#ffffff 70%);
            color: white;
        }

        .problems-section .section-header h2 {
            color: #021440;
        }

        .problems-section .section-header h2 span {
            color: #0047bb;
        }

        .problems-section .section-header p {
            color: #021440;
        }

        .problems-grid {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .problem-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 24px;
            background: #002d77;
            border-radius: 6px;
            transition: background 0.3s;
        }

        .problem-item:hover {
            background: #0047bb;
        }

        .problem-icon {
            width: 28px;
            height: 28px;
            background: var(--accent-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .problem-icon svg {
            width: 18px;
            height: 18px;
            stroke: white;
        }

        .problem-item p {
            font-size: 16px;
            line-height: 1.5;
            color: #ffffff;
        }

        
        /* Additional Features */
        .additional-features {
            padding: 80px 24px;
            background: white;
        }

        .additional-grid {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .additional-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px 24px;
            background: linear-gradient(135deg, #e4eeff9e 50%, #cedfffa8 100%);
            border-radius: 12px;
            transition: background 0.3s, transform 0.3s;
        }

        .additional-item:hover {
            background: #e8f4ff;
            transform: translateX(5px);
        }

        .additional-item svg {
            width: 22px;
            height: 22px;
            stroke: var(--primary-blue);
            flex-shrink: 0;
        }

        .additional-item span {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 24px;
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a6e 100%);
            text-align: center;
            color: white;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 18px;
            opacity: 0.85;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .btn-white {
            background: white;
            color: var(--primary-dark);
            padding: 16px 32px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s;
        }

        .btn-white:hover {
            background: var(--bg-light);
            transform: translateY(-2px);
        }

        .btn-ghost {
            border: 2px solid white;
            color: white;
            padding: 16px 32px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            background: transparent;
            transition: all 0.2s;
        }

        .btn-ghost:hover {
            background: rgba(255,255,255,0.1);
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            color: white;
            padding: 60px 24px 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-brand h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 14px;
            opacity: 0.7;
            line-height: 1.7;
        }

        .footer-column h4 {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            opacity: 0.6;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .footer-column a:hover {
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 14px;
            opacity: 0.6;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content h1{
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }
            .hero-content .Services-path-link{
                text-align: center;
                margin-bottom: 15px;
            }

 
            .hero-note {
                text-align: center;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .large-features {
                grid-template-columns: 1fr;
            }

            .feature-showcase {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.3rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

            .problems-grid {
                grid-template-columns: 1fr;
            }

            .comparison-container {
                grid-template-columns: 1fr;
            }

            .additional-grid {
                grid-template-columns: 1fr;
            }

            .cta-content h2 {
                font-size: 32px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .section-header h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            H2 span {
                font-size: 2rem;
            }
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons a {
                width: 70%;
                text-align: center;
            }
            .feature-card h3 {
                font-size: 18px;
            }
            .feature-card p {
                font-size: 14px;
            }
            .feature-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 15px;
            }
            .large-feature-card h3 {
                font-size: 18px;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            .section-header p {
                font-size: 16px;
            }
            .showcase-content h3 {
                font-size: 18px;
            }
            .showcase-content p {
                font-size: 1rem;
            }
            .how-section .step h3 {
                font-size: 1.5rem;
            }
            .problem-item p {
                font-size: 1rem;
            }
            .problem-icon {
                width: 24px;
                height: 24px;
            }
            .additional-item span {
                font-size: 1rem;
            }
        }
    