* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.py-60 {
    padding-block: 60px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.py-120 {
    padding-block: 120px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.my-60 {
    margin-block: 60px;
}

.mt-120 {
    margin-top: 120px;
}

.mb-120 {
    margin-bottom: 120px;
}

.my-120 {
    margin-block: 120px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.has-background {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.has-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35, 35, 35, 0.8); /* control darkness */
    z-index: 0;
}

.has-background > * {
    position: relative;
    z-index: 1;
}

.bg-primary-new {
    background: var(--primary);
}

.bg-secondary-new {
    background: var(--secondary);
}

.bg-white-forest-new {
    background: var(--white-forest);
}

a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:focus {
    outline: none;
}

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

::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    background: #fff0
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    -webkit-box-shadow: 0 0 0 rgb(0 0 0 / .75)
}

::-webkit-scrollbar-corner {
    background: #fff0
}

.common-btn {
    display: inline-block;
    padding: 18px 30px;
    border: none;
    outline: none;
    border-radius: 0 20px 0 20px;
    font-weight: 700;
    font-size: 22px;
    font-family: var(--font-primary), sans-serif;
    transition: all 0.3s ease;
    line-height: 16px;
}

.common-btn.square-btn {
    border-radius: 4px;
}

.common-btn.primary-btn {
    background-color: var(--primary);
    color: var(--white);
}

.common-btn.primary-btn:hover {
    background-color: var(--primary-700);
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.2);
}

.common-btn.secondary-btn {
    background-color: var(--secondary);
    color: var(--white);
}

.common-btn.secondary-btn:hover {
    background-color: var(--secondary-700);
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.2);
}

.common-btn.dark-btn {
    background-color: var(--black);
    color: var(--white);
}

.common-btn.dark-btn:hover {
    background-color: var(--white);
    color: var(--black);
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.2);
}

.common-btn.white-btn {
    background-color: var(--white);
    color: var(--black);
}

.common-btn.white-btn:hover {
    background-color: var(--black);
    color: var(--white);
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.2);
}

.common-btn.lg-btn {
    padding: 30px;
}

.info-action {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-action:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.2);
}

.heading-content {
    color: var(--white);
}

.heading-content.heading-dark {
    color: var(--black);
}

.heading-content .heading-title {
    font-family: var(--font-primary), sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 62px;
    letter-spacing: 0;
    text-align: center;
}

.heading-content .heading-description {
    font-family: var(--font-tertiary), sans-serif;
    margin-top: 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0;
    text-align: center;
}

.heading-content .heading-description.style-2 {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0;
    text-align: center;
}

.heading-content .heading-action {
    margin-top: 20px;
    color: var(--primary);
    font-family: var(--font-primary), sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.heading-content .heading-action:hover {
    color: var(--primary-700);
}

.space-shape:after {
    content: '';
    height: 22px;
    width: 100%;
    display: block;
    background: url('../images/space-shape.png') no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
}

.bg-heading-content {
    width: fit-content;
    min-width: 250px;
    max-width: 80%;
    margin: auto;
    padding: 20px;
    background: var(--secondary);
    position: relative;
    text-align: center;
}

.bg-heading-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100% - 1px);
    width: 40px;
    height: 100%;
    background: var(--secondary);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.bg-heading-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: calc(100% - 1px);
    width: 40px;
    height: 100%;
    background: var(--secondary);
    clip-path: polygon(100% 0, 0% 50%, 100% 100%);
}


.bg-heading-content .bg-heading-title {
    font-family: var(--font-primary), sans-serif;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 0;
    color: var(--black);
    margin-bottom: 0;
}

/* ================= Header ================= */

header {
    background-color: var(--white-forest);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}

.navbar-top {
    padding: 15px 60px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white-forest);
}

.navbar-top a {
    font-weight: 500;
    font-size: 16px;
    font-family: var(--font-secondary), sans-serif;
}

.logo-container {
    position: relative;
    height: 100px;
    width: 350px;
}

.logo-parent {
    padding-inline-start: 60px;
}

.left-navbar {
    padding-inline-end: 60px;
}

.logo-parent .logo {
    object-position: left;
    max-width: 100%;
    height: auto;
}

.navbar-nav-new {
    display: flex;
    align-items: center;
    gap: 55px;
    padding: 0;
}

.navbar-nav-new .nav-item {
    list-style: none;
}

.navbar-nav-new .nav-item .nav-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    transition: all 0.3s ease;
    font-family: var(--font-primary), sans-serif;
}

.navbar-nav-new .nav-item .nav-link:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width .3s;
}

.navbar-nav-new .nav-item:hover .nav-link:after,
.navbar-nav-new .nav-item .nav-link.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none !important;
}

/* ================= Mobile Sidebar Menu ================= */
.mobile-menu-btn {
    padding: 8px;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary-700);
}

.mobile-sidebar-header {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-sidebar-close {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar-close:hover {
    color: var(--primary-700);
    transform: rotate(-90deg);
}

.mobile-sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

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

.mobile-nav-list li {
    margin: 0;
}

.mobile-nav-list a {
    display: block;
    padding: 15px 25px;
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-primary), sans-serif;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background-color: var(--primary);
    color: var(--white);
    padding-left: 30px;
}

.mobile-sidebar-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

/* ================= Footer ================= */

.footer-section {
    background-color: var(--black);
    color: var(--white);
    padding-bottom: 20px;
    font-size: 15px;
}

.footer-heading {
    font-family: var(--font-primary), 'sans-serif';
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0;
}

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

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

.footer-links a {
    color: var(--white-forest);
}

.footer-links a:hover {
    color: var(--white);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    font-size: 14px;
}

.footer-logo p {
    color: var(--white-forest);
    font-size: 0.9rem;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid #3d3d3d;
    margin-top: 40px;
    padding-top: 20px;
}

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

.social-icon {
    background-color: var(--white);
    color: var(--black);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ================= Hero Slider ================= */

.hero-slider {
    position: relative;
}

.hero-slide {
    height: 100%;
    position: relative;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

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

.hero-slide .hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(89.61deg, rgba(185, 174, 155, 0.84) 39.96%, rgba(28, 36, 54, 0) 99.66%);
}

.hero-content {
    color: var(--white);
    padding-block: 8em;
}

.hero-content h1 {
    font-size: 88px;
    font-weight: 700;
    line-height: 128px;
    color: var(--primary);
    font-family: var(--font-primary), 'sans-serif';
}

.hero-content p {
    font-size: 31px;
    line-height: 48px;
    font-weight: 700;
    font-family: var(--font-primary), 'sans-serif';
}

/* Pagination container */
.hero-slider .swiper-pagination {
    position: absolute;
    left: auto;
    right: 12%;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: auto;
    height: min-content;
}

/* Bullet */
.hero-slider .swiper-pagination-bullet {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #fff;
    opacity: 1;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Number */
.hero-slider .bullet-number {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

/* Active bullet */
.hero-slider .swiper-pagination-bullet-active {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Vertical line */
.hero-slider .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.6);
    bottom: -20px;
    right: 50%;
    transform: translateX(50%);
}

/* Remove line after last bullet */
.hero-slider .swiper-pagination-bullet:last-child::after {
    display: none;
}

/* ================= Framework ================= */

#framework-section .framework-items .framework-item {
    padding: 30px;
    border-radius: 0 50px 0 50px;
    background-color: var(--white);
    height: 100%;
}

#framework-section .framework-items .framework-item .framework-icon {
    width: 60px;
    height: 60px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 8px 0 8px;
    margin-bottom: 30px;
    background: var(--white-forest);
}

#framework-section .framework-items .framework-item .framework-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#framework-section .framework-items .framework-item .framework-content .framework-title {
    font-family: var(--font-primary), sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--black);
}

#framework-section .framework-items .framework-item .framework-content .framework-description {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--light-800);
}

/* ================= Services ================= */

#services-section .service-items {
    position: relative;
}

#services-section .service-items::after {
    content: "";
    position: absolute;
    top: 258px;
    right: 10%;
    width: 80%;
    height: 1px;
    background: repeating-linear-gradient(
        to left,
        #585B6F66 0 8px,
        transparent 6px 13px
    );
    z-index: 0;
}

#services-section .service-items .service-item {
    padding: 30px;
    border-radius: 0 50px 0 50px;
    background-color: var(--white);
    height: 100%;
}

#services-section .service-items .service-item .service-icon {
    width: 80%;
    height: 160px;
    padding: 5px;
    margin: auto auto 30px auto;
}

#services-section .service-items .service-item .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

#services-section .service-items .service-item .service-count {
    position: relative;
    text-align: center;
    z-index: 2;
}

#services-section .service-items .service-item .service-count span {
    padding: 2px 10px;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    width: 40%;
    display: block;
    margin: auto auto 20px auto;
    border-radius: 100px;
}

#services-section .service-items .service-item .service-content {
    text-align: center;
    color: var(--black);
}

#services-section .service-items .service-item .service-content .service-title {
    font-family: var(--font-primary), sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 34px;
    letter-spacing: 0;
}

#services-section .service-items .service-item .service-content .service-subtitle {
    font-family: var(--font-primary), sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
}

#services-section .service-items .service-item .service-content .service-description {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
}

/* ================= Values ================= */

#value-section {
    position: relative;
}

#value-section:after,
#value-section:before {
    content: "";
    position: absolute;
    height: 43px;
    width: 100%;
    top: 10px;
    right: 0;
    background-image: url("../images/bg-shape.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#value-section:after {
    top: auto;
    bottom: 10px;
}

.value-items .value-item .value-content {
    text-align: center;
    padding-inline: 10px;
}

.value-items .value-item .value-content .value-title {
    font-family: var(--font-primary), sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 28px;
    letter-spacing: 0;
}

.value-items .value-item .value-content .value-description {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--white-forest);
}

.value-items .row .col {
    position: relative;
}

.value-items .row .col:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 90%;
    background-color: #383838;
}

.value-items .row .col:last-child:after {
    display: none;
}

/* ================= About Hero ================= */

#about-hero-section .hero-img img {
    border-radius: 0 50px 0 50px;
}

/* ================= About About ================= */

#about-page-section .about .about-content-title {
    font-family: var(--font-primary), sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 34px;
    letter-spacing: 0;
    margin-bottom: 20px;
    color: var(--black);
}

#about-page-section .about .about-content-description {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    color: var(--black);
}

/* ================= About Mission ================= */

#about-mission-section .mission-description {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 40px;
    letter-spacing: 0;
    color: var(--black);
}

/* ================= Framework main section ================= */

#framework-page-section .framework-items .framework-side {
    padding: 20px;
    border-radius: 0 50px 0 50px;
    background-color: var(--white-forest);
    height: 100%;
}

#framework-page-section .framework-items .framework-icon {
    width: 80px;
    height: 80px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto auto 20px auto;
    background: var(--primary);
}

#framework-page-section .framework-items .framework-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#framework-page-section .framework-items .framework-title {
    font-family: var(--font-primary), sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--black);
}

#framework-page-section .framework-items .framework-subtitle {
    font-family: var(--font-primary), sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--black);
}

#framework-page-section .framework-items .framework-description {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 39px;
    color: var(--black);
    padding: 30px 0 0 20px;
}

#framework-page-section .framework-items .framework-icon-2 {
    width: 100%;
    height: 140px;
    margin-bottom: 20px;
    border-radius: 0 50px 0 50px;
    overflow: hidden;
}

#framework-page-section .framework-items .framework-icon-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= Services main section ================= */

#service-page-section .service-items .service-icon-side {
    text-align: center;
    padding: 40px;
    border-radius: 0 50px 0 50px;
    background-color: var(--white-forest);
    height: 100%;
}

#service-page-section .service-items .service-icon {
    width: 100%;
    height: 160px;
    margin-bottom: 20px;
}

#service-page-section .service-items .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

#service-page-section .service-items .service-title {
    font-family: var(--font-primary), sans-serif;
    font-weight: 800;
    font-size: 45px;
    letter-spacing: 0;
    color: var(--black);
}

#service-page-section .service-items .service-subtitle {
    font-family: var(--font-primary), sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0;
    color: var(--black);
}

#service-page-section .service-items .service-description-side {
    padding: 40px;
    border-radius: 0 50px 0 50px;
    background-color: #FCF9F3;
    height: 100%;
}

#service-page-section .service-items .service-description {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 46px;
    letter-spacing: 0;
}

#service-page-section .service-items .service-count {
    font-family: var(--font-primary), sans-serif;
    font-weight: 900;
    font-size: 100px;
    line-height: 1;
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(-180deg, rgba(185, 174, 155), rgba(28, 36, 54, 0));
}

/* ================= Contact section ================= */

#contact-section .contact-info {
    padding: 20px;
    border-radius: 10px;
}

#contact-section .contact-info-title {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: 0;
    color: var(--black);
    margin-bottom: 30px;
}

#contact-section .contact-info-title.style-2 {
    font-family: var(--font-primary), sans-serif;
    font-weight: 700;
    font-size: 35px;
}

#contact-section .contact-info-description {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 0;
}


#contact-section .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    direction: ltr;
}

#contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

#contact-section .contact-text .label {
    font-family: var(--font-secondary), sans-serif;
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
}

#contact-section .contact-text a {
    font-family: var(--font-secondary), sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
}

#contact-section .icon {
    width: 70px;
    height: 70px;
    color: var(--secondary);
}

#contact-section .contact-info button {
    font-family: var(--font-secondary), sans-serif;
}

#contact-section .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

#contact-section .form-label span {
    color: var(--black);
}

#contact-section .form-control {
    border: 1px solid rgba(var(--secondary-rgb), 0.4);
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 14px;
    text-align: left;
}

#contact-section .form-control:focus {
    box-shadow: none;
    border-color: var(--secondary);
    background: #fff;
}


/* Blog Grid */
#blogs-section .blog-items {
    margin-top: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(81, 83, 73, 0.15);
}

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

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

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

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-secondary), sans-serif;
    font-size: 13px;
    font-weight: 500;
    z-index: 1;
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-secondary), sans-serif;
    font-size: 14px;
    color: var(--light);
}

.blog-title {
    font-family: var(--font-primary), sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 15px;
    color: var(--black);
}

.blog-title a {
    color: var(--black);
    transition: color 0.3s ease;
}

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

.blog-excerpt {
    font-family: var(--font-secondary), sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: var(--light);
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary), sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--secondary);
}

.blog-read-more i {
    font-size: 14px;
}

/* Pagination */
.blog-pagination .pagination {
    gap: 10px;
}

.blog-pagination .page-link {
    border: 2px solid var(--neutral-30);
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 10px !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination .page-link:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

.blog-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ================= Blog Detail Section ================= */

.blog-detail {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
}

.blog-detail-image {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--neutral-30);
}

.blog-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary), sans-serif;
    font-size: 15px;
    color: var(--light);
}

.blog-detail-meta-item i {
    color: var(--primary);
    font-size: 18px;
}

.blog-detail-title {
    font-family: var(--font-primary), sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 52px;
    color: var(--black);
    margin-bottom: 30px;
}

.blog-detail-content {
    font-family: var(--font-secondary), sans-serif;
    font-size: 17px;
    line-height: 32px;
    color: var(--black);
}

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

.blog-detail-content h2 {
    font-family: var(--font-primary), sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;
    color: var(--black);
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-detail-content h3 {
    font-family: var(--font-primary), sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--black);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.blog-detail-content strong {
    font-weight: 700;
    color: var(--black);
}

.blog-quote {
    background: var(--white-forest);
    border-left: 5px solid var(--primary);
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
    font-family: var(--font-primary), sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 36px;
    color: var(--black);
    font-style: italic;
}


/* ================= Sidebar ================= */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-family: var(--font-primary), sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-form .form-control {
    width: 100%;
    padding: 15px 50px 15px 15px;
    border: 2px solid var(--neutral-30);
    border-radius: 10px;
    font-family: var(--font-secondary), sans-serif;
    font-size: 15px;
}

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

.search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--secondary);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--white-forest);
    border-radius: 8px;
    font-family: var(--font-secondary), sans-serif;
    font-size: 15px;
    color: var(--black);
    transition: all 0.3s ease;
}

.categories-list a:hover,
.categories-list a.active {
    background: var(--primary);
    color: var(--white);
    padding-left: 20px;
}

.category-count {
    background: var(--white);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.categories-list a:hover .category-count,
.categories-list a.active .category-count {
    background: var(--secondary);
    color: var(--white);
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
}

.recent-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    font-family: var(--font-primary), sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 8px;
}

.recent-post-title a {
    color: var(--black);
    transition: color 0.3s ease;
}

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

.recent-post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-secondary), sans-serif;
    font-size: 13px;
    color: var(--light);
}

.recent-post-date i {
    color: var(--primary);
    font-size: 14px;
}

/* ================= Related Posts ================= */

.related-posts {
    padding-top: 60px;
    border-top: 2px solid var(--neutral-30);
}

/* ================= Large Screens ================= */
@media (max-width: 1350px) {
    .navbar-menu {
        display: none;
    }

    .left-navbar .common-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .hero-content h1 {
        font-size: 88px;
        line-height: 110px;
    }

    .hero-content p {
        font-size: 26px;
        line-height: 40px;
    }

    .hero-slider .swiper-pagination {
        right: 8%;
    }
}

/* ================= Large Tablets ================= */
@media (max-width: 1200px) {
    .navbar-top {
        padding: 16px 40px;
    }

    .logo-container {
        width: 300px;
    }

    .logo-parent {
        padding-inline-start: 40px;
    }

    .left-navbar {
        padding-inline-end: 40px;
    }

    .hero-content {
        padding-block: 6em;
    }

    .hero-content h1 {
        font-size: 72px;
        line-height: 90px;
    }

    .hero-content p {
        font-size: 22px;
        line-height: 34px;
    }

    .hero-slider .swiper-pagination {
        right: 5%;
    }
}

/* ================= Tablets ================= */
@media (max-width: 992px) {
    ::-webkit-scrollbar {
        width: 2px;
    }

    .navbar-top {
        padding: 14px 24px;
    }

    .navbar-top a {
        font-size: 15px;
    }

    .logo-parent {
        padding-inline-start: 24px;
    }

    .left-navbar {
        padding-inline-end: 24px;
    }

    .hero-content {
        padding-block: 5em;
    }

    .hero-content h1 {
        font-size: 60px;
        line-height: 76px;
    }

    .hero-content p {
        font-size: 20px;
        line-height: 32px;
    }

    .hero-slider .swiper-pagination {
        top: 50%;
        right: 3%;
    }

    .hero-slider .swiper-pagination-bullet {
        width: 34px;
        height: 34px;
    }

    .service-items::after {
        display: none;
    }

    .value-items .row .col:after {
        display: none;
    }

    .blog-detail {
        padding: 30px 20px;
    }

    .blog-detail-image {
        height: 350px;
    }

    .blog-detail-title {
        font-size: 30px;
        line-height: 42px;
    }

    .blog-detail-content {
        font-size: 16px;
        line-height: 28px;
    }

    .blog-detail-content h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .blog-detail-content h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .blog-sidebar {
        margin-top: 40px;
    }
}

/* ================= Mobile ================= */
@media (max-width: 768px) {

    .pt-60 {
        padding-top: 30px;
    }

    .pb-60 {
        padding-bottom: 30px;
    }

    .py-60 {
        padding-block: 30px;
    }

    .pt-120 {
        padding-top: 60px;
    }

    .pb-120 {
        padding-bottom: 60px;
    }

    .py-120 {
        padding-block: 60px;
    }

    .mt-60 {
        margin-top: 30px;
    }

    .mb-60 {
        margin-bottom: 30px;
    }

    .my-60 {
        margin-block: 30px;
    }

    .mt-120 {
        margin-top: 60px;
    }

    .mb-120 {
        margin-bottom: 60px;
    }

    .my-120 {
        margin-block: 60px;
    }

    .common-btn.lg-btn {
        padding: 20px;
    }

    .navbar-top {
        padding: 10px 16px;
    }

    .navbar-top a {
        font-size: 14px;
    }

    .logo-container {
        width: 250px;
    }

    .logo-parent {
        padding-inline-start: 16px;
    }

    .offcanvas.offcanvas-start {
        width: 300px;
    }

    .hero-slide .hero-background::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(185, 174, 155, 0.84);
    }

    .hero-content {
        padding-block: 4em;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 44px;
        line-height: 56px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 28px;
    }

    /* Pagination vertical + reposition */
    .hero-slider .swiper-pagination {
        flex-direction: column;
        top: auto;
        bottom: 30px;
        right: 20px;
        transform: none;
        gap: 16px;
    }

    .hero-slider .swiper-pagination-bullet {
        width: 30px;
        height: 30px;
    }

    .hero-slider .bullet-number {
        font-size: 14px;
    }

    .hero-slider .swiper-pagination-bullet::after {
        height: 12px;
        bottom: -14px;
    }

    #value-section:before {
        top: 0;
    }

    #value-section:after {
        bottom: 0;
    }

    #framework-page-section .framework-items .framework-description {
        padding: 0;
    }

    .blog-image {
        height: 220px;
    }

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

    .blog-title {
        font-size: 20px;
        line-height: 28px;
    }

    .blog-excerpt {
        font-size: 14px;
        line-height: 24px;
    }

    .blog-meta {
        gap: 10px;
    }

    .blog-detail-image {
        height: 280px;
    }

    .blog-detail-title {
        font-size: 26px;
        line-height: 36px;
    }

    .blog-detail-meta {
        gap: 15px;
    }

    .blog-detail-content {
        font-size: 15px;
        line-height: 26px;
    }

    .blog-quote {
        padding: 20px;
        font-size: 18px;
        line-height: 30px;
    }

    .sidebar-widget {
        padding: 25px 20px;
    }
}

/* ================= Small Mobile ================= */
@media (max-width: 480px) {
    .navbar-top {
        padding: 8px 12px;
    }

    .logo-parent {
        padding-inline-start: 12px;
    }

    .left-navbar {
        padding-inline-end: 12px;
    }

    .hero-content {
        padding-block: 3em;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 44px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-slider .swiper-pagination {
        right: 12px;
        bottom: 20px;
        gap: 12px;
    }

    .hero-slider .swiper-pagination-bullet {
        width: 26px;
        height: 26px;
    }

    .hero-slider .bullet-number {
        font-size: 12px;
    }

    .blog-detail {
        padding: 20px 15px;
    }

    .blog-detail-image {
        height: 240px;
        border-radius: 10px;
    }

    .blog-detail-title {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blog-detail-content h2 {
        font-size: 22px;
        line-height: 32px;
        margin-top: 30px;
    }

    .blog-detail-content h3 {
        font-size: 19px;
        line-height: 28px;
    }

    .sidebar-widget {
        padding: 20px 15px;
    }

    .widget-title {
        font-size: 20px;
    }
}
