
        /* ==========================================================================
           Custom Design Upgrades - Reducing Brand Color Background Densities
           ========================================================================== */

        /* 1. About Section Background Adjustment & Premium Upgrades */
        .rs-about-five::before {
            background: 
                radial-gradient(circle at 15% 25%, rgba(233, 116, 42, 0.16) 0%, transparent 45%),
                radial-gradient(circle at 85% 75%, rgba(15, 90, 46, 0.28) 0%, transparent 55%),
                radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(180deg, rgba(10, 20, 15, 0.94) 0%, rgba(4, 8, 6, 0.98) 100%),
                url('assets/images/about/factory-rnd-bg.png') no-repeat center center / cover !important;
            background-size: 100% 100%, 100% 100%, 28px 28px, 100% 100%, cover !important;
            height: 100% !important;
            opacity: 1 !important;
            transition: all 0.5s ease;
        }
        
        .rs-about-five .rs-about-wrapper {
            background: rgba(13, 24, 18, 0.6) !important;
            backdrop-filter: blur(25px) !important;
            -webkit-backdrop-filter: blur(25px) !important;
            border: 1px solid rgba(255, 255, 255, 0.06) !important;
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.55), 
                inset 0 1px 0 rgba(255, 255, 255, 0.12),
                0 0 50px rgba(15, 90, 46, 0.05) !important;
            position: relative !important;
            overflow: hidden !important;
        }

        .rs-about-five .section-subtitle {
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
            background: rgba(233, 116, 42, 0.12) !important;
            color: var(--rs-theme-primary) !important;
            border: 1px solid rgba(233, 116, 42, 0.3) !important;
            padding: 6px 18px !important;
            border-radius: 50px !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            letter-spacing: 1.5px !important;
            margin-bottom: 24px !important;
            box-shadow: 0 0 15px rgba(233, 116, 42, 0.08) !important;
            animation: pulse-border 3s infinite alternate;
        }

        @keyframes pulse-border {
            0% {
                border-color: rgba(233, 116, 42, 0.3);
                box-shadow: 0 0 15px rgba(233, 116, 42, 0.08);
            }
            100% {
                border-color: rgba(233, 116, 42, 0.6);
                box-shadow: 0 0 25px rgba(233, 116, 42, 0.2);
            }
        }

        .rs-about-five .section-desc {
            color: #94A3B8 !important;
            font-size: 16px !important;
            line-height: 1.7 !important;
        }

        /* List Items Redesign */
        .rs-about-five .rs-about-list-wrapper {
            gap: 16px 16px !important;
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
        }
        @media only screen and (max-width: 575px) {
            .rs-about-five .rs-about-list-wrapper {
                grid-template-columns: 1fr !important;
            }
        }
        
        .rs-about-five .rs-about-list-item {
            background: rgba(255, 255, 255, 0.03) !important;
            border: 1px solid rgba(255, 255, 255, 0.07) !important;
            padding: 20px 24px !important;
            border-radius: 12px !important;
            display: flex !important;
            align-items: center !important;
            gap: 16px !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
        }
        
        .rs-about-five .rs-about-list-item:hover {
            background: rgba(15, 90, 46, 0.15) !important;
            border-color: rgba(15, 90, 46, 0.45) !important;
            transform: translateY(-4px) scale(1.02) !important;
            box-shadow: 
                0 15px 30px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(15, 90, 46, 0.15) !important;
        }
        
        .rs-about-five .rs-about-list-icon {
            background: rgba(233, 116, 42, 0.08) !important;
            border: 1px solid rgba(233, 116, 42, 0.25) !important;
            width: 44px !important;
            height: 44px !important;
            min-width: 44px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            border-radius: 10px !important;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
        }
        
        .rs-about-five .rs-about-list-item:hover .rs-about-list-icon {
            background: var(--rs-theme-primary) !important;
            border-color: var(--rs-theme-primary) !important;
            box-shadow: 0 0 15px rgba(233, 116, 42, 0.45) !important;
            transform: rotate(5deg) scale(1.05) !important;
        }
        
        .rs-about-five .rs-about-list-icon svg path,
        .rs-about-five .rs-about-list-icon svg circle,
        .rs-about-five .rs-about-list-icon svg rect,
        .rs-about-five .rs-about-list-icon svg line,
        .rs-about-five .rs-about-list-icon svg polyline,
        .rs-about-five .rs-about-list-icon svg polygon {
            stroke: var(--rs-theme-primary) !important;
            stroke-width: 1.5px !important;
            fill: none !important;
            transition: all 0.3s !important;
        }
        
        .rs-about-five .rs-about-list-item:hover .rs-about-list-icon svg path,
        .rs-about-five .rs-about-list-item:hover .rs-about-list-icon svg circle,
        .rs-about-five .rs-about-list-item:hover .rs-about-list-icon svg rect,
        .rs-about-five .rs-about-list-item:hover .rs-about-list-icon svg line,
        .rs-about-five .rs-about-list-item:hover .rs-about-list-icon svg polyline,
        .rs-about-five .rs-about-list-item:hover .rs-about-list-icon svg polygon {
            stroke: var(--rs-white) !important;
        }
        
        .rs-about-five .rs-about-list-desc {
            color: #E2E8F0 !important;
            font-weight: 600 !important;
            margin-bottom: 0 !important;
            font-size: 15px !important;
            line-height: 1.4 !important;
        }

        /* Thumb image outline */
        .rs-about-five .rs-about-thumb {
            border-radius: 12px !important;
            overflow: visible !important;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4) !important;
            transition: all 0.5s ease !important;
        }
        
        .rs-about-five .rs-about-thumb:hover {
            transform: translateY(-2px) !important;
        }

        .rs-about-five .rs-about-thumb::before {
            background: linear-gradient(135deg, rgba(15, 90, 46, 0.4) 0%, rgba(233, 116, 42, 0.4) 100%) !important;
            opacity: 0.8 !important;
            border-radius: 12px !important;
            transition: all 0.5s ease !important;
        }
        
        .rs-about-five .rs-about-thumb:hover::before {
            background: linear-gradient(135deg, rgba(15, 90, 46, 0.6) 0%, rgba(233, 116, 42, 0.6) 100%) !important;
            filter: blur(8px) !important;
        }

        /* Meta Advisory Box */
        .rs-about-five .rs-about-meta-wrapper {
            background: rgba(15, 23, 42, 0.82) !important;
            backdrop-filter: blur(15px) !important;
            -webkit-backdrop-filter: blur(15px) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-left: 4px solid var(--rs-theme-primary) !important;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45) !important;
            border-radius: 12px !important;
            transition: all 0.4s ease !important;
        }
        
        .rs-about-five .rs-about-meta-wrapper:hover {
            background: rgba(15, 23, 42, 0.9) !important;
            border-color: rgba(255, 255, 255, 0.15) !important;
            transform: translateY(-2px) !important;
        }

        .rs-about-five .rs-about-meta-title {
            color: var(--rs-white) !important;
            font-size: 19px !important;
            font-weight: 700 !important;
            text-decoration: none !important;
            margin-bottom: 0 !important;
        }

        .rs-about-five .rs-about-meta-desc {
            color: rgba(226, 232, 240, 0.8) !important;
            font-size: 14px !important;
            line-height: 1.5 !important;
            margin-top: 8px !important;
        }

        /* Button Styling */
        .rs-about-five .rs-btn {
            background: var(--rs-theme-primary) !important;
            border-color: var(--rs-theme-primary) !important;
            color: var(--rs-white) !important;
            box-shadow: 0 4px 14px rgba(233, 116, 42, 0.3) !important;
            transition: all 0.3s !important;
        }
        
        .rs-about-five .rs-btn:hover {
            background: var(--rs-white) !important;
            border-color: var(--rs-white) !important;
            color: var(--rs-theme-primary) !important;
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15) !important;
        }

        .rs-about-five .rs-btn svg path {
            fill: var(--rs-white) !important;
        }

        .rs-about-five .rs-btn:hover svg path {
            fill: var(--rs-theme-primary) !important;
        }

        .text-gradient-orange {
            background: linear-gradient(90deg, #E9742A 0%, #FFB076 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            font-weight: 700 !important;
        }

        .rs-about-five .rs-cta-thumb img {
            max-width: 90px !important;
            height: auto !important;
        }


        /* 2. Work Process Section (Light Theme Upgrades) */
        .rs-feature-six {
            background: var(--rs-bg-secondary) !important;
        }
        .rs-feature-six .rs-feature-wrapper {
            border-top: 1px solid var(--rs-border-primary) !important;
            border-bottom: 1px solid var(--rs-border-primary) !important;
        }
        .rs-feature-six .rs-feature-item {
            border-inline-end: 1px solid var(--rs-border-primary) !important;
        }
        @media only screen and (max-width: 575px) {
            .rs-feature-six .rs-feature-item:not(:last-child) {
                border-bottom: 1px solid var(--rs-border-primary) !important;
            }
        }
        .rs-feature-six .rs-feature-title {
            color: var(--rs-text-primary) !important;
        }
        .rs-feature-six .rs-feature-desc {
            color: var(--rs-text-secondary) !important;
        }
        .rs-feature-six .rs-feature-icon {
            background: rgba(15, 90, 46, 0.08) !important;
        }
        .rs-feature-six .rs-feature-icon svg path {
            fill: var(--rs-theme-secondary) !important;
        }
        .rs-feature-six .rs-feature-item:hover .rs-feature-icon {
            background: var(--rs-theme-primary) !important;
        }
        .rs-feature-six .rs-feature-item:hover .rs-feature-icon svg path {
            fill: var(--rs-white) !important;
        }
        .rs-feature-six .rs-feature-number {
            color: rgba(15, 90, 46, 0.2) !important;
            -webkit-text-stroke-color: rgba(15, 90, 46, 0.3) !important;
            stroke: rgba(15, 90, 46, 0.3) !important;
        }
        .rs-feature-six .rs-feature-item:hover .rs-feature-number {
            color: var(--rs-theme-primary) !important;
            -webkit-text-stroke-color: var(--rs-theme-primary) !important;
            stroke: var(--rs-theme-primary) !important;
        }

        /* 3. Consultation / Advisory Form Section Updates */
        .rs-pricing-cta-wrapper {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
            border-radius: 8px;
            overflow: hidden;
            background: #FFFFFF;
        }
        .rs-pricing-cta-wrapper .rs-pricing-wrapper {
            background: radial-gradient(circle at 20% 30%, #075e3d 0%, #0d1527 80%) !important; /* Copied FAQ Theme */
            backdrop-filter: blur(20px) !important;
            -webkit-backdrop-filter: blur(20px) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 50px 45px !important;
            border-radius: 8px 0 0 8px;
        }
        .lead-info-panel .panel-title {
            color: var(--rs-white) !important;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
        }
        .lead-info-panel .panel-desc {
            color: rgba(255, 255, 255, 0.7) !important;
            font-size: 16px;
            line-height: 1.6;
        }
        .lead-benefits-list {
            display: flex;
            flex-direction: column;
        }
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .benefit-icon {
            background: rgba(233, 116, 42, 0.15);
            color: var(--rs-theme-primary);
            padding: 10px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
        }
        .benefit-icon svg {
            stroke: var(--rs-theme-primary);
        }
        .benefit-content .benefit-title {
            color: var(--rs-white) !important;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .benefit-content .benefit-desc {
            color: rgba(255, 255, 255, 0.5) !important;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 0;
        }
        .rs-pricing-cta-wrapper .rs-contact-form-wrapper .section-title-wrapper {
            background: #FFFFFF !important; /* Clean white form header */
            border-bottom: 1px solid var(--rs-border-primary) !important;
            padding: 40px 45px 30px 45px !important;
            border-radius: 0 8px 0 0;
        }
        .rs-pricing-cta-wrapper .rs-contact-form-wrapper .section-title-wrapper .section-title {
            color: var(--rs-text-primary) !important;
        }
        .rs-pricing-cta-wrapper .rs-contact-form-wrapper .section-title-wrapper .section-subtitle {
            color: var(--rs-theme-primary) !important;
        }
        .rs-pricing-cta-wrapper .rs-contact-form-wrapper .section-title-wrapper .rs-section-desc {
            color: var(--rs-text-secondary) !important;
        }
        .rs-pricing-cta-wrapper .rs-contact-form-wrapper .rs-contact-form {
            padding: 20px 45px 45px 45px !important;
            background: #F8FAFC !important;
            border-radius: 0 0 8px 0;
        }
        .rs-contact-input select {
            width: 100%;
            height: 50px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: #FFFFFF;
            border-radius: 6px;
            padding-inline-start: 20px;
            padding-inline-end: 20px;
            color: var(--rs-text-primary);
            font-family: var(--rs-ff-body);
            font-size: 16px;
            outline: none;
            transition: all 0.3s;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            background-size: 16px;
            margin-bottom: 24px;
        }
        .rs-contact-input select:focus {
            border-color: var(--rs-theme-primary);
        }
        .rs-pricing-cta-wrapper .rs-contact-input .nice-select {
            border: 1px solid rgba(0, 0, 0, 0.08) !important;
            border-radius: 6px !important;
            padding-inline-start: 20px !important;
            color: var(--rs-text-primary) !important;
            font-size: 16px !important;
            font-family: var(--rs-ff-body) !important;
            margin-bottom: 24px !important;
            width: 100% !important;
            background: #FFFFFF !important;
        }
        .rs-pricing-cta-wrapper .rs-contact-input .nice-select::after {
            border-bottom: 2px solid #6B7280 !important;
            border-right: 2px solid #6B7280 !important;
            height: 8px !important;
            width: 8px !important;
            margin-top: -5px !important;
            inset-inline-end: 20px !important;
        }
        .rs-pricing-cta-wrapper .rs-contact-input .nice-select .list {
            border-radius: 6px !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
            border: 1px solid var(--rs-border-primary) !important;
            width: 100% !important;
        }
        .rs-pricing-cta-wrapper .rs-contact-input .nice-select .option {
            font-size: 15px !important;
            padding-inline-start: 20px !important;
            padding-inline-end: 20px !important;
            line-height: 40px !important;
            min-height: 40px !important;
        }
        .rs-pricing-cta-wrapper .rs-contact-input .nice-select .option.selected.focus {
            background-color: rgba(233, 116, 42, 0.08) !important;
            color: var(--rs-theme-primary) !important;
        }
        .rs-pricing-cta-wrapper .rs-contact-input .nice-select .option:hover {
            color: var(--rs-theme-primary) !important;
            background-color: rgba(233, 116, 42, 0.04) !important;
        }
        @media only screen and (max-width: 991px) {
            .rs-pricing-cta-wrapper {
                grid-template-columns: auto;
            }
            .rs-pricing-cta-wrapper .rs-pricing-wrapper {
                border-radius: 8px 8px 0 0;
                padding: 40px 30px !important;
            }
            .rs-pricing-cta-wrapper .rs-contact-form-wrapper .section-title-wrapper {
                border-radius: 0;
                padding: 30px 30px 20px 30px !important;
            }
            .rs-pricing-cta-wrapper .rs-contact-form-wrapper .rs-contact-form {
                border-radius: 0 0 8px 8px;
                padding: 10px 30px 30px 30px !important;
            }
        }



        /* 6. Hero Slider & Animations Override */
        .rs-banner-six .swiper-slide-active .rs-banner-subtitle,
        .rs-banner-six .swiper-slide-active .rs-banner-title,
        .rs-banner-six .swiper-slide-active .rs-banner-desc,
        .rs-banner-six .swiper-slide-active .rs-banner-btn {
            animation-fill-mode: both;
            animation-name: fadeInUp;
        }
        .rs-banner-six .swiper-slide-active .rs-banner-subtitle {
            animation-delay: 0.3s;
            animation-duration: 0.7s;
        }
        .rs-banner-six .swiper-slide-active .rs-banner-title {
            animation-delay: 0.5s;
            animation-duration: 0.9s;
        }
        .rs-banner-six .swiper-slide-active .rs-banner-desc {
            animation-delay: 0.7s;
            animation-duration: 1.1s;
        }
        .rs-banner-six .swiper-slide-active .rs-banner-btn {
            animation-delay: 0.9s;
            animation-duration: 1.3s;
        }
        .rs-banner-six .swiper-pagination {
            position: absolute !important;
            bottom: 30px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            z-index: 10 !important;
            width: auto !important;
            display: flex !important;
            justify-content: center !important;
        }
        .rs-banner-six .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.4) !important;
            opacity: 1 !important;
        }
        .rs-banner-six .swiper-pagination-bullet-active {
            background: var(--rs-theme-primary) !important;
        }

        /* 7. Brand Logo Section - Consistent Sizing & Premium Animation */
        .rs-brand-two {
            padding: 40px 0 !important;
            background: #f8fafc !important;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
            overflow: hidden !important;
        }

        .rs-brand-two .rs-brand-item {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            height: 100px !important;
            padding: 15px 30px !important;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
        }

        .rs-brand-two .rs-brand-item:hover {
            transform: scale(1.08) !important;
        }

        .rs-brand-two .rs-brand-thumb {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 100% !important;
            height: 100% !important;
        }

        .rs-brand-two .rs-brand-thumb img {
            max-height: 65px !important;
            max-width: 160px !important;
            width: auto !important;
            height: auto !important;
            object-fit: contain !important;
            filter: none !important;
            opacity: 1 !important;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
        }

        .rs-brand-two .rs-brand-item:hover .rs-brand-thumb img {
            transform: translateY(-2px) !important;
        }

        /* 8. Service Cards Equal Height & Flex Alignment */
        .rs-services-six .swiper-slide {
            height: auto !important;
            display: flex !important;
        }

        .rs-services-six .rs-services-item {
            height: 100% !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: space-between !important;
            width: 100% !important;
        }

        .rs-services-six .rs-services-content {
            flex-grow: 1 !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: space-between !important;
        }

        .rs-services-six .rs-services-title {
            font-size: 20px !important;
            line-height: 1.35 !important;
            margin-top: 20px !important;
            margin-bottom: 15px !important;
            min-height: 54px !important;
            display: flex !important;
            align-items: center !important;
        }

        .rs-services-six .rs-services-desc {
            flex-grow: 1 !important;
            margin-bottom: 20px !important;
            min-height: 66px !important;
        }

        .rs-services-six .rs-services-thumb {
            aspect-ratio: 16 / 10 !important;
            width: 100% !important;
            overflow: hidden !important;
        }

        .rs-services-six .rs-services-thumb img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }

        /* Make portfolio project images bright and remove dark mask */
        .rs-portfolio-six .rs-portfolio-thumb::before {
            display: none !important;
        }
        .rs-portfolio-six .rs-portfolio-thumb img {
            filter: brightness(1.1) contrast(1.05) !important;
        }

        /* Homepage Banner Block Premium Glassmorphism FAQ Theme */
        .rs-banner-six .rs-banner-item {
            background: radial-gradient(circle at 20% 30%, #075e3d 0%, #0d1527 80%) !important;
            backdrop-filter: blur(15px) !important;
            -webkit-backdrop-filter: blur(15px) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
        }

        /* Custom certifications styling for homepage trust block */
        .rs-cert-card {
            background: var(--rs-white) !important;
            border-radius: 12px !important;
            border: 1px solid rgba(15, 90, 46, 0.08) !important;
            box-shadow: 0 10px 30px rgba(15, 90, 46, 0.03) !important;
            padding: 25px !important;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        @media (min-width: 576px) {
            .rs-cert-card {
                padding: 35px !important;
            }
        }
        .rs-cert-card:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 20px 40px rgba(15, 90, 46, 0.08) !important;
            border-color: rgba(233, 116, 42, 0.2) !important;
        }
        .rs-cert-logo-wrapper {
            background: #ffffff;
            border: 1px solid rgba(15, 90, 46, 0.08);
            border-radius: 10px;
            width: 90px;
            height: 90px;
            padding: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }
        .rs-cert-card:hover .rs-cert-logo-wrapper {
            transform: scale(1.05);
            border-color: var(--rs-theme-primary);
        }
        .rs-cert-logo-wrapper img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
        .rs-cert-title {
            color: var(--rs-theme-secondary);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: var(--rs-ff-title);
        }
        .rs-cert-subtitle {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--rs-theme-primary);
            margin-bottom: 15px;
        }
        .rs-cert-desc {
            color: var(--rs-text-secondary);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .rs-cert-specs {
            width: 100%;
            border-top: 1px solid rgba(15, 90, 46, 0.06);
            padding-top: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .rs-cert-spec-item {
            display: flex;
            font-size: 13px;
            align-items: center;
            gap: 8px;
            color: var(--rs-text-primary);
        }
        .rs-cert-spec-label {
            font-weight: 600;
            color: var(--rs-text-secondary);
        }
        .rs-cert-spec-val {
            color: var(--rs-text-primary);
        }

        /* Betoflex Pattern Cards Redesign (Compact & Scaled Down) */
        .betoflex-pattern-grid {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr) !important;
            grid-template-rows: 85px 70px 70px 70px 85px !important;
            gap: 10px 16px !important;
            position: relative !important;
            max-width: 360px !important;
            margin: 0 0 0 auto !important;
        }
        @media only screen and (max-width: 991px) {
            .betoflex-pattern-grid {
                max-width: 320px !important;
                grid-template-rows: 75px 60px 60px 60px 75px !important;
                gap: 8px 12px !important;
                margin: 0 auto !important;
            }
        }
        @media only screen and (max-width: 575px) {
            .betoflex-pattern-grid {
                max-width: 280px !important;
                grid-template-columns: 1fr !important;
                grid-template-rows: auto !important;
                gap: 14px !important;
            }
        }
        .betoflex-pattern-card {
            border-radius: 14px !important;
            padding: 8px 5px !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
            align-items: center !important;
            text-align: center !important;
            text-decoration: none !important;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
            z-index: 2 !important;
            position: relative !important;
            height: 100% !important;
            border: none !important;
        }
        .betoflex-pattern-card:hover {
            transform: translateY(-3px) !important;
        }
        .betoflex-pattern-card.active {
            transform: scale(1.05) translateY(-3px) !important;
            z-index: 3 !important;
        }
        .betoflex-pattern-card.blue-card {
            background: #00adef !important;
            box-shadow: 0 6px 15px rgba(0, 173, 239, 0.2) !important;
        }
        .betoflex-pattern-card.blue-card:hover {
            box-shadow: 0 8px 20px rgba(0, 173, 239, 0.35) !important;
        }
        .betoflex-pattern-card.blue-card.active {
            box-shadow: 0 8px 20px rgba(0, 173, 239, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.4) !important;
        }
        .betoflex-pattern-card.orange-card {
            background: #f15a24 !important;
            box-shadow: 0 6px 15px rgba(241, 90, 36, 0.3) !important;
        }
        .betoflex-pattern-card.orange-card:hover {
            box-shadow: 0 8px 20px rgba(241, 90, 36, 0.4) !important;
        }
        .betoflex-pattern-card.orange-card.active {
            box-shadow: 0 8px 20px rgba(241, 90, 36, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.4) !important;
        }
        .betoflex-pattern-card.brand-card {
            background: #f8fafc !important;
            cursor: pointer !important;
        }
        .betoflex-pattern-card.brand-card.active {
            box-shadow: 0 8px 20px rgba(15, 90, 46, 0.2), 0 0 0 2px rgba(255, 255, 255, 0.5) !important;
        }
        .betoflex-pattern-card .card-icon {
            font-size: 24px !important;
            color: #ffffff !important;
            margin-bottom: 4px !important;
        }
        .betoflex-pattern-card .card-label {
            font-size: 11px !important;
            font-weight: 800 !important;
            color: #ffffff !important;
            margin-bottom: 1px !important;
            text-transform: uppercase !important;
            letter-spacing: 0.4px !important;
            font-family: var(--rs-ff-title) !important;
        }
        .betoflex-pattern-card .card-desc {
            font-size: 9px !important;
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500 !important;
        }
        .betoflex-pattern-card .brand-badge {
            position: absolute !important;
            top: -8px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            font-size: 8px !important;
            font-weight: 800 !important;
            padding: 2px 8px !important;
            border-radius: 50px !important;
            text-transform: uppercase !important;
            letter-spacing: 0.5px !important;
            color: #ffffff !important;
            white-space: nowrap !important;
        }
        .betoflex-pattern-card img {
            max-height: 26px !important;
            width: auto !important;
            max-width: 85% !important;
            object-fit: contain !important;
        }
        @media only screen and (max-width: 575px) {
            .pattern-connectors {
                display: none !important;
            }
        }
    

/* Extracted Style Block */


/* Modern light blue breadcrumb gradient overlay override */
.rs-breadcrumb-one {
    background: transparent !important;
}
.rs-breadcrumb-one .rs-breadcrumb-bg-thumb::before {
    background: linear-gradient(135deg, rgba(15, 32, 67, 0.8) 0%, rgba(30, 64, 175, 0.5) 60%, rgba(59, 130, 246, 0.25) 100%) !important;
    backdrop-filter: blur(2px) !important;
    opacity: 1 !important;
    z-index: 1 !important;
}
.rs-breadcrumb-one .rs-breadcrumb-wrapper {
    position: relative !important;
    z-index: 2 !important;
}


/* Extracted Style Block */


    /* Custom Desktop Mega Menu styles */
    @media (min-width: 992px) {
        /* Set parent list items to static relative context to allow full header width or specified width mega menus */
        .rs-sticky-header {
            position: relative;
        }
        
        /* SOLUTIONS & PRODUCTS Dropdown parent */
        .main-menu ul li.geobit-has-mega-menu {
            position: relative !important;
        }

        .main-menu ul li.geobit-has-mega-menu > a {
            position: relative;
        }

        /* Standard Submenus should NOT show on hover of geobit-has-mega-menu */
        .main-menu ul li.geobit-has-mega-menu:hover > ul.submenu {
            display: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
        }

        /* Mega menu wrapper */
        .geobit-mega-menu-wrapper {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.8);
            box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15), 0 10px 20px -5px rgba(15, 23, 42, 0.08);
            padding: 16px 20px;
            display: flex;
            gap: 20px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 9999;
            text-align: left;
        }

        /* Specific widths and alignments for mega dropdown sizes */
        .geobit-mega-menu-wrapper.geobit-mega-products {
            width: 1020px;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
        }
        .main-menu ul li.geobit-has-mega-menu:hover .geobit-mega-menu-wrapper.geobit-mega-products {
            transform: translateX(-50%) translateY(0);
        }

        .geobit-mega-menu-wrapper.geobit-mega-systems {
            width: 900px;
            left: 0;
            transform: translateY(10px);
        }
        .main-menu ul li.geobit-has-mega-menu:hover .geobit-mega-menu-wrapper.geobit-mega-systems {
            transform: translateY(0);
        }

        .geobit-mega-menu-wrapper.geobit-mega-about {
            width: 680px;
            left: 0;
            transform: translateY(10px);
        }
        .main-menu ul li.geobit-has-mega-menu:hover .geobit-mega-menu-wrapper.geobit-mega-about {
            transform: translateY(0);
        }

        .geobit-mega-menu-wrapper.geobit-mega-brands {
            width: 680px;
            left: 50%;
            right: auto;
            transform: translateX(-50%) translateY(10px);
        }
        .main-menu ul li.geobit-has-mega-menu:hover .geobit-mega-menu-wrapper.geobit-mega-brands {
            transform: translateX(-50%) translateY(0);
        }

        /* Show on hover of parent item */
        .main-menu ul li.geobit-has-mega-menu:hover .geobit-mega-menu-wrapper {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        /* Left side: Featured showcase card */
        .geobit-mega-featured {
            flex: 0 0 220px;
            background: linear-gradient(135deg, #0c4a25 0%, #0f172a 100%);
            border-radius: 12px;
            padding: 16px;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            position: relative;
            text-align: left;
        }

        .geobit-mega-featured::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .geobit-mega-featured .featured-badge {
            background: rgba(37, 211, 102, 0.2);
            color: #25D366;
            font-size: 9px;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            align-self: flex-start;
            margin-bottom: 8px;
        }

        .geobit-mega-featured h5 {
            font-size: 18px;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 8px 0;
        }

        .geobit-mega-featured p {
            font-size: 12px;
            color: #cbd5e1;
            line-height: 1.4;
            margin: 0 0 10px 0;
        }

        .geobit-mega-featured .featured-link {
            font-size: 12px;
            font-weight: 700;
            color: #25D366;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: auto;
            transition: gap 0.2s ease;
        }

        .geobit-mega-featured:hover .featured-link {
            gap: 7px;
        }

        /* Right side: 2-column links grid */
        .geobit-mega-grid {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px 20px;
            align-content: center;
        }

        /* Right side: 3-column sector categories */
        .geobit-mega-columns {
            flex: 1;
            display: flex;
            gap: 24px;
            align-items: stretch;
            padding: 4px 0;
        }

        .geobit-mega-col {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .geobit-mega-col-title {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--rs-theme-primary);
            margin: 0 0 10px 0;
            letter-spacing: 0.8px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            padding-bottom: 4px;
            line-height: 1.2;
        }

        .geobit-mega-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .geobit-mega-list li {
            padding: 0;
            margin: 0;
        }

        .geobit-mega-list li a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: var(--rs-theme-secondary);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.3;
            text-decoration: none !important;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .geobit-mega-list li a i {
            font-size: 15px;
            color: var(--rs-text-secondary);
            transition: color 0.2s ease, transform 0.2s ease;
            flex-shrink: 0;
        }

        .geobit-mega-list li a:hover {
            color: var(--rs-theme-primary);
            transform: translateX(4px);
        }

        .geobit-mega-list li a:hover i {
            color: var(--rs-theme-primary);
            transform: scale(1.1);
        }

        /* Link item block */
        .geobit-mega-item {
            display: flex;
            gap: 12px;
            text-decoration: none !important;
            color: inherit;
            padding: 8px 12px;
            border-radius: 10px;
            transition: all 0.2s ease;
            align-items: center;
        }

        .geobit-mega-item:hover {
            background: #f8fafc;
        }

        /* Icon box */
        .geobit-mega-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(37, 211, 102, 0.08);
            color: #20ba56;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .geobit-mega-item:hover .geobit-mega-icon {
            background: #25D366;
            color: #ffffff;
        }

        /* Title and description text wrapper */
        .geobit-mega-text {
            display: flex;
            flex-direction: column;
        }

        .geobit-mega-title {
            font-size: 14px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 2px 0;
            line-height: 1.2;
            transition: color 0.2s ease;
        }

        .geobit-mega-item:hover .geobit-mega-title {
            color: #25D366;
        }

        .geobit-mega-desc {
            font-size: 11px;
            color: #64748b;
            margin: 0;
            line-height: 1.3;
        }

        /* Special styles for About (blue themed) mega menu items */
        .geobit-mega-item.theme-blue:hover {
            background: #f0f7ff;
        }
        .geobit-mega-item.theme-blue:hover .geobit-mega-icon {
            background: #3b82f6 !important;
            color: #ffffff !important;
        }
        .geobit-mega-item.theme-blue:hover .geobit-mega-title {
            color: #3b82f6 !important;
        }

        /* Bridge the hover gap to prevent menu closing prematurely */
        .geobit-mega-menu-wrapper::before {
            content: '';
            position: absolute;
            top: -55px;
            left: 0;
            right: 0;
            height: 55px;
            background: transparent;
            z-index: -1;
        }
    }


        /* High specificity overrides to prevent theme CSS conflicts and ensure beautiful alignment */
        .main-menu ul li.geobit-has-mega-menu .geobit-mega-list {
            display: flex !important;
            flex-direction: column !important;
            justify-content: flex-start !important;
            align-items: flex-start !important;
            gap: 6px !important;
            height: auto !important;
            min-height: 0 !important;
            margin: 0 !important;
            padding: 0 !important;
            list-style: none !important;
            border: none !important;
            background: transparent !important;
            box-shadow: none !important;
            width: 100% !important;
        }

        .main-menu ul li.geobit-has-mega-menu .geobit-mega-list li {
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            border: none !important;
            background: transparent !important;
            display: block !important;
            float: none !important;
            height: auto !important;
        }

        .main-menu ul li.geobit-has-mega-menu .geobit-mega-list li a {
            display: inline-flex !important;
            align-items: center !important;
            gap: 10px !important;
            color: var(--rs-theme-secondary) !important;
            font-size: 13.5px !important;
            font-weight: 600 !important;
            line-height: 1.4 !important;
            padding: 8px 12px !important;
            margin: 0 !important;
            width: 100% !important;
            border-radius: 8px !important;
            text-decoration: none !important;
            background: transparent !important;
            border: none !important;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }

        .main-menu ul li.geobit-has-mega-menu .geobit-mega-list li a i {
            font-size: 16px !important;
            color: var(--rs-theme-primary) !important;
            transition: transform 0.2s ease !important;
            display: inline-block !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .main-menu ul li.geobit-has-mega-menu .geobit-mega-list li a:hover {
            color: var(--rs-theme-primary) !important;
            background: rgba(15, 90, 46, 0.05) !important;
            padding-left: 16px !important;
        }

        .main-menu ul li.geobit-has-mega-menu .geobit-mega-list li a:hover i {
            color: var(--rs-theme-primary) !important;
            transform: scale(1.1) !important;
        }

        /* Specialty styles for About (blue themed) overrides */
        .main-menu ul li.geobit-has-mega-menu .geobit-mega-list li a.theme-blue-link:hover {
            color: #3b82f6 !important;
            background: rgba(59, 130, 246, 0.05) !important;
            padding-left: 16px !important;
        }
        .main-menu ul li.geobit-has-mega-menu .geobit-mega-list li a.theme-blue-link i {
            color: #3b82f6 !important;
        }
        .main-menu ul li.geobit-has-mega-menu .geobit-mega-list li a.theme-blue-link:hover i {
            color: #3b82f6 !important;
        }

    /* Mobile & Tablet view */
    @media (max-width: 991px) {
        .geobit-mega-menu-wrapper {
            display: none !important;
        }
    }

    /* Standard styling overrides for blog content headings */
    .rs-postbox-details-content h1,
    .rs-postbox-details-content h2,
    .rs-postbox-details-content h3,
    .rs-postbox-details-content h4,
    .rs-postbox-details-content h5,
    .rs-postbox-details-content h6 {
        color: var(--rs-text-primary) !important;
        font-weight: 700 !important;
        font-family: 'Urbanist', sans-serif !important;
        margin-top: 30px !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
        letter-spacing: -0.2px !important;
    }
    .rs-postbox-details-content h1 { font-size: 28px !important; }
    .rs-postbox-details-content h2 { font-size: 24px !important; }
    .rs-postbox-details-content h3 { font-size: 21px !important; }
    .rs-postbox-details-content h4 { font-size: 18px !important; }
    .rs-postbox-details-content h5 { font-size: 16px !important; }
    .rs-postbox-details-content h6 { font-size: 15px !important; }
    

/* Extracted Style Block */


                .rs-presence-area .section-subtitle {
                    display: inline-flex !important;
                    align-items: center !important;
                    gap: 8px !important;
                    background: rgba(233, 116, 42, 0.12) !important;
                    color: var(--rs-theme-primary) !important;
                    border: 1px solid rgba(233, 116, 42, 0.3) !important;
                    padding: 6px 18px !important;
                    border-radius: 50px !important;
                    font-size: 13px !important;
                    font-weight: 600 !important;
                    text-transform: uppercase !important;
                    letter-spacing: 1.5px !important;
                    margin-bottom: 18px !important;
                }
                .rs-presence-area .section-title {
                    color: #ffffff !important;
                    font-weight: 700 !important;
                }
                .rs-presence-area .section-desc {
                    color: rgba(255, 255, 255, 0.7) !important;
                    font-size: 16px;
                    line-height: 1.6;
                }
                                .geobit-presence-card-v2 {
                    border: 1px solid rgba(255, 255, 255, 0.08) !important;
                    border-radius: 14px !important;
                    background: rgba(255, 255, 255, 0.02) !important;
                    backdrop-filter: blur(16px) !important;
                    -webkit-backdrop-filter: blur(16px) !important;
                    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
                    padding: 16px 20px !important;
                    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
                    display: flex;
                    align-items: start;
                    gap: 16px;
                }
                .geobit-presence-card-v2:hover {
                    background: rgba(255, 255, 255, 0.06) !important;
                    border-color: rgba(255, 255, 255, 0.15) !important;
                    transform: translateY(-2px) !important;
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
                }
                .geobit-presence-icon-box-v2 {
                    width: 44px;
                    height: 44px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 10px;
                    font-size: 22px;
                    flex-shrink: 0;
                    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                }
                .geobit-presence-map-card-v2 {
                    border: none !important;
                    border-radius: 20px !important;
                    background: #f8fafc !important;
                    padding: 30px;
                    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s ease;
                }
                .geobit-presence-map-card-v2:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3) !important;
                }
                .geobit-presence-map-card-v2 img {
                    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.04));
                }
                .geobit-badge-pill-v2 {
                    display: inline-block !important;
                    padding: 4px 10px !important;
                    font-weight: 700 !important;
                    border-radius: 20px !important;
                    font-size: 9.5px !important;
                    text-transform: uppercase !important;
                    letter-spacing: 0.5px !important;
                    line-height: 1.2 !important;
                    border: 1px solid transparent;
                }
            

/* Extracted Style Block */


                                .rs-footer-brand-container {
                                    display: flex;
                                    flex-direction: column;
                                    align-items: center;
                                    width: 100%;
                                    margin-top: 40px;
                                }
                                .rs-footer-brand-title {
                                    width: 100%;
                                    text-align: center;
                                    margin-bottom: 20px;
                                }
                                .rs-footer-brand-title h5 {
                                    font-size: 16px;
                                    color: #ffffff;
                                    font-weight: 600;
                                    letter-spacing: 0.8px;
                                    text-transform: uppercase;
                                    opacity: 0.95;
                                }
                                .rs-footer-cert-row {
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    flex-wrap: wrap;
                                    gap: 15px 25px;
                                    margin-top: 10px;
                                    width: 100%;
                                }
                                .rs-footer-cert-card {
                                    background: #ffffff !important;
                                    border-radius: 8px !important;
                                    width: 80px !important;
                                    height: 80px !important;
                                    padding: 8px !important;
                                    display: flex !important;
                                    align-items: center !important;
                                    justify-content: center !important;
                                    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) !important;
                                    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
                                    opacity: 0.95 !important;
                                    cursor: pointer !important;
                                    text-decoration: none !important;
                                }
                                .rs-footer-cert-card:hover {
                                    transform: translateY(-4px) !important;
                                    opacity: 1 !important;
                                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
                                }
                                .rs-footer-cert-card img {
                                    max-height: 100% !important;
                                    max-width: 100% !important;
                                    object-fit: contain !important;
                                    opacity: 1 !important;
                                    filter: none !important;
                                    transition: none !important;
                                }
                            

/* Extracted Style Block */


    /* Exit Intent Popup Styles */
    .geobit-exit-popup-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(5, 10, 7, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding: 20px;
    }
    .geobit-exit-popup-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }
    .geobit-exit-popup-container {
        background: #ffffff;
        width: 100%;
        max-width: 850px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        display: flex;
        position: relative;
        transform: scale(0.9);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: auto; /* Centering and scroll safety inside flex parent */
    }
    .geobit-exit-popup-backdrop.active .geobit-exit-popup-container {
        transform: scale(1);
    }
    .geobit-exit-popup-left {
        flex: 1.1;
        background: linear-gradient(135deg, #0A140F 0%, #050A07 100%);
        padding: 40px;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }
    .geobit-exit-popup-left::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 10% 20%, rgba(233, 116, 42, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }
    .geobit-exit-popup-right {
        flex: 1.2;
        background: #F8FAFC;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }
    .geobit-exit-popup-close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        font-size: 32px;
        color: #6B7280;
        cursor: pointer;
        line-height: 1;
        z-index: 10;
        transition: color 0.2s ease;
    }
    .geobit-exit-popup-close:hover {
        color: #E9742A;
    }
    .geobit-exit-popup-title {
        font-family: var(--rs-ff-title, 'Outfit', sans-serif);
        font-size: 28px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    .geobit-exit-popup-subtitle {
        font-size: 16px;
        color: #FFB076;
        margin-bottom: 25px;
        font-weight: 500;
        line-height: 1.4;
    }
    .geobit-exit-popup-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .geobit-exit-popup-features li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.9);
    }
    .geobit-exit-popup-features li svg {
        margin-top: 3px;
        flex-shrink: 0;
    }
    .geobit-exit-popup-right h4 {
        font-family: var(--rs-ff-title, 'Outfit', sans-serif);
        font-size: 22px;
        color: #1E293B;
        margin-bottom: 6px;
        font-weight: 600;
    }
    .geobit-exit-popup-right p {
        font-size: 14px;
        color: #6B7280;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .geobit-exit-popup-form .form-group {
        margin-bottom: 12px;
    }
    .geobit-exit-popup-form input,
    .geobit-exit-popup-form textarea {
        width: 100%;
        padding: 10px 14px;
        border: 1px solid #E2E8F0;
        border-radius: 8px;
        font-size: 14px;
        background: #ffffff;
        color: #1E293B;
        outline: none;
        transition: all 0.2s ease;
    }
    .geobit-exit-popup-form input:focus,
    .geobit-exit-popup-form textarea:focus {
        border-color: #0F5A2E;
        box-shadow: 0 0 0 3px rgba(15, 90, 46, 0.1);
    }
    .geobit-exit-popup-form button {
        width: 100%;
        background: #E9742A;
        color: #ffffff;
        border: none;
        padding: 12px;
        font-weight: 600;
        font-size: 15px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }
    .geobit-exit-popup-form button:hover {
        background: #d4631f;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(233, 116, 42, 0.2);
    }
    .geobit-exit-popup-form button svg {
        transition: transform 0.2s ease;
    }
    .geobit-exit-popup-form button:hover svg {
        transform: translateX(3px);
    }

    .geobit-exit-popup-success {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
        padding: 20px 0;
    }
    .geobit-exit-popup-success svg {
        color: #0F5A2E;
        margin-bottom: 15px;
    }
    .geobit-exit-popup-success h4 {
        color: #0F5A2E;
        font-size: 22px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    /* Responsive Exit Popup */
    @media (max-width: 768px) {
        .geobit-exit-popup-container {
            flex-direction: column;
            max-width: 100%;
            margin: auto;
        }
        .geobit-exit-popup-left {
            display: none; /* Hide left side on mobile to prevent overflow */
        }
        .geobit-exit-popup-right {
            padding: 30px 20px;
        }
    }

    /* Floating Mobile Quick Action Bar */
    .geobit-mobile-action-bar {
        display: none;
    }

    @media only screen and (max-width: 767px) {
        .geobit-mobile-action-bar {
            display: flex;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 60px;
            height: calc(60px + env(safe-area-inset-bottom));
            padding-bottom: env(safe-area-inset-bottom);
            background: rgba(15, 90, 46, 0.98); /* Brand secondary green */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            z-index: 99999;
            justify-content: space-around;
            align-items: center;
        }

        .geobit-mobile-action-bar .action-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            flex: 1;
            height: 100%;
            transition: all 0.2s ease;
        }

        .geobit-mobile-action-bar .action-item:active {
            transform: scale(0.93);
            color: #FED403; /* Yellow brand accent */
        }

        .geobit-mobile-action-bar .action-icon {
            font-size: 18px;
            margin-bottom: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .geobit-mobile-action-bar .action-item.whatsapp .action-icon {
            background: #25D366; /* WhatsApp green */
            color: #fff;
            font-size: 16px;
        }
        
        .geobit-mobile-action-bar .action-item:not(.whatsapp) .action-icon i {
            color: #FED403; /* Yellow brand accent */
        }

        .geobit-mobile-action-bar .action-label {
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 1px;
        }
        
        /* Add bottom padding to body on mobile screens to prevent overlap with footer */
        body {
            padding-bottom: calc(75px + env(safe-area-inset-bottom)) !important;
        }
    }

    /* Desktop Web WhatsApp Floating Widget */
    .geobit-whatsapp-widget {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 99999;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
        pointer-events: none; /* Let clicks pass through empty spaces of container */
    }

    .geobit-whatsapp-widget .whatsapp-bubble {
        background: #ffffff;
        color: #1e293b;
        padding: 16px 20px;
        border-radius: 16px;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        width: 260px;
        text-align: center;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        position: relative;
        border-left: 4px solid #25D366;
        border-top: 1px solid #f1f5f9;
        border-right: 1px solid #f1f5f9;
        border-bottom: 1px solid #f1f5f9;
        
        /* Initial state: Hidden */
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        pointer-events: none;
    }

    .geobit-whatsapp-widget.expanded .whatsapp-bubble {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .geobit-whatsapp-widget .whatsapp-bubble::after {
        content: '';
        position: absolute;
        bottom: -6px;
        right: 21px; /* Align to the center of the 54px circle */
        width: 12px;
        height: 12px;
        background: #ffffff;
        transform: rotate(45deg);
        border-right: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }

    .geobit-whatsapp-widget .whatsapp-bubble-emoji {
        font-size: 20px;
        margin-top: 6px;
        display: block;
        animation: emoji-wave 2.5s infinite;
        transform-origin: 70% 70%;
    }

    @keyframes emoji-wave {
        0%, 100% { transform: rotate(0deg); }
        20%, 60% { transform: rotate(-15deg); }
        40%, 80% { transform: rotate(15deg); }
    }

    .geobit-whatsapp-widget .geobit-web-whatsapp {
        background-color: #25D366;
        color: #ffffff !important;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        pointer-events: auto; /* Enable clicks on the button */
        
        /* Transition attributes */
        width: 54px;
        height: 54px;
        padding: 0;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .geobit-whatsapp-widget.expanded .geobit-web-whatsapp {
        width: 220px;
        border-radius: 50px;
        justify-content: flex-start;
        padding: 0 20px;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    }

    .geobit-whatsapp-widget .geobit-web-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
        background-color: #20ba56;
    }

    .geobit-whatsapp-widget .geobit-web-whatsapp i {
        font-size: 24px;
        transition: all 0.5s ease;
    }

    .geobit-whatsapp-widget.expanded .geobit-web-whatsapp i {
        font-size: 22px;
    }

    .geobit-whatsapp-widget .whatsapp-btn-text {
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.2px;
        
        /* Initial state: Hidden */
        max-width: 0;
        opacity: 0;
        overflow: hidden;
        white-space: nowrap;
        transition: max-width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
    }

    .geobit-whatsapp-widget.expanded .whatsapp-btn-text {
        max-width: 150px;
        opacity: 1;
        margin-left: 10px;
    }

    .geobit-whatsapp-widget .whatsapp-btn-dot {
        background-color: #ffffff;
        border-radius: 50%;
        position: relative;
        display: inline-block;
        
        /* Initial state: Hidden */
        width: 0;
        height: 0;
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .geobit-whatsapp-widget.expanded .whatsapp-btn-dot {
        width: 10px;
        height: 10px;
        opacity: 1;
        margin-left: auto; /* Push it to the right end of the pill */
    }

    .geobit-whatsapp-widget .whatsapp-btn-dot::after {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border: 2px solid #ffffff;
        border-radius: 50%;
        animation: dot-pulse 1.8s infinite ease-in-out;
        opacity: 0;
    }

    @keyframes dot-pulse {
        0% { transform: scale(0.6); opacity: 1; }
        100% { transform: scale(1.8); opacity: 0; }
    }

    /* Hide on mobile screens */
    @media only screen and (max-width: 767px) {
        .geobit-whatsapp-widget {
            display: none !important;
        }
    }
    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: scale(0.95) translateY(-20px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
    