:root {
    --primary-color: #0D2291;
    --secondary-color: #1e5b8d;
    --light-color: #c0dffc;
    --dark-color: #0a2942;
    --white-color: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 87, 133, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 41, 66, 0.2);
}

.navbar {
    background-color: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    max-width: 600px;

    background: rgb(255 255 255 / 55%);
    padding: 10px;
    border-radius: 8px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.ring-section {
    padding-bottom: 100px;
    background-color: var(--white-color);
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}


.process-section {
    padding: 100px 0;
    /* background-color: var(--light-color); */
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.testimonial-section {
    padding: 100px 0;
    /* background-color: var(--white-color); */
    /* background-color: #69656247; */
    background-image: url('../images/review.webp');
    background-size: cover;
    background-position: top;
}

.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    /* background-color: var(--light-color); */
    background-color: rgba(240, 224, 200, 0.85);
    margin: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 7px;
    left: 10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    /* color: var(--dark-color); */
    color: #222;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.contact-form {
    /* background-color: var(--light-color); */
    background-color: #f0f4ff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-info {
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.footer {
    /* background-color: var(--dark-color); */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-text {
    margin-bottom: 20px;
    color: #aaa;
}

.footer-social {
    margin-bottom: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.footer-links h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #aaa;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .about-img {
        margin-bottom: 30px;
    }

    .contact-info {
        margin-top: 40px;
    }
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}





/* .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 87, 133, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 41, 66, 0.2);
}

.navbar {
    background-color: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
} */

/* .hero-section {
    content: '';
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/design.gif') no-repeat center center;
    background-size: cover;
    z-index: 0;
} */

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}


.process-section {
    padding: 100px 0;
    /* background-color: var(--light-color); */
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    /* background-color: var(--light-color); */
    background-color: rgba(240, 224, 200, 0.85);
    margin: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 7px;
    left: 10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    /* color: var(--dark-color); */
    color: #222;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.contact-form {
    /* background-color: var(--light-color); */
    background-color: #f0f4ff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-info {
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.footer {
    /* background-color: var(--dark-color); */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-text {
    margin-bottom: 20px;
    color: #aaa;
}

.footer-social {
    margin-bottom: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.footer-links h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #aaa;
    margin-top: 30px;
}

@media (max-width: 991px) {

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

    .process-step:not(:last-child)::after {
        display: none;
    }
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 87, 133, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 41, 66, 0.2);
}

.navbar {
    background-color: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
} */

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-header {
    /* background: linear-gradient(135deg, var(--light-color) 0%, var(--primary-color) 100%); */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/blog-hero.webp') no-repeat center center;
    background-size: cover;
    /* opacity: 0.1; */
    z-index: 0;
}

.blog-header-content {
    position: relative;
    z-index: 1;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    max-width: 700px;
}

.blog-content {
    padding: 80px 0;
    margin-top: 30px;
}

.featured-post {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.featured-post-img {
    height: 400px;
    overflow: hidden;
}

.featured-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post:hover .featured-post-img img {
    transform: scale(1.05);
}

.featured-post-content {
    padding: 30px;
}

.post-category {
    display: inline-block;
    background-color: #b97d4c;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-category:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.post-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.post-author {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.post-date {
    font-size: 0.9rem;
    color: #777;
}

.post-excerpt {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-content {
    padding: 20px;
}

.blog-card .post-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-card .post-meta {
    margin-bottom: 10px;
}

.blog-card .post-excerpt {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 50px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 0.9rem;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(74, 159, 224, 0.1);
}

.search-form button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    color: var(--secondary-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.category-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.category-count {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.category-list a:hover .category-count {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.popular-post {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post-img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.popular-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-post:hover .popular-post-img img {
    transform: scale(1.05);
}

.popular-post-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.popular-post-content h5 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.popular-post-content h5 a:hover {
    color: var(--primary-color);
}

.popular-post-content span {
    font-size: 0.8rem;
    color: #777;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
}

.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-text {
    margin-bottom: 20px;
    color: #aaa;
}

.footer-social {
    margin-bottom: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.footer-links h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #aaa;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .blog-title {
        font-size: 2.5rem;
    }

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

    .featured-post-img {
        height: 300px;
    }

    .sidebar {
        margin-top: 50px;
        position: static;
    }
}

@media (max-width: 767px) {
    .blog-title {
        font-size: 2rem;
    }

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

    .featured-post-img {
        height: 250px;
    }

    .featured-post-content {
        padding: 20px;
    }

    .post-title {
        font-size: 1.5rem;
    }
}









.blog-single-header {
    background-color: var(--white-color);
    padding: 50px 0;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blog-featured-img {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.post-author {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.post-date,
.post-read-time {
    font-size: 0.9rem;
    color: #777;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.post-date i,
.post-read-time i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-content {
    padding: 0 0 80px;
}

.blog-post-content {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 40px 0 20px;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 30px 0 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-post-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.blog-post-content blockquote {
    background-color: var(--light-color);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--secondary-color);
}

.blog-post-content blockquote p {
    margin-bottom: 0;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-post-content .code-block {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 20px;
    margin: 30px 0;
    font-family: monospace;
    overflow-x: auto;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.post-tag {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.social-share {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-right: 15px;
}

.share-links {
    display: flex;
}

.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.share-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.author-bio {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.author-bio-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
    flex-shrink: 0;
}

.author-bio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-bio-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.author-bio-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.author-social {
    display: flex;
}

.author-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.author-social-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.related-posts {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.related-posts-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.related-posts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.related-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.related-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post-img {
    width: 100px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .related-post-img img {
    transform: scale(1.05);
}

.related-post-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.related-post-content h5 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-post-content h5 a:hover {
    color: var(--primary-color);
}

.related-post-content span {
    font-size: 0.8rem;
    color: #777;
}

.comments-section {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.comments-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.comment-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.comment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.comment-date {
    font-size: 0.9rem;
    color: #777;
}

.comment-text {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.comment-reply {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comment-reply i {
    margin-right: 5px;
}

.comment-reply:hover {
    color: var(--secondary-color);
}

.comment-form {
    margin-top: 40px;
}

.comment-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

textarea.form-control {
    height: 150px;
}


@media (max-width: 991px) {
    .post-title {
        font-size: 2rem;
    }

    .blog-featured-img {
        height: 400px;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio-img {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .author-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .post-title {
        font-size: 1.8rem;
    }

    .blog-featured-img {
        height: 300px;
    }

    .post-meta {
        flex-wrap: wrap;
    }

    .post-author {
        margin-bottom: 10px;
    }

    .blog-post-content {
        padding: 25px;
    }

    .comment {
        flex-direction: column;
    }

    .comment-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


.about-header {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--primary-color) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/blog-hero.webp') no-repeat center center;
    background-size: cover;
    /* opacity: 0.1; */
    z-index: 0;
}

.about-header-content {
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    max-width: 700px;
}

.about-content {
    padding: 80px 0;
}

.about-story {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.about-story-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-story-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-story-img:hover img {
    transform: scale(1.05);
}

.mission-vision {
    /* background-color: var(--light-color); */
    background-image: url("../images/wood.png");
    padding: 50px 0;
    margin-bottom: 80px;
    border-radius: 20px;
}

.mission-card,
.vision-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 2rem;
}

.mission-title,
.vision-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.values-section {
    margin-bottom: 80px;
}

.value-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 30px;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.team-section {
    margin-bottom: 80px;
}

.team-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-position {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-bio {
    margin-bottom: 20px;
    color: #555;
    font-size: 0.95rem;
}

.team-social {
    display: flex;
    justify-content: center;
}

.team-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.milestones-section {
    background-color: #f3d8ac;
    padding: 50px;
    margin-bottom: 80px;
    border-radius: 20px;
}

.milestone-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 30px;
}

.milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.milestone-year {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.milestone-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.clients-section {
    margin-bottom: 80px;
}

.client-logo {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 80%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    text-align: center;
    margin-bottom: 80px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .about-title {
        font-size: 2.5rem;
    }

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

    .about-story-img {
        margin-bottom: 30px;
    }

    .team-img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .about-title {
        font-size: 2rem;
    }

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

    .milestone-year {
        font-size: 2rem;
    }

    .milestone-title {
        font-size: 1.1rem;
    }
}