/* this is css for review section */
        /* Review Section Styling */
        .review-section {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .section-header h2 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        
        .section-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
        
        .review-content {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }
        
        .review-form-container {
            flex: 1;
            min-width: 300px;
            background: #fff;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .reviews-container {
            flex: 1;
            min-width: 300px;
            background: #fff;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .form-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1.25rem;
        }
        
        .review-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .form-control {
            padding: 0.8rem 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 0.95rem;
            background-color: #f9fafb;
            transition: all 0.2s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }
        
        .stars-container {
            display: flex;
            gap: 0.4rem;
            margin: 0.25rem 0 0.5rem;
        }
        
        .star {
            font-size: 1.4rem;
            color: #d1d5db;
            cursor: pointer;
            transition: transform 0.2s ease, color 0.2s ease;
        }
        
        .star:hover {
            transform: scale(1.1);
        }
        
        .star.selected {
            color: #f59e0b;
        }
        
        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }
        
        .submit-btn {
            padding: 0.85rem;
            background: #4f46e5;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-top: 0.5rem;
        }
        
        .submit-btn:hover {
            background: #6366f1;
        }
        
        .reviews-list {
            max-height: 500px;
            overflow-y: auto;
            padding-right: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }
        
        .reviews-list::-webkit-scrollbar {
            width: 6px;
        }
        
        .reviews-list::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 4px;
        }
        
        .reviews-list::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 4px;
        }
        
        .review-card {
            background: #f9fafb;
            border-radius: 8px;
            padding: 1.25rem;
            border: 1px solid #e5e7eb;
            animation: fadeIn 0.3s ease-out;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }
        
        .reviewer-name {
            font-weight: 600;
            font-size: 1rem;
            color: #333;
        }
        
        .review-date {
            font-size: 0.8rem;
            color: #6b7280;
            margin-top: 0.15rem;
        }
        
        .review-stars {
            color: #f59e0b;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }
        
        .review-text {
            color: #333;
            line-height: 1.6;
            font-size: 0.95rem;
            word-wrap: break-word;
        }
        
        .success-message {
            background: #10b981;
            color: white;
            padding: 0.8rem;
            border-radius: 8px;
            text-align: center;
            margin-top: 0.75rem;
            font-size: 0.9rem;
            display: none;
            animation: fadeIn 0.3s ease-out;
        }
        
        .stat-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            padding: 0.75rem;
            background: #f9fafb;
            border-radius: 10px;
        }
        
        .rating-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #333;
        }
        
        .rating-stars {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        
        .stars-large {
            color: #f59e0b;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }
        
        .rating-count {
            font-size: 0.85rem;
            color: #6b7280;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .review-content {
                flex-direction: column;
            }
            
            .section-header h2 {
                font-size: 1.6rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .review-section {
                padding: 1rem;
            }
            
            .review-form-container,
            .reviews-container {
                padding: 1rem;
            }
            
            .review-card {
                padding: 1rem;
            }
            
            .rating-value {
                font-size: 1.6rem;
            }
        }
/* ===== PROFESSIONAL FOOTER STYLES ===== */
    :root {
            --primary: #4a6cf7;
            --secondary: #00c2ff;
            --dark: #0f172a;
            --darker: #0a0f1f;
            --light: #f8fafc;
            --gray: #94a3b8;
            --border: rgba(255, 255, 255, 0.08);
        }
        .footer {
            background: var(--darker);
            border-top: 1px solid var(--border);
            border-radius: 24px 24px 0 0;
            padding: 4rem 0 0;
            margin-top: auto;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            color: var(--light);
            padding: 2rem;
            line-height: 1.6;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-branding {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--light);
        }
        
        .footer-logo-icon {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .footer-branding p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        .footer-heading {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: var(--light);
            position: relative;
            padding-bottom: 0.75rem;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 3px;
        }
        
        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .footer-links li {
            transition: transform 0.2s ease;
        }
        
        .footer-links li:hover {
            transform: translateX(5px);
        }
        
        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .footer-links i {
            color: var(--primary);
            font-size: 0.9rem;
        }
        
        .footer-newsletter form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .footer-newsletter .input-group {
            position: relative;
        }
        
        .footer-newsletter input {
            width: 100%;
            padding: 0.9rem 1.25rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: rgba(15, 23, 42, 0.5);
            color: var(--light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .footer-newsletter input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
        }
        
        .footer-newsletter input::placeholder {
            color: var(--gray);
        }
        
        .footer-newsletter button {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .footer-newsletter button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
        }
        
        .footer-newsletter p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid var(--border);
            color: var(--light);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-link:hover {
            transform: translateY(-3px);
            background: var(--primary);
            box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--border);
            padding: 1.5rem 0;
            text-align: center;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .copyright {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                gap: 2rem;
            }
            
            .footer-links-grid {
                grid-template-columns: 1fr;
            }
            
            .content {
                padding: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 1rem;
            }
            
            .content {
                padding: 1.5rem;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
        }