/* Hero Section */
.hero {
    background-image: url('https://res.cloudinary.com/dspsj31q8/image/upload/v1763477778/7bc6a5d2-e7e7-4751-9226-191b098887ac_m46ur8.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    color: white;
}

.bow a{
    background-color: black !important;
    color: white !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    width: fit-content;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.breadcrumb span {
    color: white;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .card-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f77139;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.love {
    background: #ff6b9d;
}

.category-badge.money {
    background: #ff9533;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
    line-height: 1.4;
    font-weight: 600;
}

.card-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.read-more {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #43a760;
}

.card-content .date {
    color: #43a760;
    font-size: 13px;
    display: block;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.pagination a {
    padding: 10px 15px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #43a760;
    color: white;
}

.pagination a.active {
    color: #43a760;
    background: white;
}

.pagination .prev,
.pagination .next {
    font-weight: 600;
}

/* Submit Testimonial Section */
.submit-testimonial {
    padding: 60px 0;
    background: #f9f9f9;
}

.submit-testimonial h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 32px;
    font-weight: 700;
}

.submit-testimonial p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: #43a760;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
    display: block;
    margin: 0 auto;
}

.btn-submit:hover {
    background: #369c52;
}

/* Testimonial Management */
.manage-testimonials {
    padding: 60px 0;
    background: #f9f9f9;
}

.manage-testimonials h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 28px;
    font-weight: 700;
}

.testimonial-item {
    border: 1px solid #ddd;
    margin: 10px 0;
    padding: 15px;
    background: white;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-item h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.testimonial-item p {
    margin: 5px 0;
    color: #666;
    flex: 1;
    margin-left: 20px;
}

.testimonial-item button {
    margin-left: 10px;
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.testimonial-item button:first-of-type {
    background: #dc3545;
    color: white;
}

.testimonial-item button:last-of-type {
    background: #ffc107;
    color: black;
}

/* Client Testimonial Content */
.content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    min-height: 100vh;
}

.content-section .container {
    max-width: 900px;
}

.client-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #43a760;
    box-shadow: 0 0 20px rgba(67, 167, 96, 0.5);
    margin: 0 auto 30px;
    display: block;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #43a760;
    text-shadow: 0 0 10px rgba(67, 167, 96, 0.5);
}

.client-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    border-left: 4px solid #43a760;
    font-weight: bold;
}

.full-story {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    line-height: 1.8;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.full-story p {
    margin-bottom: 20px;
    font-size: 16px;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #43a760, #369c52);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(67, 167, 96, 0.3);
    margin-top: 30px;
}

.cta-btn:hover {
    background: linear-gradient(45deg, #369c52, #2e8b47);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 167, 96, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}




/* Blog Section */
.blog-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff6b47;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #222;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #549d6d;
}

.blog-date {
    font-size: 13px;
    color: #549d6d;
    font-weight: 500;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-prev,
.pagination-next,
.pagination-number {
    padding: 10px 16px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination-prev:hover,
.pagination-next:hover,
.pagination-number:hover {
    background-color: #549d6d;
    color: #fff;
    border-color: #549d6d;
}

.pagination-number.active {
    background-color: #549d6d;
    color: #fff;
    border-color: #549d6d;
}

.pagination-prev.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #549d6d;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links,
.footer-hours,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-hours li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #549d6d;
}

.footer-hours li {
    color: #ccc;
    font-size: 14px;
}

.footer-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #549d6d;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-button:hover {
    background-color: #549d6d;
}

.footer-contact li {
    color: #ccc;
    font-size: 14px;
}

.footer-bottom {
    background-color: #549d6d;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-bottom-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .cta-button {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .blog-title {
        font-size: 16px;
    }

    .pagination {
        flex-wrap: wrap;
    }
}

