 
       
        .text-green-brand { color: #00873c; }
        .text-slate-900 { color: #0f172a; }
        .bg-mesh {
            background-color: #f8fafc;
            background-image: 
                radial-gradient(at 0% 0%, rgba(20, 184, 166, 0.04) 0, transparent 50%), 
                radial-gradient(at 50% 0%, rgba(14, 165, 233, 0.04) 0, transparent 50%),
                radial-gradient(at 100% 100%, rgba(13, 148, 136, 0.03) 0, transparent 50%);
        }

        /* Hero Section */
        .hero-section {
            padding: 4rem 0 5rem;
        }
        @media (min-width: 768px) {
            .hero-section { padding: 6rem 0 7rem; }
        }
        .hero-blob {
            position: absolute;
            width: 320px;
            height: 320px;
            background-color: rgba(5, 150, 105, 0.4);
            border-radius: 50%;
            filter: blur(120px);
            z-index: -1;
        }
        .hero-blob-1 { top: 25%; left: -80px; }
        .hero-blob-2 { top: 33%; right: -80px; }
        .hero-badge {
            background-color: #f0fdf4;
            border: 1px solid #ccfbf1;
            color: #00873c;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 0.5rem 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .hero-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.25;
            letter-spacing: -0.025em;
        }
        @media (min-width: 576px) { .hero-title { font-size: 3rem; } }
        @media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
        .hero-text {
            color: #475569;
            font-size: 1.125rem;
            line-height: 1.625;
            max-width: 42rem;
        }
        @media (min-width: 768px) { .hero-text { font-size: 1.25rem; } }
        
        .btn-custom-primary {
            background-color: #00873c;
            color: #ffffff;
            padding: 1rem 2rem;
            font-weight: 700;
            border-radius: 50rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            box-shadow: 0 10px 15px -3px rgba(0, 135, 60, 0.3);
            transition: all 0.3s ease;
        }
        .btn-custom-primary:hover {
            background-color: #005a27;
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Mockup Card */
        .mockup-wrapper {
            width: 100%;
            max-width: 28rem;
            background-color: #ffffff;
            border-radius: 1.5rem;
            padding: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(203, 213, 225, 0.6);
            border: 1px solid #f1f5f9;
        }
        .mockup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            border-bottom: 1px solid #f1f5f9;
            margin-bottom: 1rem;
        }
        .mockup-dots {
            display: flex;
            gap: 0.5rem;
        }
        .mockup-dot {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
        }
        .mockup-dot.red { background-color: #f87171; }
        .mockup-dot.yellow { background-color: #facc15; }
        .mockup-dot.green { background-color: #4ade80; }
        .mockup-title { font-size: 0.75rem; font-weight: 600; color: #94a3b8; }
        .mockup-item {
            background-color: #f8fafc;
            padding: 1rem;
            border-radius: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        .mockup-item:last-child { margin-bottom: 0; }
        .mockup-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .mockup-icon.green { background-color: #defbe1; color: #00873c; }
        .mockup-icon.blue { background-color: #eff6ff; color: #2563eb; }
        .mockup-icon.amber { background-color: #fffbeb; color: #d97706; }
        .mockup-info p { margin: 0; }
        .mockup-info .label { font-size: 0.75rem; color: #94a3b8; font-weight: 500; }
        .mockup-info .val { font-size: 0.875rem; font-weight: 700; color: #1e293b; }
        .mockup-badge {
            font-size: 0.75rem;
            font-weight: 800;
            padding: 0.25rem 0.5rem;
            border-radius: 0.5rem;
        }
        .mockup-badge.green { background-color: #defbe1; color: #00873c; }
        .mockup-badge.blue { background-color: #eff6ff; color: #2563eb; }
        .mockup-badge.amber { background-color: #fffbeb; color: #d97706; }

        /* Feature Section */
        .features-wrapper {
            padding: 4rem 0;
            background-color: #f8fafc;
            border-top: 1px solid #f1f5f9;
        }
        .features-heading {
            font-size: 1.875rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.25;
            margin-bottom: 4rem;
        }
        @media (min-width: 768px) { .features-heading { font-size: 2.25rem; } }
        
        .feature-box {
            background-color: #ffffff;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-bottom: 3px solid #00873c;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }
        .feature-box:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            transform: translateY(-8px);
        }
        
        /* Fixed FontAwesome sizes inside feature boxes */
        .feature-box .feature-icon {
            font-size: 3rem;
            color: #00873c;
            margin-bottom: 1.5rem;
            display: block;
        }

        .feature-box h3 {
            font-size: 1.125rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.75rem;
        }
        .feature-box p {
            font-size: 0.84375rem;
            color: #64748b;
            line-height: 1.625;
            margin: 0;
        }

        /* General Sections */
        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 50px;
            color: #072b52;
        }

        /* Raseed Basic Features Grid */
        .features-section { padding: 80px 0; }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        .feature-card {
            background: #fff;
            border-radius: 15px;
            padding: 40px 25px;
            text-align: center;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
            transition: 0.3s;
        }
        .feature-card:hover { transform: translateY(-8px); }
        .feature-card i {
            font-size: 50px;
            color: #44c16f;
            margin-bottom: 20px;
        }
        .feature-card h3 {
            font-size: 24px;
            font-weight: 600;
            line-height: 1.4;
        }

        /* Benefits Grid */
        .benefits-section { padding: 40px 0 80px; }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .benefit-card {
            background: #2eb84f;
            color: #fff;
            padding: 40px 25px;
            border-radius: 10px;
            text-align: center;
            transition: 0.3s;
        }
        .benefit-card:hover { transform: translateY(-8px); }
        .benefit-card i {
            font-size: 50px;
            margin-bottom: 20px;
        }
        .benefit-card h4 {
            font-size: 22px;
            font-weight: 600;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #0b3d6f, #072b52);
            text-align: center;
            color: #fff;
        }
        .cta-section h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        .cta-section p {
            font-size: 18px;
            max-width: 700px;
            margin: auto;
            margin-bottom: 35px;
            line-height: 1.8;
        }
        .cta-btn {
            display: inline-block;
            background: #2eb84f;
            color: #fff;
            padding: 15px 40px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            transition: 0.3s;
        }
        .cta-btn:hover { background: #25a543; color: #fff; }

        @media(max-width: 992px){
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .section-title { font-size: 34px; }
        }

        @media(max-width: 768px){
            .features-grid { grid-template-columns: 1fr; }
            .benefits-grid { grid-template-columns: 1fr; }
            .feature-card { padding: 30px 20px; }
            .feature-card h3 { font-size: 20px; }
            .benefit-card h4 { font-size: 18px; }
            .section-title { font-size: 28px; margin-bottom: 30px; }
            .cta-section h2 { font-size: 30px; }
            .cta-section p { font-size: 16px; }
        }

        /* Floating Widgets */
        .back-to-top {
            position: fixed;
            bottom: 1.5rem;
            left: 1.5rem;
            width: 2.75rem;
            height: 2.75rem;
            background-color: #00873c;
            color: #ffffff;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transform: translateY(5rem);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1050;
            border: none;
            cursor: pointer;
        }
        .back-to-top.show {
            transform: translateY(0);
            opacity: 1;
        }
        .back-to-top:hover { background-color: #005a27; color: #ffffff; }

        .whatsapp-float {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            padding: 0.625rem 1rem;
            background-color: #25d366;
            color: #ffffff;
            border-radius: 50rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 1050;
            text-decoration: none;
        }
        .whatsapp-float:hover {
            background-color: #128c7e;
            color: #ffffff;
            transform: scale(1.05);
        }
        .whatsapp-float span { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.025em; }
        .whatsapp-float i { font-size: 1.5rem; }
