/* ===== Root Variables for Color Scheme ===== */
:root {
    --green: #2F4F4F;
    --beige: #FAF3E0;
    --terracotta: #D2691E;
    --cream: #FFF8F0;
    --white: #ffffff;
    --gray: #444444;
}

/* ===== Global Reset & Typography ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--beige);
    color: var(--gray);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Header ===== */
.header {
    background-color: var(--green);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.logo h2 {
    font-size: 1.5rem;
    color: var(--terracotta);
}

/* ===== Navigation ===== */
.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu li a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--terracotta);
    border-bottom: 2px solid var(--terracotta);
}

.cta-button {
    background-color: var(--terracotta);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #b25618;
}

/* ===== Hamburger Menu ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: var(--white);
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5);
}

.hero-content {
    max-width: 800px;
    margin: auto;
    padding: 2rem;
    color: var(--white);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 1.6rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b25618;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== Responsive Styling ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: var(--green);
        position: absolute;
        top: 75px;
        right: 20px;
        width: 200px;
        padding: 1rem;
        border-radius: 6px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .cta-button {
        display: none; /* Optional: hide CTA in header for mobile */
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/****services preview section**/
/* ===== Container and Section Header ===== */
.services-overview {
    padding: 4rem 1rem;
    background-color: #FAF3E0; /* Soft beige */
    color: #2F4F4F; /* Deep green for text */
}

.services-overview .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #D2691E; /* Terracotta accent */
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
}

/* ===== 2x2 Grid Layout ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* ===== Service Cards ===== */
.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: #D2691E;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2F4F4F;
}

.service-card p {
    flex-grow: 1;
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
}

.service-link {
    color: #D2691E;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #b25618;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column on smaller screens */
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

/************About***************/
/* ===== About Summary Section ===== */
.about-summary {
    background-color: #FFF8F0; /* Light cream background */
    padding: 4rem 1rem;
    color: #2F4F4F; /* Deep green */
}

.about-summary .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Layout: Side-by-side (text + image) ===== */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

/* ===== Left: Text Content ===== */
.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #D2691E; /* Terracotta */
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

/* ===== Stats Section ===== */
.stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.stat {
    flex: 1 1 100px;
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #2F4F4F;
    margin-bottom: 0.3rem;
}

.stat p {
    font-size: 0.95rem;
    color: #666;
}

/* ===== CTA Button ===== */
.btn-primary {
    display: inline-block;
    background-color: #D2691E;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: #b25618;
}

/* ===== Right: Image Content ===== */
.about-image {
    flex: 1 1 400px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .stat h3 {
        font-size: 1.6rem;
    }

    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
}
/*********************Why Choose Us*****************/
/* ===== Why Choose Us Section ===== */
.why-choose-us {
    background-color: #FAF3E0; /* Light beige */
    padding: 4rem 1rem;
    color: #2F4F4F; /* Deep green text */
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #D2691E; /* Terracotta */
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
}

/* ===== Grid Layout ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* ===== Feature Cards ===== */
.feature {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.feature i {
    font-size: 2.5rem;
    color: #D2691E;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2F4F4F;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .feature h3 {
        font-size: 1.2rem;
    }
}

/************************Blog***************/
/* ===== Recent Blog Posts Section ===== */
.recent-blogs {
    background-color: #FFF8F0; /* Creamy background */
    padding: 4rem 1rem;
    color: #2F4F4F; /* Deep green text */
}

.recent-blogs .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #D2691E; /* Terracotta accent */
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
}

/* ===== Blog Grid ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ===== Blog Card ===== */
.blog-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ===== Blog Content ===== */
.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 0.9rem;
    font-weight: bold;
    color: #D2691E;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2F4F4F;
}

.blog-content p {
    flex-grow: 1;
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* ===== Read More Link ===== */
.read-more {
    color: #D2691E;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #b25618;
}

/* ===== CTA Button (View All Posts) ===== */
.blog-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #D2691E;
    color: #D2691E;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #D2691E;
    color: #fff;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-card img {
        height: 180px;
    }
}

/************************Cta**********************/
/* ===== CTA Section ===== */
.cta-section {
    background-color: #2F4F4F; /* Deep green */
    color: #FFF8F0; /* Light cream text */
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== CTA Content ===== */
.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e0dcd0;
    margin-bottom: 2rem;
}

/* ===== CTA Buttons ===== */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.8rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
}

/* Primary CTA (Quote) */
.btn-primary {
    background-color: #D2691E; /* Terracotta */
    color: #fff;
}

.btn-primary:hover {
    background-color: #b25618;
}

/* Secondary CTA (Call Now) */
.btn-secondary {
    background-color: transparent;
    border: 2px solid #D2691E;
    color: #D2691E;
}

.btn-secondary:hover {
    background-color: #D2691E;
    color: #fff;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/***********************Footer******************/
/* ===== Footer ===== */
.footer {
    background-color: #2F4F4F; /* Deep Green */
    color: #FFF8F0;            /* Cream Text */
    padding: 4rem 1rem 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Footer Grid Layout ===== */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ===== Footer Logo & Description ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo h3 {
    font-size: 1.4rem;
    color: #FFF;
    margin: 0;
}

/* ===== Social Media Links ===== */
.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #D2691E;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

/* ===== Footer Section Titles ===== */
.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #FFF;
    border-bottom: 2px solid #D2691E;
    display: inline-block;
    padding-bottom: 0.3rem;
}

/* ===== Footer Links ===== */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: #e6e1d9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #fff;
}

/* ===== Contact Info Section ===== */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #e0dcd0;
}

.contact-info i {
    color: #D2691E;
}

/* ===== Bottom Footer Bar ===== */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #ccc;
}

.footer-bottom a {
    color: #D2691E;
    margin: 0 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        text-align: center;
    }

    .contact-info {
        justify-content: center;
        flex-direction: column;
    }
}

/**********************About Page****************/

/* ===== Page Header Section ===== */
.page-header {
    background-color: #2F4F4F; /* Deep Green */
    color: #FFF8F0;           /* Cream Text */
    padding: 4rem 1rem 3rem;
    text-align: center;
    position: relative;
}

.page-header .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== Page Title ===== */
.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

/* ===== Subtitle / Description ===== */
.page-header p {
    font-size: 1.2rem;
    color: #e0dcd0;
    margin: 0 auto;
    max-width: 700px;
}

/* ===== Optional: Add a Decorative Border or Line ===== */
.page-header::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #D2691E;
    margin: 2rem auto 0;
    border-radius: 2px;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .page-header::after {
        width: 40px;
    }
}

/* ===== About Us Section ===== */
.about-us-section {
    background-color: #FFF8F0; /* Light cream background */
    padding: 4rem 1rem;
    color: #2F4F4F; /* Deep green text */
}

.about-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Flex Layout for Content ===== */
.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ===== Text Content ===== */
.about-text {
    flex: 1 1 50%;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #D2691E; /* Terracotta title */
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #333;
}

/* ===== Image Content ===== */
.about-image {
    flex: 1 1 45%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text,
    .about-image {
        flex: 1 1 100%;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-image img {
        max-width: 90%;
        margin: 0 auto;
    }
}
/* ===== Our Journey Section ===== */
.our-journey {
    background-color: #FFF8F0; /* Light cream */
    color: #2F4F4F;           /* Deep green */
    padding: 4rem 1rem;
}

.our-journey .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #D2691E;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #444;
}

/* ===== Timeline Container ===== */
.timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 30px;
    border-left: 3px solid #D2691E;
}

/* ===== Timeline Item ===== */
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 5px;
    width: 18px;
    height: 18px;
    background-color: #D2691E;
    border-radius: 50%;
    border: 3px solid #FFF8F0;
    box-shadow: 0 0 0 2px #D2691E;
}

/* ===== Timeline Year ===== */
.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2F4F4F;
    margin-bottom: 0.5rem;
}

/* ===== Timeline Content ===== */
.timeline-content h3 {
    font-size: 1.3rem;
    color: #D2691E;
    margin: 0 0 0.3rem;
}

.timeline-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-item::before {
        left: -10px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }
}



/* ===== Mission & Vision Section ===== */
.mission-vision {
    background-color: #FFF8F0; /* Light cream */
    color: #2F4F4F;           /* Deep green text */
    padding: 4rem 1rem;
}

.mission-vision .container {
    max-width: 1100px;
    margin: 0 auto;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission, .vision {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 6px solid #D2691E; /* Terracotta accent */
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
}

/* ===== Icon Styling ===== */
.mv-icon {
    font-size: 2.5rem;
    color: #D2691E;
    margin-bottom: 1rem;
}

.mission h2,
.vision h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2F4F4F;
}

.mission p,
.vision p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

/* ===== Responsive Layout ===== */
@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission h2,
    .vision h2 {
        font-size: 1.5rem;
    }

    .mission p,
    .vision p {
        font-size: 1rem;
    }
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
    background-color: #FFF8F0; /* Soft cream background */
    padding: 4rem 1rem;
    color: #2F4F4F;
}

.why-choose-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #D2691E;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #444;
}

/* ===== Grid Layout ===== */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ===== Individual Choose Items ===== */
.choose-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 5px solid #D2691E;
}

.choose-item:hover {
    transform: translateY(-5px);
}

/* ===== Icons ===== */
.choose-icon {
    font-size: 2.5rem;
    color: #D2691E;
    margin-bottom: 1rem;
}

/* ===== Titles & Text ===== */
.choose-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2F4F4F;
}

.choose-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .choose-item h3 {
        font-size: 1.2rem;
    }

    .choose-item p {
        font-size: 0.95rem;
    }
}

/*************************Services*********************/

/* ===== Services Main Section ===== */
:root {
  --green: #2F4F4F;
  --beige: #FAF3E0;
  --terracotta: #D2691E;
  --cream: #FFF8F0;
  --white: #ffffff;
  --gray: #444444;
}

.services-main {
  background-color: var(--beige);
  padding: 60px 20px;
  color: var(--gray);
  font-family: 'Segoe UI', sans-serif;
}

.services-main .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-item-large {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-item-large:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-content {
  flex: 1 1 55%;
  padding: 40px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  font-size: 2rem;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.service-content h2 {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 16px;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--green);
}

.service-features li i {
  margin-right: 10px;
  color: var(--terracotta);
}

.btn.btn-primary {
  align-self: start;
  background-color: var(--terracotta);
  color: var(--white);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: var(--green);
  color: var(--white);
}

/* ===== Icons ===== */
.service-icon {
    font-size: 2.2rem;
    color: #2F4F4F;
    margin-bottom: 1rem;
}

/* ===== Features List ===== */
.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: #333;
}

.service-features li i {
    color: #D2691E;
    margin-right: 0.6rem;
}

/* ===== Buttons ===== */
.btn.btn-primary {
    background-color: #D2691E;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
    background-color: #b35816;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .service-item-large {
        flex-direction: column;
    }

    .service-image, .service-content {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .service-content {
        padding: 2rem;
    }

    .service-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .service-content {
        padding: 1.5rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .btn.btn-primary {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}

/* === Process Section === */
.process-section {
  background-color: var(--cream);
  padding: 60px 20px;
  color: var(--gray);
  font-family: 'Segoe UI', sans-serif;
}

.process-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--green);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--terracotta);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.process-step {
  background-color: var(--white);
  border: 1px solid var(--beige);
  border-radius: 12px;
  width: 260px;
  padding: 30px 20px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 60px;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}

/* === Responsive Typography === */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .process-step h3 {
        font-size: 1.25rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/****************************Individual Services Page***************/
/* === Service Hero Section === */
.service-hero {
    padding: 4rem 1rem;
    background-color: #fff;
    color: #333;
}

.service-hero .container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Image Column */
.service-hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-hero-image img:hover {
    transform: scale(1.05);
}

/* Text Column */
.service-hero-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.service-hero-text h1 {
    font-size: 2.8rem;
    color: #D2691E; /* Terracotta accent */
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-hero-text h1 i {
    color: #D2691E;
    font-size: 2.6rem;
}

.service-hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
}

/* Highlights */
.service-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #f7f2ef;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(210, 105, 30, 0.1);
    font-size: 1rem;
    color: #444;
}

.highlight i {
    color: #D2691E;
    font-size: 1.4rem;
}

/* Button */
.btn-large {
    padding: 0.85rem 2.2rem;
    font-size: 1.15rem;
    border-radius: 8px;
    background-color: #D2691E;
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-large:hover,
.btn-large:focus {
    background-color: #b2581a;
}

/* Responsive */
@media (max-width: 900px) {
    .service-hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-hero-image,
    .service-hero-text {
        flex: 1 1 100%;
        min-width: auto;
    }
}


/**********content**********/
/* === Service Content Section === */
.service-content {
    padding: 4rem 1rem;
    background-color: #fff;
    color: #333;
}

.service-content .container {
    max-width: 1100px;
    margin: 0 auto;
}

.content-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* === Left Text Content === */
.content-text {
    flex: 1 1 60%;
}

.content-text h2 {
    font-size: 2.2rem;
    color: #D2691E;
    margin-bottom: 1rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

/* === Benefits List === */
.service-benefits h3 {
    font-size: 1.5rem;
    color: #2f2f2f;
    margin-bottom: 1rem;
}

.service-benefits ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.service-benefits ul li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: #444;
}

.service-benefits ul li i {
    color: #D2691E;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* === Stats Cards (Right) === */
.content-stats {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background-color: #f7f2ef;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(210, 105, 30, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D2691E;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
}

/* === Responsive === */
@media (max-width: 900px) {
    .content-grid {
        flex-direction: column;
    }

    .content-text, .content-stats {
        flex: 1 1 100%;
    }

    .content-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .stat-card {
        flex: 1 1 30%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stat-card {
        flex: 1 1 100%;
    }
}

/* === Service Content Section === */
.service-content {
  padding: 4rem 1rem;
  background-color: #fff;
  color: #333;
}

.service-content .container {
  max-width: 1100px;
  margin: 0 auto;
}

.content-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.content-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.content-text h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #D2691E;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: #555;
}

.service-benefits h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #444;
}

.service-benefits ul {
  list-style: none;
  padding-left: 0;
}

.service-benefits li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  color: #444;
}

.service-benefits li i {
  color: #D2691E;
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

/* Stats Column */
.content-stats {
  flex: 1 1 35%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background-color: #f7f2ef;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: #D2691E;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

/* === Services Grid Section === */
.services-grid-section {
  padding: 4rem 1rem 6rem;
  background-color: #fff;
  color: #333;
}

.services-grid-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header h2 {
  font-size: 2.6rem;
  color: #D2691E;
  margin-bottom: 0.3rem;
  text-align: center;
}

.section-header p {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 3rem;
  text-align: center;
}

.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.service-grid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-grid-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-grid-item:hover img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(210, 105, 30, 0.85);
  color: white;
  padding: 1.5rem 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 0 0 12px 12px;
}

.service-grid-item:hover .service-overlay {
  opacity: 1;
}

.service-overlay h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.service-overlay p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
  }
  .content-text,
  .content-stats {
    flex: 1 1 100%;
  }
  
  .services-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .services-grid-6 {
    grid-template-columns: 1fr;
  }
}

/* === Process Section === */

/* Responsive */
@media (max-width: 600px) {
  .process-timeline {
    margin-left: 20px;
    padding-left: 1rem;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .process-step::before {
    left: -28px;
    width: 12px;
    height: 12px;
  }
  
  .step-content h3 {
    font-size: 1.3rem;
  }
}

/**********************Faq*******************/

/* === FAQ Section === */
.faq-section {
  background-color: #fff;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ categories buttons */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 3rem;
}

.faq-category-btn {
  background: #f0f0f0;
  border: 2px solid transparent;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-category-btn:hover {
  background: #D2691E;
  color: white;
}

.faq-category-btn.active {
  background: #D2691E;
  color: white;
  border-color: #a35412;
  box-shadow: 0 4px 10px rgba(210, 105, 30, 0.4);
}

/* FAQ content containers */
.faq-category-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.faq-category-content.active {
  display: block;
}

/* FAQ item */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1.2rem 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: none;
}

/* Question area */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #D2691E;
  user-select: none;
}

/* Plus/minus icon */
.faq-question i {
  font-size: 1.4rem;
  color: #D2691E;
  transition: transform 0.3s ease;
  pointer-events: none;
}

/* Rotate icon when active */
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Answer area */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-left: 1rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* large enough to show full content */
  padding-top: 0.8rem;
}

/* Smooth fade in animation for content */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .faq-categories {
    justify-content: flex-start;
    gap: 8px;
  }
  
  .faq-category-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
}

/* === Contact CTA Section === */
.faq-cta {
  background-color: #D2691E; /* warm accent color */
  color: white;
  padding: 4rem 1rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-cta .container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.faq-cta-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Buttons container */
.faq-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Primary button style */
.faq-cta .btn-primary {
  background-color: white;
  color: #D2691E;
  padding: 0.75rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.faq-cta .btn-primary:hover,
.faq-cta .btn-primary:focus {
  background-color: #f5f5f5;
  color: #a35412;
  outline: none;
}

/* Secondary button style */
.faq-cta .btn-secondary {
  background-color: transparent;
  color: white;
  padding: 0.75rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  border: 2px solid white;
  text-decoration: none;
  box-shadow: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.faq-cta .btn-secondary:hover,
.faq-cta .btn-secondary:focus {
  background-color: white;
  color: #D2691E;
  outline: none;
}

/* Responsive */
@media (max-width: 480px) {
  .faq-cta-content h2 {
    font-size: 2rem;
  }
  
  .faq-cta-content p {
    font-size: 1rem;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .faq-cta .btn-primary,
  .faq-cta .btn-secondary {
    width: 100%;
    padding: 0.9rem 0;
    font-size: 1.1rem;
  }
}

/********************Blog*******************/

/* === Blog Section === */
.blog-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 3rem;
}

/* === Blog Grid === */
.blog-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* === Blog Post Card === */
.blog-post-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.blog-post-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* Blog Image */
.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-image img {
  transform: scale(1.05);
}

/* Blog Category Badge */
.blog-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #D2691E;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  user-select: none;
}

/* Blog Content */
.blog-content {
  padding: 1.5rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Meta info */
.blog-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1.5rem;
}

.blog-meta i {
  margin-right: 6px;
  color: #D2691E;
}

/* Blog Post Title */
.blog-content h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #222;
  line-height: 1.3;
}

/* Blog excerpt */
.blog-content p {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #555;
}

/* Tags */
.blog-tags {
  margin-bottom: 1.5rem;
}

.blog-tags .tag {
  display: inline-block;
  background-color: #eee;
  color: #555;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 14px;
  margin-right: 8px;
  user-select: none;
  transition: background-color 0.3s ease;
}

.blog-tags .tag:hover {
  background-color: #D2691E;
  color: white;
  cursor: pointer;
}

/* Read More Button */
.read-more-btn {
  font-weight: 700;
  color: #D2691E;
  text-decoration: none;
  align-self: flex-start;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more-btn:hover {
  color: #a35412;
  text-decoration: underline;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(4px);
}

/* === Sidebar === */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Sidebar widgets */
.sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #D2691E;
  padding-bottom: 0.5rem;
  color: #D2691E;
}

/* Category List */
.category-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 0.7rem;
}

.category-list a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-list a span {
  font-weight: 400;
  color: #999;
}

.category-list a:hover {
  color: #D2691E;
}

/* Recent Posts */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.recent-post {
  display: flex;
  gap: 12px;
  align-items: center;
}

.recent-post img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.recent-post-content h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.recent-post-content h4 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
  color: #D2691E;
}

.recent-date {
  font-size: 0.85rem;
  color: #999;
  margin-top: 4px;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.newsletter-form input[type="email"] {
  padding: 0.6rem 1rem;
  border: 1.8px solid #ccc;
  border-radius: 30px;
  font-size: 1rem;
  outline-offset: 2px;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #D2691E;
  outline: none;
}

.newsletter-form button.btn-primary {
  align-self: stretch;
  padding: 0.7rem 0;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  background-color: #D2691E;
  border: none;
  color: white;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.newsletter-form button.btn-primary:hover,
.newsletter-form button.btn-primary:focus {
  background-color: #a35412;
  outline: none;
  color: white;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .blog-section .container {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  .blog-post-card .blog-image img {
    height: 160px;
  }

  .blog-content h2 {
    font-size: 1.1rem;
  }

  .blog-content p {
    font-size: 0.95rem;
  }

  .recent-post img {
    width: 48px;
    height: 48px;
  }

  .recent-post-content h4 {
    font-size: 0.9rem;
  }
}

/******************Quotes Page**********************/

/* Contact Info Section */
.contact-info-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: #fff;
    flex: 1 1 300px;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 40px;
    color: #D2691E; /* Primary blue */
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.contact-link {
    font-size: 18px;
    color: #D2691E;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #a35412;
    text-decoration: underline;
}

/* Quote Form Section */
.quote-form-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.quote-form-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.quote-form-container {
    flex: 1 1 650px;
    background: #f5f7fa;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.quote-form-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
}

.quote-form-header p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.quote-form .form-section {
    margin-bottom: 35px;
}

.quote-form .form-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #D2691E;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-form .form-section h3 i {
    font-size: 24px;
    color: #a35412;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    resize: vertical;
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #D2691E;
    outline: none;
}

/* Checkbox & Radio Styling */
.checkbox-group,
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-label,
.radio-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: #444;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark,
.radio-mark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
    border: 1.5px solid #ccc;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.radio-mark {
    border-radius: 50%;
}

.checkbox-label input:checked ~ .checkmark,
.radio-label input:checked ~ .radio-mark {
    background-color: #D2691E;
    border-color: #D2691E;
}

.checkmark::after,
.radio-mark::after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark::after {
    display: block;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.radio-label input:checked ~ .radio-mark::after {
    display: block;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* Checkbox labels inside form-section for terms & newsletter */
.form-section .checkbox-label a {
    color: #D2691E;
    text-decoration: underline;
}

.form-section .checkbox-label a:hover {
    color: #a35412;
}


/* Quote Benefits */
.quote-benefits {
    flex: 1 1 400px;
    padding: 30px 20px;
    background-color: #f5f7fa;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.quote-benefits h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #222;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

.benefit-item i {
    font-size: 36px;
    color: #D2691E;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.benefit-item p {
    font-size: 15px;
    color: #555;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-grid,
    .quote-form-section .container {
        flex-direction: column;
    }

    .contact-card,
    .quote-form-container,
    .quote-benefits {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        flex: 1 1 100%;
    }
}


/****************Newsletter*****************/

/* Newsletter Hero Section */
.newsletter-hero {
  background: #f5f9fc;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.newsletter-hero .container {
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter-hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.newsletter-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.newsletter-text h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #a35412;
  display: flex;
  align-items: center;
  gap: 12px;
}

.newsletter-text h1 i {
  color: #D2691E;
  font-size: 2.6rem;
}

.newsletter-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #444;
}

.benefit i {
  color: #D2691E;
  font-size: 1.6rem;
}

/* Newsletter Signup Form Container */
.newsletter-form-container {
  flex: 1 1 350px;
  max-width: 400px;
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e6f0;
}

.newsletter-signup-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #a35412;
  font-weight: 700;
}

.newsletter-signup-card p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
}

.newsletter-signup-form .form-group {
  margin-bottom: 20px;
}

.newsletter-signup-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.newsletter-signup-form input[type="email"],
.newsletter-signup-form input[type="text"] {
  width: 100%;
  padding: 10px 14px;
  border: 1.8px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.newsletter-signup-form input[type="email"]:focus,
.newsletter-signup-form input[type="text"]:focus {
  outline: none;
  border-color: #D2691E;
  box-shadow: 0 0 5px var(--cream);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.checkbox-label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  user-select: none;
  font-size: 0.95rem;
  color: #444;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: #eee;
  border-radius: 4px;
  border: 1.5px solid #ccc;
  transition: background-color 0.3s, border-color 0.3s;
}

.checkbox-label:hover input ~ .checkmark {
  background-color: #f0f5ff;
}

.checkbox-label input:checked ~ .checkmark {
  background-color: #D2691E;
  border-color: #D2691E;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark::after {
  display: block;
}

/* Submit Button */
.newsletter-signup-form button.btn {
  background-color: #D2691E;
  border: none;
  color: white;
  font-size: 1.1rem;
  padding: 14px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.newsletter-signup-form button.btn:hover {
  background-color: #a35412;
}

.newsletter-signup-form button.btn i {
  font-size: 1.2rem;
}

/* Privacy Note */
.privacy-note {
  margin-top: 20px;
  font-size: 0.875rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy-note i {
  color: #D2691E;
  font-size: 1.1rem;
}

/* Newsletter Preview Section */
.newsletter-preview {
  background: #fff;
  padding: 60px 20px;
  color: #333;
}

.newsletter-preview .container {
  max-width: 1100px;
  margin: 0 auto;
}

.newsletter-preview .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.newsletter-preview .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a35412;
}

.newsletter-preview .section-header p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 8px;
}

/* Newsletter Samples Grid */
.newsletter-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.newsletter-sample {
  background: #f7faff;
  border: 1.5px solid #d6e4ff;
  border-radius: 10px;
  width: 100%;
  max-width: 480px;
  padding: 25px 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sample-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid #cbd7f2;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.sample-header h3 {
  font-size: 1.6rem;
  color: #D2691E;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sample-header h3 i {
  font-size: 1.4rem;
}

.sample-date {
  font-size: 0.9rem;
  font-style: italic;
  color: #666;
}

.sample-content h4 {
  font-size: 1.2rem;
  color: #D2691E;
  margin-bottom: 12px;
  font-weight: 600;
}

.sample-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.sample-content ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sample-content ul li i {
  color: #D2691E;
  font-size: 0.9rem;
}

.sample-offer {
  background-color: #D2691E;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 1rem;
  text-align: center;
}

/* Newsletter Stats Section */
.newsletter-stats {
  background: #f0f5ff;
  padding: 50px 20px;
}

.newsletter-stats .container {
  max-width: 1000px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  background: white;
  border-radius: 10px;
  padding: 25px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #D2691E;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .newsletter-hero-content {
    flex-direction: column;
  }

  .newsletter-text,
  .newsletter-form-container {
    max-width: 100%;
  }

  .newsletter-samples {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .newsletter-text h1 {
    font-size: 2rem;
  }

  .newsletter-signup-card h2 {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}


/* Testimonials Section */
.newsletter-testimonials {
  background-color: var(--beige);
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.newsletter-testimonials .container {
  max-width: 1100px;
  margin: 0 auto;
}

.newsletter-testimonials .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.newsletter-testimonials .section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #D2691E;
  margin-bottom: 10px;
}

.newsletter-testimonials .section-header p {
  font-size: 1.15rem;
  color: #555;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Individual Testimonial Card */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Testimonial Text */
.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
  position: relative;
  padding-left: 30px;
}

.testimonial-content p::before {
  content: "“";
  font-size: 3rem;
  color: #D2691E;
  position: absolute;
  left: 0;
  top: -10px;
  font-weight: 700;
  line-height: 1;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #D2691E;
}

.author-info h4 {
  margin: 0 0 5px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #a35412;
}

.author-info span {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-content p {
    font-size: 1rem;
  }

  .author-info h4 {
    font-size: 1.1rem;
  }
}

/*********************Individual Blog*********************/

/* === Blog Grid === */
.full-blog-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  gap: 2.5rem;
}

/* === Blog Post Card === */
.full-blog-post-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.full-blog-post-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* Blog Image */
.full-blog-image {
  position: relative;
  overflow: hidden;
}

.full-blog-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.full-blog-post-card:hover .blog-image img {
  transform: scale(1.05);
}

/* Blog Category Badge */
.full-blog-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #D2691E;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  user-select: none;
}

/* Blog Content */
.full-blog-content {
  padding: 1.5rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Meta info */
.full-blog-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1.5rem;
}

.full-blog-meta i {
  margin-right: 6px;
  color: #D2691E;
}

/* Blog Post Title */
.full-blog-content h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #222;
  line-height: 1.3;
}

/* Blog excerpt */
.full-blog-content p {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #555;
}

/* Tags */
.full-blog-tags {
  margin-bottom: 1.5rem;
}

.full-blog-tags .tag {
  display: inline-block;
  background-color: #eee;
  color: #555;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 14px;
  margin-right: 8px;
  user-select: none;
  transition: background-color 0.3s ease;
}

.full-blog-tags .tag:hover {
  background-color: #D2691E;
  color: white;
  cursor: pointer;
}



/* === Sidebar === */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Sidebar widgets */
.sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #D2691E;
  padding-bottom: 0.5rem;
  color: #D2691E;
}

/* Category List */
.category-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 0.7rem;
}

.category-list a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-list a span {
  font-weight: 400;
  color: #999;
}

.category-list a:hover {
  color: #D2691E;
}

/* Recent Posts */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.recent-post {
  display: flex;
  gap: 12px;
  align-items: center;
}

.recent-post img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.recent-post-content h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.recent-post-content h4 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
  color: #D2691E;
}

.recent-date {
  font-size: 0.85rem;
  color: #999;
  margin-top: 4px;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.newsletter-form input[type="email"] {
  padding: 0.6rem 1rem;
  border: 1.8px solid #ccc;
  border-radius: 30px;
  font-size: 1rem;
  outline-offset: 2px;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #D2691E;
  outline: none;
}

.newsletter-form button.btn-primary {
  align-self: stretch;
  padding: 0.7rem 0;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  background-color: #D2691E;
  border: none;
  color: white;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.newsletter-form button.btn-primary:hover,
.newsletter-form button.btn-primary:focus {
  background-color: #a35412;
  outline: none;
  color: white;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .blog-section .container {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  .blog-post-card .blog-image img {
    height: 160px;
  }

  .blog-content h2 {
    font-size: 1.1rem;
  }

  .blog-content p {
    font-size: 0.95rem;
  }

  .recent-post img {
    width: 48px;
    height: 48px;
  }

  .recent-post-content h4 {
    font-size: 0.9rem;
  }
}


