        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Manrope', sans-serif;
            color: #2d3748;
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
        }
        /* Header */
        
        .top-header {
            background: #2c5282;
            padding: 8px 0;
            font-size: 13px;
            color: #fff;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .main-header {
            background: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 800;
            color: #2b6cb0;
            text-decoration: none;
        }
        
        .nav-menu {
            list-style: none;
            display: flex;
            gap: 32px;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        
        .nav-menu li a {
            color: #4a5568;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: color 0.2s;
        }
        
        .nav-menu li a:hover {
            color: #2b6cb0;
        }
        
        .btn-header {
            background: #2b6cb0;
            color: white;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-header:hover {
            background: #2c5282;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
        }
        /* Hero Section */
        
        .hero {
background-color: #ffffff;
background-image: url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */            padding: 40px 0 60px;
        }
        
        .hero-badge {
            display: inline-block;
            background: #ebf4ff;
            color: #2c5282;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        
        .hero h1 {
            font-size: 30px;
            font-weight: 800;
            line-height: 1.15;
            color: #1a202c;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }
        
        .hero p.lead {
            font-size: 16px;
            font-weight: 500;
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 32px;
        }
        
        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
        }
        
        .btn-primary-lg {
            background: #2b6cb0;
            color: white;
            padding: 16px 36px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-primary-lg:hover {
            background: #2c5282;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(43, 108, 176, 0.3);
        }
        
        .btn-secondary-lg {
            background: white;
            color: #2b6cb0;
            padding: 16px 36px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            border: 2px solid #2b6cb0;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-secondary-lg:hover {
            background: #f7fafc;
        }
        
        .hero-features {
            display: flex;
            gap: 32px;
            font-size: 14px;
            color: #4a5568;
        }
        
        .hero-features span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .hero-features i {
            color: #fff;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        /* Testimonial Carousel */
        
        .testimonial-carousel {
            background: white;
            padding: 60px 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .testimonial-carousel h6 {
            text-align: center;
            font-size: 13px;
            color: #718096;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 40px;
        }
        
        .testimonial-scroll {
            display: flex;
            gap: 40px;
            overflow-x: auto;
            padding-bottom: 20px;
            scroll-behavior: smooth;
        }
        
        .testimonial-scroll::-webkit-scrollbar {
            height: 6px;
        }
        
        .testimonial-scroll::-webkit-scrollbar-thumb {
            background: #cbd5e0;
            border-radius: 3px;
        }
        
        .testimonial-item {
            min-width: 400px;
            background: #f7fafc;
            padding: 32px;
            border-radius: 12px;
            border-left: 4px solid #2b6cb0;
        }
        
        .testimonial-item p {
            font-size: 16px;
            color: #2d3748;
            margin-bottom: 20px;
            line-height: 1.6;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #2b6cb0;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }
        
        .testimonial-info h5 {
            font-size: 14px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 2px;
        }
        
        .testimonial-info p {
            font-size: 13px;
            color: #718096;
            margin: 0;
            font-style: normal;
        }
        /* Section */
        
        .section {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        .section-label {
            font-size: 13px;
            color: #2b6cb0;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 16px;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #4a5568;
            line-height: 1.6;
        }
        /* Feature Cards Grid */
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }
        
        .feature-card {
            background: white;
            padding: 40px 32px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
            border-color: #2b6cb0;
        }
        
        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        
        .feature-icon i {
            font-size: 28px;
            color: white;
        }
        
        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 12px;
        }
        
        .feature-card p {
            font-size: 15px;
            color: #4a5568;
            line-height: 1.6;
            margin: 0;
        }
        /* Two Column Section */
        
        .two-col-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .two-col-section img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .two-col-content h2 {
            font-size: 36px;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 24px;
            line-height: 1.2;
        }
        
        .two-col-content p {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 16px 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li i {
            color: #48bb78;
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .feature-list li div h4 {
            font-size: 16px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 6px;
        }
        
        .feature-list li div p {
            font-size: 15px;
            color: #4a5568;
            margin: 0;
            line-height: 1.5;
        }
        /* Stats Section */
        
        .stats-section {
            background: #f7fafc;
            padding: 60px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        
        .stat-item h3 {
            font-size: 48px;
            font-weight: 800;
            color: #2b6cb0;
            margin-bottom: 8px;
        }
        
        .stat-item p {
            font-size: 16px;
            color: #4a5568;
            margin: 0;
        }
        /* Benefits Grid */
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }
        
        .benefit-item {
            display: flex;
            gap: 20px;
        }
        
        .benefit-icon {
            width: 56px;
            height: 56px;
            background: #ebf4ff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .benefit-icon i {
            font-size: 24px;
            color: #2b6cb0;
        }
        
        .benefit-content h4 {
            font-size: 18px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 8px;
        }
        
        .benefit-content p {
            font-size: 15px;
            color: #4a5568;
            margin: 0;
            line-height: 1.5;
        }
        /* CTA Section */
        
        .cta-section {
            background-color: #013199;
background-image: url("https://www.transparenttextures.com/patterns/blizzard.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
            padding: 100px 0;
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 48px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 20px;
            color: white;
            opacity: 0.95;
            margin-bottom: 40px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 32px;
        }
        
        .cta-buttons .btn-primary-lg {
            background: white;
            color: #764ba2;
        }
        
        .cta-buttons .btn-primary-lg:hover {
            background: #f7fafc;
        }
        
        .cta-buttons .btn-secondary-lg {
            background: transparent;
            color: white;
            border-color: white;
        }
        
        .cta-buttons .btn-secondary-lg:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .cta-contact {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .cta-contact a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }
        /* Footer */
        
        footer {
            background: #1a202c;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }
        
        .footer-brand h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        
        .footer-brand p {
            font-size: 15px;
            color: #a0aec0;
            line-height: 1.6;
            margin-bottom: 24px;
        }
        
        .social-links {
            display: flex;
            gap: 12px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: #2d3748;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: #2b6cb0;
            transform: translateY(-2px);
        }
        
        .footer-links h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: #a0aec0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: 14px;
        }
        
        .integration-logos {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 50px;
        }
        
        .integration-logo-item {
            background: white;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80px;
            transition: all 0.3s;
        }
        
        .integration-logo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .integration-logo-item img {
            max-width: 100%;
            max-height: 50px;
            object-fit: contain;
        }
        /* Responsive */
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 38px;
            }
            .section-title {
                font-size: 32px;
            }
            .two-col-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .nav-menu {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
            .hero p.lead {
                font-size: 18px;
            }
            .hero-cta {
                flex-direction: column;
            }
            .hero-features {
                flex-direction: column;
                gap: 16px;
            }
            .testimonial-item {
                min-width: 320px;
            }
            .section {
                padding: 60px 0;
            }
            .section-title {
                font-size: 28px;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            .cta-section h2 {
                font-size: 32px;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .integration-logos {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .form-container {
            background: white;
            border-radius: 20px;
            padding: 30px 20px;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .form-title {
            font-size: 28px;
            font-weight: 700;
            color: #2d3748;
            text-align: center;
        }
        
        .form-label {
            font-size: 14px;
            font-weight: 500;
            color: #718096;
            margin-bottom: 8px;
        }
        
        .form-control,
        .form-select {
            border: 1.5px solid #e2e8f0;
            border-radius: 8px;
            padding: 12px 16px;
            font-size: 15px;
            transition: all 0.2s;
        }
        
        .form-control:focus,
        .form-select:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
        }
        
        .form-control::placeholder {
            color: #cbd5e0;
        }
        
        textarea.form-control {
            resize: none;
            min-height: 80px;
        }
        
        .phone-input-group {
            display: flex;
            gap: 0;
        }
        
        .phone-code {
            background: #f7fafc;
            border: 1.5px solid #e2e8f0;
            border-right: none;
            border-radius: 8px 0 0 8px;
            padding: 12px 16px;
            font-size: 15px;
            color: #4a5568;
            min-width: 80px;
        }
        
        .phone-code:focus {
            outline: none;
            border-color: #0d6efd;
            background: white;
        }
        
        .phone-input {
            border-radius: 0 8px 8px 0 !important;
        }
        
        .btn-submit {
            background: #0d6efd;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            width: 100%;
            margin-top: 24px;
            transition: all 0.3s;
        }
        
        .btn-submit:hover {
            background: #0b5ed7;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
        }
        
        .btn-submit:active {
            transform: translateY(0);
        }
        
        @media (max-width: 576px) {
            .form-container {
                padding: 32px 24px;
            }
            .form-title {
                font-size: 24px;
            }
        }
        
        .testimonial-wrapper {
            position: relative;
        }
        
        .testimonial-scroll {
            display: flex;
            animation: scrollX 40s linear infinite;
            width: max-content;
        }
        
        .testimonial-item {
            background: #fff;
            min-width: 300px;
            max-width: 320px;
            border: 1px solid #eee;
            transition: transform 0.3s ease;
        }
        
        .testimonial-item:hover {
            transform: translateY(-6px);
        }
        
        .testimonial-avatar {
            background: var(--bs-primary);
            color: #fff;
            font-weight: 600;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        @keyframes scrollX {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        /* Make it responsive */
        
        @media (max-width: 768px) {
            .testimonial-item {
                min-width: 250px;
            }
            .testimonial-scroll {
                animation-duration: 30s;
            }
        }

            .footer-dataoxy {
      background: #1a202c;
      color: #cfcfcf;
      padding-top: 2rem;
    }
    .footer-dataoxy a { color: #cfcfcf; text-decoration: none; }
    .footer-dataoxy a:hover { text-decoration: underline; }

    .footer-divider {
      height: 1px;
      background: #1a202c;
      margin: 1.5rem 0 2rem;
    }

    .cert-badge {
      background: #fff;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 14px;
      padding: .35rem .6rem;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      min-height: 48px;
    }
    .cert-badge img {
      height: 45px;
      width: auto;
      display: block;
    }

    .footer-search .form-control {
      background: #1a202c;
      border-color: rgba(255,255,255,.12);
      color: #e9e9e9;
    }
    .footer-search .form-control::placeholder { color: #9e9e9e; }
    .footer-search .btn {
      background: #3a3a3a;
      border-color: rgba(255,255,255,.12);
      color: #e9e9e9;
    }
    .footer-search .btn:hover { background: #454545; }

    .link-pipe a + a::before {
      content: " | ";
      color: rgba(255,255,255,.35);
      margin: 0 .5rem;
    }

    .copyright {
      color: #9e9e9e;
      font-size: .925rem;
    }

       .growth-section {
      background-color: #f7ebdc; /* light beige background like in screenshot */
      padding: 4rem 0;
      text-align: center;
    }
    .growth-section h2 {
      font-size: 2rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 2rem;
    }
    .growth-box {
      border-radius: 50px 50px 0 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      padding: 2rem 1rem;
      color: #000;
      position: relative;
    }
    .growth-box h3 {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .growth-box p {
      margin-bottom: 0;
      font-size: 1rem;
    }
    .growth-purple {
      background-color: #c2b0f0;
      height: 280px;
    }
    .growth-blue {
      background-color: #b5e8f5;
      height: 340px;
    }
    .growth-orange {
      background-color: #fcd1b0;
      height: 400px;
    }
    .growth-box img {
      max-width: 100%;
      height: auto;
      border-radius: 0 0 50px 50px;
      position: absolute;
      bottom: 0;
      transform: translateX(40%);
    }
    @media (max-width: 768px) {
      .growth-box {
        margin-bottom: 2rem;
      }
      .growth-box img {
        position: static;
        transform: translateY(9%) translateX(32%);
        margin-top: -13rem;
      }
    }

        :root {
      --section-bg: #000; 
      --text-light: #fff;
      --accent-green: #fff;
      --accent-red: #e41e26;
      --dot-green: #15d17e;
    }

    .bigin-section {
      background: var(--section-bg) url('https://www.transparenttextures.com/patterns/hexellence.png') repeat;
      color: var(--text-light);
      padding: 4rem 2rem;
      border-radius: 24px;
      max-width: 1200px;
      margin: 4rem auto;
    }

    .bigin-heading {
      font-size: 1.9rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .bigin-subheading {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--accent-green);
      margin-bottom: 1rem;
    }
    .bigin-desc {
      font-size: 1.125rem;
      color: #d2d2d2;
      max-width: 600px;
    }

    .cta-btn {
      background: var(--accent-red);
      color: #fff;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 999px;
      border: none;
      margin-top: 1.5rem;
    }

    .cta-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 1rem;
      font-size: 0.95rem;
      opacity: 0.9;
    }

    .feature-list {
      margin-top: 2rem;
    }
    .feature-list ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .feature-list li {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .feature-list li::before {
      content: "";
      color: var(--dot-green);
      font-size: 1rem;
    }

    .kanban-image {
      max-width: 100%;
      border-radius: 10px;
      display: block;
      margin: 0 auto;
    }

    @media (max-width: 992px) {
      .bigin-heading {
        font-size: 1.6rem;
      }
      .bigin-subheading {
        font-size: 1.8rem;
      }
      .bigin-desc {
        font-size: 1rem;
      }
    }

.sticky-call-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #0078ff;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

.sticky-call-btn:hover {
  background-color: #005fcc;
  transform: translateY(-2px);
}

.sticky-call-btn .flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .sticky-call-btn {
    display: flex;
  }
}

}