/*posts section starts*/
    .post-card {
        background: #fff;
        border: none;
        border-radius: 0px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .post-card:hover {
        transform: translateY(-5px);
    }

    .post-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .post-details {
        padding: 10px;
        text-align: center;
    }

    .post-title {
        font-size: 10px;
        margin: 8px 0;
        font-weight: bold;
        text-align: left;
        color: red;
    }

    .post-category {
        font-size: 12px;
        color: red;
    }
/*posts section ends*/

        /* Hero Section */
        .hero {
            padding: 80px 0;
            background-size: 300px;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }

        .couple-img {
            width: 300px;
            height: 300px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .couple-img::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M30,40 C40,20 60,20 70,40 C80,60 60,80 50,70 C40,80 20,60 30,40 Z" fill="%23ffd1dc"/></svg>') no-repeat center;
            background-size: 80%;
        }

        .heart {
            position: absolute;
            color: var(--accent);
            font-size: 2rem;
            animation: float 3s infinite ease-in-out;
        }

        .heart:nth-child(1) {
            top: 20%;
            left: 20%;
            animation-delay: 0s;
        }

        .heart:nth-child(2) {
            top: 10%;
            right: 25%;
            animation-delay: 0.5s;
        }

        .heart:nth-child(3) {
            bottom: 15%;
            left: 30%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            font-size: 2.5rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--light);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 2rem;
        }

        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--accent), #ffe4ec);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--light);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial-card::before {
            content: """;
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--secondary);
            opacity: 0.3;
            font-family: Georgia, serif;
        }

        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
        }

        .author-info h4 {
            color: var(--primary);
        }

        /* CTA Section */
        .cta {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--light);
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }

        .btn-cta {
            background: var(--light);
            color: var(--primary);
            padding: 15px 40px;
            font-size: 1.1rem;
        }

        .btn-cta:hover {
            background: var(--accent);
            color: var(--light);
        }
        
        .author-avatar img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            nav ul {
                gap: 15px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .couple-img {
                width: 250px;
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .btn {
                padding: 8px 20px;
            }
        }