        .hero {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%),
                url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1973&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }

            100% {
                left: 100%;
            }
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            z-index: 1;
            position: relative;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section:nth-child(even) {
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 30px;
            margin-bottom: 20px;
            color: #2c3e50;
            font-weight: 700;
        }

        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-top: 4px solid #ff6f61;
            position: relative;
        }

        .testimonial:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* .testimonial::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: #ff6f61;
            font-weight: bold;
        } */

        .testimonial h4 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 20px;
        }

        .testimonial small {
            color: #ff6f61;
            font-weight: 600;
            display: block;
            margin-bottom: 15px;
        }

        .testimonial p {
            color: #666;
            font-style: italic;
            line-height: 1.8;
        }

        .blogs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6f61, #667eea);
        }

        .blog-card h4 {
            padding: 25px 25px 15px;
            color: #2c3e50;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .blog-card p {
            padding: 0 25px 25px;
            color: #666;
            line-height: 1.7;
        }

        .blog-card i {
            position: absolute;
            top: 25px;
            right: 25px;
            color: #ff6f61;
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .hero {
                height: 50vh;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .testimonials,
            .blogs {
                grid-template-columns: 1fr;
            }
        }