
        .revieworld-hero {
            background: linear-gradient(135deg, var(--color-orange) 0%, #ff6b1a 50%, #e67e22 100%);
            color: white;
            padding: 8px 0;
            position: relative;
            overflow: hidden;
            min-height: fit-content;
            display: flex;
            align-items: center;
            z-index: 0;
            width: 100%;
        }

        /* Animated Background */
        .revieworld-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
            animation: rwBackgroundShift 8s ease-in-out infinite;
        }

        @keyframes rwBackgroundShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* Floating Particles */
        .revieworld-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .revieworld-particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: rwFloatParticle 6s ease-in-out infinite;
        }

        .revieworld-particle:nth-child(1) {
            width: 8px;
            height: 8px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .revieworld-particle:nth-child(2) {
            width: 12px;
            height: 12px;
            top: 60%;
            left: 20%;
            animation-delay: 2s;
        }

        .revieworld-particle:nth-child(3) {
            width: 6px;
            height: 6px;
            top: 40%;
            right: 15%;
            animation-delay: 4s;
        }

        .revieworld-particle:nth-child(4) {
            width: 10px;
            height: 10px;
            bottom: 30%;
            right: 25%;
            animation-delay: 1s;
        }

        .revieworld-particle:nth-child(5) {
            width: 14px;
            height: 14px;
            top: 70%;
            right: 10%;
            animation-delay: 3s;
        }

        .revieworld-particle:nth-child(6) {
            width: 8px;
            height: 8px;
            bottom: 20%;
            left: 30%;
            animation-delay: 5s;
        }

        @keyframes rwFloatParticle {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg);
                opacity: 0.6;
            }
            50% { 
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }

        /* Geometric Decorations */
        .revieworld-geometric-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .revieworld-geo-shape {
            position: absolute;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .revieworld-geo-circle {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            top: 10%;
            right: 10%;
            animation: rwRotateShape 15s linear infinite;
        }

        .revieworld-geo-square {
            width: 80px;
            height: 80px;
            bottom: 15%;
            left: 15%;
            transform: rotate(45deg);
            animation: rwPulseShape 4s ease-in-out infinite;
        }

        .revieworld-geo-triangle {
            width: 0;
            height: 0;
            border-left: 30px solid transparent;
            border-right: 30px solid transparent;
            border-bottom: 50px solid rgba(255, 255, 255, 0.1);
            top: 30%;
            left: 20%;
            animation: rwFloatParticle 8s ease-in-out infinite;
        }

        @keyframes rwRotateShape {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes rwPulseShape {
            0%, 100% { 
                transform: rotate(45deg) scale(1);
                opacity: 0.3;
            }
            50% { 
                transform: rotate(45deg) scale(1.2);
                opacity: 0.6;
            }
        }

        /* Content Styling */
        .revieworld-wrapper {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            text-align: center;
        }

        .revieworld-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            animation: rwFadeInUp 1s ease-out;
            position: relative;
        }

        .revieworld-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
        }

        .revieworld-subtitle {
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 3rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            animation: rwFadeInUp 1s ease-out 0.3s both;
        }

        .revieworld-cta {
            background: white;
            border: none;
            padding: 20px 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 60px;
            color: var(--color-orange) !important;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.2),
                0 0 0 0 rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            animation: rwFadeInUp 1s ease-out 0.6s both;
            display: inline-block;
        }

        .revieworld-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 132, 39, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .revieworld-cta::after {
            content: '\f135';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 12px;
            transition: transform 0.3s ease;
        }

        .revieworld-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 8px rgba(255, 255, 255, 0.1);
            color: var(--color-orange) !important;
            text-decoration: none;
        }

        .revieworld-cta:hover::before {
            left: 100%;
        }

        .revieworld-cta:hover::after {
            transform: translateX(5px);
        }

        .revieworld-orange-text {
            color: var(--color-orange) !important;
        }

        @keyframes rwFadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Glow Effect */
        .revieworld-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: rwGlowEffect 4s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes rwGlowEffect {
            0%, 100% { 
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.3;
            }
            50% { 
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.6;
            }
        }

  
  
  
  .prev-review{
  position: relative;
   background-image: url('/User/assets/photo/prev-review.jpg');
   background-size: cover;
   background-position: center;
   color: #fff;
   overflow: hidden;
  }
  .prev-review::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

.prev-review > * {
  position: relative;
  z-index: 2;
}

.after-review{
  position: relative;
   background-image: url('/User/assets/photo/after-review.jpg');
   background-size: cover;
   background-position: center;
   color: #fff;
   overflow: hidden;
  }
  .after-review::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

.after-review > * {
  position: relative;
  z-index: 2;
}


    .card:hover {
            transform: translateY(-5px);
            transition: all 0.3s ease;
        }
        
        .vs-badge {
            width: 60px;
            height: 60px;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        

.hero-section {
        padding: 12px 0 20px 0;
            min-height: fit-content;
            background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            height: fit-content;
            z-index: 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 80vh;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .brand-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(255, 132, 39, 0.1), rgba(255, 132, 39, 0.05));
            color: #ff8427;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 8px;
            border: 1px solid rgba(255, 132, 39, 0.2);
            animation: slideInLeft 1s ease-out;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #1a202c;
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, #ff8427 0%, #ff6b1a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 3.8rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 8px;
            line-height: 1.6;
            animation: slideInLeft 1s ease-out 0.4s both;
        }

        .hero-description {
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.7;
            color: #475569;
            margin-bottom: 2.5rem;
            animation: slideInLeft 1s ease-out 0.6s both;
        }

        .cta-section {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            animation: slideInLeft 1s ease-out 0.8s both;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .primary-btn {
            background: linear-gradient(135deg, #ff8427 0%, #ff6b1a 100%);
            border: none;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(255, 132, 39, 0.3);
        }

        .primary-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 132, 39, 0.4);
            color: white;
            text-decoration: none;
        }

        .secondary-btn {
            background: transparent;
            border: 2px solid #e2e8f0;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 12px;
            color: #475569;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .secondary-btn:hover {
            border-color: #ff8427;
            color: #ff8427;
            text-decoration: none;
        }

        .trust-indicators {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #64748b;
        }

        .trust-item i {
            color: #ff8427;
        }

        /* Visual Section */
        .visual-container {
            position: relative;
            width: 100%;
            height: 500px;
        }

        .main-card {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: fit-content;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            animation: slideInRight 1s ease-out;
        }

        .card-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff8427, #ff6b1a);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .card-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 0.5rem;
        }

        .card-subtitle {
            font-size: 0.9rem;
            color: #64748b;
        }

        .feature-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feature-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .feature-card:hover {
            background: rgba(255, 132, 39, 0.05);
            transform: translateX(5px);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(255, 132, 39, 0.1), rgba(255, 132, 39, 0.2));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff8427;
            font-size: 1rem;
        }

        .feature-text {
            flex: 1;
        }

        .feature-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 2px;
        }

        .feature-desc {
            font-size: 0.8rem;
            color: #64748b;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 1rem;
            animation: float 6s ease-in-out infinite;
        }

        .floating-card-1 {
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 20%;
            left: 10%;
            animation-delay: 2s;
        }

        .floating-card-3 {
            top: 30%;
            left: 5%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translate(-50%, -50%) translateX(50px);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
         
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .visual-container {
                height: 400px;
            }
            
            .main-card {
                width: 300px;
                height: fit-content;
            }
        }

        @media (max-width: 768px) {
        
    
            .hero-title {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .primary-btn,
            .secondary-btn {
                justify-content: center;
            }
            
            .trust-indicators {
                justify-content: center;
            }
            
            .floating-card {
                display: none;
            }
            
            
             .revieworld-hero {
                padding: 80px 0;
            }
            
            .revieworld-title {
                font-size: 2.2rem;
            }
            
            .revieworld-subtitle {
                font-size: 1.1rem;
                margin-bottom: 2.5rem;
            }
            
            .revieworld-cta {
                padding: 16px 40px;
                font-size: 1rem;
            }
            
            .revieworld-geo-circle,
            .revieworld-geo-square,
            .revieworld-geo-triangle {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .main-card {
                width: 300px;
                height: fit-content;
                padding: 1.5rem;
            }
            
            
               .revieworld-title {
                font-size: 1.8rem;
            }
            
            .revieworld-subtitle {
                font-size: 1rem;
            }
            
            .revieworld-cta {
                padding: 14px 32px;
                font-size: 0.95rem;
            }
        }
