@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
/**
*
* Testing
*
**/
body {
    margin: 0;
    padding: 0;
}
body * {
    font-family: "Poppins", sans-serif;
}

.container {
    max-width: 1400px;
    margin: auto;
    height: 100%;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    color: #048861;
}

.btn {
    outline: 0 !important;
    border-color: transparent;
    background-color: transparent;
    color: white;
    padding: 5px 30px;
    border-radius: 50px;
}
.btn.btn-primary {
    background-color: #00bf62;
}
.btn.btn-primary:hover {
    color: white;
    background-color: #047a55;
}

.link::after {
    content: ">";
    padding-left: 5px;
}

.svg-icon {
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    object-fit: contain;
}

section .section-title {
    font-size: 70px;
    font-weight: 500;
    margin: 0;
}
@media (max-width: 1024px) {
    section .section-title {
        font-size: 50px;
    }
}
@media (max-width: 576px) {
    section .section-title {
        font-size: 35px;
    }
}
section .section-subtitle {
    text-transform: uppercase;
    color: #a7a7a7;
    font-weight: 600;
    margin: 0;
}

.text-special {
    background: linear-gradient(96.78deg, #00bf62 34.76%, #7ed955 88.88%);
    -webkit-background-clip: text;
    /* Clip the gradient to the text */
    -webkit-text-fill-color: transparent;
    /* Make the text transparent to reveal the gradient */
}

.owl-dots {
    margin-top: 15px;
    text-align: end;
}

.owl-dot {
    display: inline-block;
}

.owl-dot span {
    background-color: rgba(0, 17, 2, 0.5);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    display: block;
    height: 20px;
    width: 20px;
    margin: 5px 7px;
    filter: Alpha(Opacity=500);
    /*IE7 fix*/
}

.owl-dot.active span,
.owl-dot:hover span {
    background: linear-gradient(45deg, #00bf62 34.76%, #7ed955 88.88%);
}

.flex {
    display: flex;
    gap: 15px;
    align-items: center;
}
@media (max-width: 576px) {
    .flex {
        flex-wrap: wrap;
    }
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #00bf62;
}

::-webkit-scrollbar-track {
    background: #fff;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: transparent;
    margin-bottom: 0;
}
.navbar * {
    transition: all 0.5s;
}
.navbar.scrolled {
    background: linear-gradient(127.29deg, #00bf62 -4.12%, #7ed955 106.67%);
    box-shadow: 0 0 11px rgba(0, 17, 2, 0.5);
}
.navbar.scrolled .navbar-content .logo-container {
    width: 130px;
}
.navbar.scrolled .navbar-content .sidebar-menu .menu-toggle .menu-toggle-icon {
    width: 30px !important;
    object-fit: contain;
}
.navbar .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.navbar .navbar-content .logo-container {
    width: 181px;
}
.navbar .navbar-content .logo-container .logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.navbar .navbar-content .sidebar-menu .menu-toggle {
    cursor: pointer;
}
.navbar .navbar-content .sidebar-menu .menu-toggle .menu-toggle-icon {
    width: 45px;
    object-fit: contain;
}
.navbar .nav-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    height: 100%;
    background-color: white;
    z-index: 9999;
    width: 350px;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 0 22px 0 rgba(10, 10, 10, 0.308);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: right;
}
.navbar .nav-sidebar.show {
    right: 0;
}
.navbar .nav-sidebar .btn-close {
    position: absolute;
    left: 5px;
    top: 5px;
    font-size: 2rem;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    z-index: 5;
    background: rgba(4, 151, 109, 0.2);
    color: #00bf62;
}
.navbar .nav-sidebar .nav-sidebar-content {
    position: relative;
    height: 100%;
}
.navbar .nav-sidebar .nav-sidebar-content .logo {
    text-align: right;
    padding: 15px;
}
.navbar .nav-sidebar .nav-sidebar-content .logo img {
    width: 200px;
    object-fit: contain;
}
.navbar .nav-sidebar .nav-sidebar-content .sidebar-list {
    list-style: none;
    padding: 0;
    text-transform: uppercase;
    line-height: 2.2rem;
    padding: 15px;
    margin-top: 50px;
}
.navbar
    .nav-sidebar
    .nav-sidebar-content
    .sidebar-list
    .sidebar-item
    .sidebar-link {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    transition: all 0.3s;
    text-align: right;
}
.navbar
    .nav-sidebar
    .nav-sidebar-content
    .sidebar-list
    .sidebar-item
    .sidebar-link.active {
    font-size: 2rem;
    transition: 0.3s all;
    font-weight: 800;
    color: #00bf62;
    position: relative;
    margin-bottom: 15px;
}
.navbar
    .nav-sidebar
    .nav-sidebar-content
    .sidebar-list
    .sidebar-item
    .sidebar-link.active:after {
    content: "";
    border-bottom: 3px solid #7ed955;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10%;
}
.navbar
    .nav-sidebar
    .nav-sidebar-content
    .sidebar-list
    .sidebar-item
    .sidebar-link:hover {
    font-size: 1.8rem;
}

.card {
    padding: 15px;
    background: #ffffff;
    /* card-shadow */
    box-shadow: 0px 0px 33px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    width: -moz-fit-content;
    width: fit-content;
}
.card.active {
    background: linear-gradient(127.29deg, #00bf62 -4.12%, #7ed955 106.67%);
    color: white;
}
.card.active .svg-icon path {
    fill: white;
    stroke: white;
}
.card.active .link:hover {
    color: white;
    text-decoration: underline;
}

.form-component {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.form-component .input-label {
    font-size: 16px;
}
@media (max-width: 576px) {
    .form-component .input-label {
        font-size: 20px;
    }
}
.form-component .form-input {
    outline: none;
    border: none;
    box-shadow: 0 0 7px 7px rgba(167, 167, 167, 0.1);
    height: 66px;
    font-size: 22px;
    padding-left: 15px;
    margin-top: 15px;
    border-radius: 11px;
}
@media (max-width: 576px) {
    .form-component .form-input {
        height: 50px;
        font-size: 18px;
    }
    .form-component textarea {
        min-height: 150px;
    }
}
.form-component select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}
.form-component input:focus,
.form-component textarea:focus,
.form-component select:focus {
    box-shadow: 0 0 7px 7px rgba(0, 191, 98, 0.2);
    border: 2px solid #00bf62;
}
.form-component input.error,
.form-component textarea.error,
.form-component select.error {
    border: 2px solid #ff4444;
    box-shadow: 0 0 7px 7px rgba(255, 68, 68, 0.2);
}

.contact {
    margin-top: 150px;
    padding: 50px 0;
    background-color: rgba(180, 253, 232, 0.1);
}
.contact .contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1024px) {
    .contact .contact-content {
        flex-wrap: wrap;
    }
}
.contact .contact-content .quote {
    width: 50%;
}
@media (max-width: 1024px) {
    .contact .contact-content .quote {
        width: unset;
    }
}
.contact .contact-content .quote h2 {
    font-size: 70px;
    font-weight: 600;
}
@media (max-width: 1024px) {
    .contact .contact-content .quote h2 {
        font-size: 50px;
    }
}
@media (max-width: 576px) {
    .contact .contact-content .quote h2 {
        font-size: 30px;
    }
}
.contact .contact-content .form-component {
    margin-top: 15px;
}
.contact .contact-content .flex {
    gap: 30px;
}
@media (max-width: 576px) {
    .contact .contact-content .flex {
        gap: 15px;
    }
}
.contact .contact-content .submit-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}
.contact .contact-content .submit-form .btn-submit {
    width: 300px;
    height: 84px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 40px;
    font-weight: 600;
    background: linear-gradient(180deg, #00bf62 0%, #7ed955 100%);
    /* card-shadow */
    box-shadow: 0px 0px 33px rgba(0, 0, 0, 0.15);
    border-radius: 11px;
    /* Main/Primary Gradient */
}
.contact .contact-content .submit-form .btn-submit:hover {
    box-shadow: 0px 0px 33px rgba(0, 0, 0, 0.3);
}
@media (max-width: 576px) {
    .contact .contact-content .submit-form .btn-submit {
        width: 100%;
        font-size: 24px;
        height: 60px;
    }
}
.contact .contact-content .submit-form .consent {
    color: #034d31;
}
.contact .contact-content .submit-form .consent a {
    text-decoration: underline;
}
@media (max-width: 576px) {
    .contact .contact-content .submit-form .consent {
        text-align: center;
        width: 100%;
    }
}

.footer {
    margin-top: 150px;
    margin-bottom: 150px;
}
.footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    align-items: center;
}
@media (max-width: 1024px) {
    .footer .footer-content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1024px) {
    .footer .footer-content .logo-section {
        text-align: center;
    }
}
.footer .footer-content .logo-section .logo-container {
    height: 150px;
}
.footer .footer-content .logo-section .logo-container .logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer .footer-content .logo-section .footer-text {
    margin-top: 50px;
    color: #a7a7a7;
}
.footer .footer-content .links-section {
    padding-left: 50px;
}
@media (max-width: 1024px) {
    .footer .footer-content .links-section {
        padding: unset;
    }
}
.footer .footer-content .links-section .link-list {
    list-style: none;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 50px;
}
@media (max-width: 576px) {
    .footer .footer-content .links-section .link-list {
        font-size: 18px;
        line-height: 40px;
    }
}
@media (max-width: 1024px) {
    .footer .footer-content .links-section .link-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0;
        margin: 0;
    }
}

/**
*
* Testing
*
**/
.hero {
    position: relative;
}
.hero .hero-cover-container {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50vw;
    height: 100vh;
    z-index: 0;
}
@media (max-width: 576px) {
    .hero .hero-cover-container {
        width: 100vw;
        opacity: 0.6;
    }
}
.hero .hero-cover-container .hero-cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero .hero-content {
    position: relative;
    z-index: 1;
    padding-top: 25vh;
}
.hero .hero-content .hero-message {
    max-width: 40vw;
    z-index: 1;
}
.hero .hero-content .hero-message .title {
    font-size: 70px;
    margin: 0;
    font-weight: 600;
    line-height: 80px;
}
.hero .hero-content .hero-message .subtitle {
    font-weight: 500;
    max-width: 80%;
    margin: 0;
    margin-top: 30px;
}

/* Responsive for HD display */
@media (max-width: 1920px) {
    .hero .hero-content .hero-message .title {
        font-size: 60px;
        line-height: 72px;
    }
    .hero .hero-content .hero-message .subtitle {
        font-size: 22px;
    }
}

@media (max-width: 1366px) {
    .hero .hero-content {
        padding-top: 20vh;
    }
    .hero .hero-content .hero-message .title {
        font-size: 50px;
        line-height: 60px;
    }
    .hero .hero-content .hero-message .subtitle {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero .hero-content .hero-message {
        max-width: 100vw;
    }
    .hero .hero-content .hero-message .title {
        font-size: 40px;
        line-height: unset;
        text-shadow: 2px 2px white;
    }
    .hero .hero-content .hero-message .subtitle {
        text-shadow: 2px 2px 6px white;
    }
}
.hero .hero-content .hero-cards {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.hero .hero-content .hero-cards .card {
    width: 450px;
    min-height: 350px;
    z-index: 1;
    padding: 40px;
}
@media (max-width: 576px) {
    .hero .hero-content .hero-cards .card {
        width: 100%;
        padding: 20px;
    }
}
.hero .hero-content .hero-cards .card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.hero .hero-content .hero-cards .card .card-body .icon {
    height: 80px;
}
.hero .hero-content .hero-cards .card .title {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}
.hero .hero-content .hero-cards .card .subtitle {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.offer {
    margin-top: 150px;
}
.offer .offer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}
@media (max-width: 1024px) {
    .offer .offer-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}
.offer .offer-content .offer-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}
@media (max-width: 576px) {
    .offer .offer-content .offer-icons {
        grid-template-columns: repeat(1, 1fr);
    }
}
.offer .offer-content .offer-icons .offer-icons-single {
    display: flex;
    gap: 15px;
    align-items: center;
}
.offer .offer-content .offer-icons .offer-icons-single .offer-icon-holder {
    background-color: #00bf6211;
    padding: 15px;
    border-radius: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.offer
    .offer-content
    .offer-icons
    .offer-icons-single
    .offer-icon-holder
    .svg-icon {
    height: 55px;
    width: 55px;
}
.offer .offer-content .offer-icons .offer-icons-single .offer-icon-description {
    font-size: 22px;
}
@media (max-width: 576px) {
    .offer
        .offer-content
        .offer-icons
        .offer-icons-single
        .offer-icon-description {
        font-size: 16px;
    }
}

.work {
    margin-top: 150px;
}
.work .work-content .work-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
@media (max-width: 1024px) {
    .work .work-content .work-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .work .work-content .work-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}
.work .work-content .work-cards .work-card-single {
    padding: 30px;
    position: relative;
}
@media (max-width: 1024px) {
    .work .work-content .work-cards .work-card-single {
        aspect-ratio: unset;
    }
}
.work .work-content .work-cards .work-card-single .card-count {
    font-size: 250px;
    font-weight: 800;
    position: absolute;
    left: -20px;
    bottom: -70px;
    width: 100%;
    text-align: end;
    margin: 0;
    z-index: 0;
    color: rgba(0, 0, 0, 0.04);
}
@media (max-width: 576px) {
    .work .work-content .work-cards .work-card-single .card-count {
        font-size: 100px;
        left: -10px;
        bottom: -30px;
    }
}
.work .work-content .work-cards .work-card-single.active .card-count {
    color: rgba(255, 255, 255, 0.2);
}
.work .work-content .work-cards .work-card-single .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 1;
}
.work .work-content .work-cards .work-card-single .card-body .svg-icon {
    height: 80px;
    width: 80px;
}
.work .work-content .work-cards .work-card-single .card-body .title {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 20px;
}
@media (max-width: 576px) {
    .work .work-content .work-cards .work-card-single .card-body .title {
        font-size: 24px;
    }
}
.work .work-content .work-cards .work-card-single .card-body .subtitle {
    font-weight: 300;
    margin: 0;
    font-size: 16px;
}

.services {
    margin-top: 150px;
}
.services .services-content .section-paragraph {
    max-width: 50vw;
}
@media (max-width: 1024px) {
    .services .services-content .section-paragraph {
        max-width: unset;
    }
}
.services .services-content .service-carousel-container {
    margin-top: 100px;
}
.services
    .services-content
    .service-carousel-container
    .service-carousel
    .service-carousel-item
    .service-carousel-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.services
    .services-content
    .service-carousel-container
    .service-carousel
    .service-carousel-item
    .service-carousel-item-content
    .service-info {
    max-width: 50%;
}
@media (max-width: 1024px) {
    .services
        .services-content
        .service-carousel-container
        .service-carousel
        .service-carousel-item
        .service-carousel-item-content
        .service-info {
        max-width: unset;
        margin-bottom: 30px;
        text-align: center;
    }
}
.services
    .services-content
    .service-carousel-container
    .service-carousel
    .service-carousel-item
    .service-carousel-item-content
    .service-info
    .service-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .services
        .services-content
        .service-carousel-container
        .service-carousel
        .service-carousel-item
        .service-carousel-item-content
        .service-info
        .service-title {
        font-size: 30px;
    }
}
@media (max-width: 576px) {
    .services
        .services-content
        .service-carousel-container
        .service-carousel
        .service-carousel-item
        .service-carousel-item-content
        .service-info
        .service-title {
        font-size: 20px;
    }
}
.services
    .services-content
    .service-carousel-container
    .service-carousel
    .service-carousel-item
    .service-carousel-item-content
    .service-info
    .service-subtitle {
    font-size: 22px;
}
@media (max-width: 576px) {
    .services
        .services-content
        .service-carousel-container
        .service-carousel
        .service-carousel-item
        .service-carousel-item-content
        .service-info
        .service-subtitle {
        font-size: 16px;
    }
}
.services
    .services-content
    .service-carousel-container
    .service-carousel
    .service-carousel-item
    .service-carousel-item-content
    .service-image-holder {
    width: 630px;
    height: 350px;
}
@media (max-width: 1024px) {
    .services
        .services-content
        .service-carousel-container
        .service-carousel
        .service-carousel-item
        .service-carousel-item-content
        .service-image-holder {
        width: 100%;
    }
}
.services
    .services-content
    .service-carousel-container
    .service-carousel
    .service-carousel-item
    .service-carousel-item-content
    .service-image-holder
    .service-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.insider {
    margin-top: 150px;
}
.insider .insider-carousel {
    margin-top: 50px;
}
.insider .insider-carousel .insider-carousel-item {
    transition: all 0.5s;
}
.insider .insider-carousel .insider-carousel-item:hover {
    transform: scale(1.1);
    transition: all 0.5s;
}
.insider
    .insider-carousel
    .insider-carousel-item
    .insider-carousel-item-content {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
}
.insider
    .insider-carousel
    .insider-carousel-item
    .insider-carousel-item-content::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.insider
    .insider-carousel
    .insider-carousel-item
    .insider-carousel-item-content
    .insider-info {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 1.5rem;
    color: #fff;
    z-index: 24;
    font-weight: 600;
    padding: 30px;
}
.insider
    .insider-carousel
    .insider-carousel-item
    .insider-carousel-item-content
    .insider-image-holder {
    width: 100%;
    height: 100%;
}
.insider
    .insider-carousel
    .insider-carousel-item
    .insider-carousel-item-content
    .insider-image-holder
    .insider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/**
*
* Testing
*
**/
.page-header {
    height: 400px;
    min-height: 400px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    box-shadow: 0px 0px 15px 11px #00000012;
}
.page-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        #ffffff 22.04%,
        rgba(240, 240, 240, 0.853658) 56.54%,
        rgba(153, 153, 153, 0) 104.04%
    );
}
.page-header .page-header-content {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}
.page-header .page-header-content .header-title {
    font-size: 4rem;
    color: #7ed955;
    margin: 0;
}
@media (max-width: 576px) {
    .page-header .page-header-content .header-title {
        font-size: 3rem;
    }
}
.page-header .page-header-content .header-text {
    margin: 0;
    max-width: 40vw;
}
@media (max-width: 576px) {
    .page-header .page-header-content .header-text {
        max-width: unset;
    }
}

.services-page {
    margin-top: 50px;
}
.services-page .owl-nav {
    font-size: 3rem;
    display: flex;
    gap: 15px;
    color: #00bf62;
    justify-content: end;
}
.services-page .services-page-content .service-by-category .category-title {
    font-weight: 600;
    color: #00bf62;
}
.services-page
    .services-page-content
    .service-by-category
    .service-carousel
    .service-item {
    height: 100%;
    padding: 15px;
    border: 1px solid #e5e5e5;
    background-color: rgba(180, 253, 232, 0.1);
}
.services-page
    .services-page-content
    .service-by-category
    .service-carousel
    .service-item
    a {
    color: inherit;
}
.services-page
    .services-page-content
    .service-by-category
    .service-carousel
    .service-item:hover {
    box-shadow: 0px 0px 15px 11px #00000012;
}
.services-page
    .services-page-content
    .service-by-category
    .service-carousel
    .service-item
    .service-item-content
    .service-item-title {
    font-size: 1rem;
    margin: 0;
    margin-bottom: 10px;
}
.services-page
    .services-page-content
    .service-by-category
    .service-carousel
    .service-item
    .service-item-content
    .service-item-description {
    margin: 0;
    font-weight: 300;
}

.details-page {
    margin: 100px 0;
}
.details-page .details-page-content {
    width: 80%;
    margin: auto;
}

/* Blog-specific styles */
.blog-grid .blog-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.blog-content {
    font-family: "Noto Sans", sans-serif;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #00bf62;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-content blockquote {
    border-left: 4px solid #00bf62;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
    background: rgba(180, 253, 232, 0.1);
    padding: 20px;
    border-radius: 8px;
}

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

.blog-content li {
    margin-bottom: 8px;
}

.blog-content code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #e83e8c;
}

.blog-content pre {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

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

.pagination .page-link {
    color: #00bf62;
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination .page-link:hover {
    background-color: #00bf62;
    color: white;
    border-color: #00bf62;
}

.pagination .page-item.active .page-link {
    background-color: #00bf62;
    border-color: #00bf62;
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #999;
    background-color: #f8f9fa;
    border-color: #ddd;
    cursor: not-allowed;
}

/* Reading progress bar */
#reading-progress {
    transition: width 0.3s ease;
}

/* Social share buttons */
.share-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Newsletter form responsive */
@media (max-width: 768px) {
    .flex {
        flex-direction: column;
        align-items: stretch;
    }

    .flex .btn {
        margin-top: 15px;
        height: auto;
        padding: 15px 30px;
    }
}
