/* Section Service Build */
.section-service-build {
    padding-top: 80px;
    overflow: hidden;
}

.section-service-build .section-header {
    margin-bottom: 60px;
}

.section-service-build .section-category {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: var(--secondary-color-main);
}

.section-service-build .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.section-service-build .section-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
}

.section-service-build .service-item {
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.section-service-build .service-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.section-service-build .service-item:last-child {
    margin-bottom: 0;
}

.section-service-build .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-service-build .service-image-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.section-service-build .service-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            transparent 60%,
            rgba(0, 0, 0, 0.1));
}

.section-service-build .service-content {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.section-service-build .service-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 18px;
    line-height: 1.4;
}

.section-service-build .service-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.section-service-build .btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color-main);
    color: #fff;
    padding: 11px 24px;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    width: fit-content;
}

.section-service-build .btn-detail:hover {
    background-color: var(--primary-color-main);
    color: #fff;
    transform: translateX(3px);
}

.section-service-build .btn-detail svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.section-service-build .btn-detail:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 991px) {
    .section-service-build {
        padding: 60px 0;
    }

    .section-service-build .section-header {
        margin-bottom: 50px;
    }

    .section-service-build .section-title {
        font-size: 28px;
    }

    .section-service-build .service-item {
        margin-bottom: 40px;
    }

    .section-service-build .service-image-wrapper {
        height: 240px;
    }

    .section-service-build .service-content {
        padding: 30px 25px;
    }

    .section-service-build .service-name {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .section-service-build {
        padding: 50px 0;
    }

    .section-service-build .section-header {
        margin-bottom: 40px;
    }

    .section-service-build .section-title {
        font-size: 24px;
    }

    .section-service-build .section-description {
        font-size: 14px;
    }

    .section-service-build .service-item {
        margin-bottom: 30px;
    }

    .section-service-build .service-image-wrapper {
        height: 200px;
    }

    .section-service-build .service-content {
        padding: 25px 20px;
    }

    .section-service-build .service-name {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .section-service-build .service-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .section-service-build .btn-detail {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* End section Service Build */
/* Section Service Me */
.section-service-me {
    padding-top: 80px;
    overflow: hidden;

}

.section-service-me .section-header {
    margin-bottom: 60px;
}

.section-service-me .section-category {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: var(--secondary-color-main);
}

.section-service-me .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.section-service-me .section-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

.section-service-me .service-item {
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.section-service-me .service-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.section-service-me .service-item:last-child {
    margin-bottom: 0;
}

.section-service-me .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-service-me .service-image-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.section-service-me .service-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
}

.section-service-me .service-content {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.section-service-me .service-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 18px;
    line-height: 1.4;
}

.section-service-me .service-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.section-service-me .btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color-main);
    color: #fff;
    padding: 11px 24px;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    width: fit-content;
}

.section-service-me .btn-detail:hover {
    background-color: #c49563;
    color: #fff;
    transform: translateX(3px);
}

.section-service-me .btn-detail svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.section-service-me .btn-detail:hover svg {
    transform: translateX(3px);
}

/* Responsive ME */
@media (max-width: 991px) {
    .section-service-me {
        padding: 60px 0;
    }

    .section-service-me .section-header {
        margin-bottom: 50px;
    }

    .section-service-me .section-header .row {
        flex-direction: column;
    }

    .section-service-me .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-service-me .section-description {
        margin-top: 15px;
    }

    .section-service-me .service-item {
        margin-bottom: 40px;
    }

    .section-service-me .service-image-wrapper {
        height: 240px;
    }

    .section-service-me .service-content {
        padding: 30px 25px;
    }

    .section-service-me .service-name {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .section-service-me {
        padding: 50px 0;
    }

    .section-service-me .section-header {
        margin-bottom: 40px;
    }

    .section-service-me .section-title {
        font-size: 24px;
    }

    .section-service-me .section-description {
        font-size: 14px;
    }

    .section-service-me .service-item {
        margin-bottom: 30px;
    }

    .section-service-me .service-image-wrapper {
        height: 200px;
    }

    .section-service-me .service-content {
        padding: 25px 20px;
    }

    .section-service-me .service-name {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .section-service-me .service-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .section-service-me .btn-detail {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* End Section Service Me */

/* Section Server Facility */
.section-service-facility {
    padding-top: 80px;;
    overflow: hidden;

}

.section-service-facility .section-header {
    margin-bottom: 60px;
}

.section-service-facility .section-category {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: var(--secondary-color-main);
}

.section-service-facility .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.section-service-facility .section-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

.section-service-facility .service-item {
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.section-service-facility .service-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.section-service-facility .service-item:last-child {
    margin-bottom: 0;
}

.section-service-facility .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-service-facility .service-image-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.section-service-facility .service-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
}

.section-service-facility .service-content {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.section-service-facility .service-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 18px;
    line-height: 1.4;
}

.section-service-facility .service-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.section-service-facility .btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color-main);
    color: #fff;
    padding: 11px 24px;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    width: fit-content;
}

.section-service-facility .btn-detail:hover {
    background-color: #c49563;
    color: #fff;
    transform: translateX(3px);
}

.section-service-facility .btn-detail svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.section-service-facility .btn-detail:hover svg {
    transform: translateX(3px);
}

/* Responsive FACILITY */
@media (max-width: 991px) {
    .section-service-facility {
        padding: 60px 0;
    }

    .section-service-facility .section-header {
        margin-bottom: 50px;
    }

    .section-service-facility .section-header .row {
        flex-direction: column;
    }

    .section-service-facility .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-service-facility .section-description {
        margin-top: 15px;
    }

    .section-service-facility .service-item {
        margin-bottom: 40px;
    }

    .section-service-facility .service-image-wrapper {
        height: 240px;
    }

    .section-service-facility .service-content {
        padding: 30px 25px;
    }

    .section-service-facility .service-name {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .section-service-facility {
        padding: 50px 0;
    }

    .section-service-facility .section-header {
        margin-bottom: 40px;
    }

    .section-service-facility .section-title {
        font-size: 24px;
    }

    .section-service-facility .section-description {
        font-size: 14px;
    }

    .section-service-facility .service-item {
        margin-bottom: 30px;
    }

    .section-service-facility .service-image-wrapper {
        height: 200px;
    }

    .section-service-facility .service-content {
        padding: 25px 20px;
    }

    .section-service-facility .service-name {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .section-service-facility .service-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .section-service-facility .btn-detail {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* End Section Server Facility */


/* Section Category Header */
.section-category-header {
    margin-top: 40px;
    background-color: #fff;
}

.section-category-header .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-category-header .image-wrapper {
    flex: 0 0 45%;
    position: relative;
}

.section-category-header .image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;    
    border: 10px solid #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-category-header .text-content {
    flex: 1;
}

.section-category-header .badge-classic {
    display: inline-block;
    background-color: #fde4e4;
    color: #d63031;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-category-header .main-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-category-header .description {
    font-size: 15px;
    line-height: 1.8;
    color: #636e72;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .section-category-header {
        padding: 40px 0;
    }

    .section-category-header .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .section-category-header .image-wrapper {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-category-header .main-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .section-category-header {
        padding: 30px 0;
    }

    .section-category-header .content-wrapper {
        gap: 25px;
    }

    .section-category-header .main-title {
        font-size: 24px;
    }

    .section-category-header .description {
        font-size: 14px;
    }

    .section-category-header .badge-classic {
        font-size: 12px;
        padding: 5px 14px;
    }
}

@media (max-width: 575px) {
    .section-category-header {
        padding: 25px 0;
    }

    .section-category-header .main-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
}
/*End Section Category Header */

/* Section category content */
.section-category-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-category-content .content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Headings */
.section-category-content h1,
.section-category-content h2,
.section-category-content h3,
.section-category-content h4,
.section-category-content h5,
.section-category-content h6 {
    color: #2d3436;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-category-content h1 {
    font-size: 32px;
    margin-top: 0;
}

.section-category-content h2 {
    font-size: 28px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 12px;
}

.section-category-content h3 {
    font-size: 24px;
}

.section-category-content h4 {
    font-size: 20px;
}

/* Paragraphs */
.section-category-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 16px;
}

/* Images */
.section-category-content .image-wrapper {
    margin: 32px 0;
    text-align: center;
}

.section-category-content .image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.section-category-content .image-caption {
    font-size: 13px;
    color: #95a5a6;
    font-style: italic;
    margin-top: 12px;
    display: block;
}

/* Lists */
.section-category-content ul,
.section-category-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.section-category-content ul li,
.section-category-content ol li {
    font-size: 15px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 8px;
}

.section-category-content ul {
    list-style-type: disc;
}

.section-category-content ul li::marker {
    color: #3498db;
}

.section-category-content ol {
    list-style-type: decimal;
}

/* Links */
.section-category-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.section-category-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Blockquotes */
.section-category-content blockquote {
    border-left: 4px solid #3498db;
    padding-left: 20px;
    margin: 24px 0;
    color: #636e72;
    font-style: italic;
}

/* Code */
.section-category-content code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    color: #e74c3c;
    font-family: 'Courier New', monospace;
}

.section-category-content pre {
    background-color: #2d3436;
    color: #ecf0f1;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.section-category-content pre code {
    background-color: transparent;
    color: #ecf0f1;
    padding: 0;
}

/* Horizontal Rule */
.section-category-content hr {
    border: 0;
    height: 2px;
    background-color: #e9ecef;
    margin: 32px 0;
}

/* Strong & Em */
.section-category-content strong {
    font-weight: 700;
    color: #2d3436;
}

.section-category-content em {
    font-style: italic;
}

/* Table */
.section-category-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.section-category-content table th,
.section-category-content table td {
    padding: 12px;
    border: 1px solid #e9ecef;
    text-align: left;
}

.section-category-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2d3436;
}

/* Responsive */
@media (max-width: 991px) {
    .section-category-content {
        padding: 40px 0;
    }

    .section-category-content h1 {
        font-size: 28px;
    }

    .section-category-content h2 {
        font-size: 24px;
    }

    .section-category-content h3 {
        font-size: 20px;
    }

    .section-category-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .section-category-content {
        padding: 30px 0;
    }

    .section-category-content h1 {
        font-size: 24px;
        margin-top: 0;
    }

    .section-category-content h2 {
        font-size: 22px;
        margin-top: 32px;
    }

    .section-category-content h3 {
        font-size: 18px;
        margin-top: 28px;
    }

    .section-category-content p,
    .section-category-content ul li,
    .section-category-content ol li {
        font-size: 14px;
    }

    .section-category-content .image-wrapper {
        margin: 24px 0;
    }

    .section-category-content ul,
    .section-category-content ol {
        padding-left: 20px;
    }
}

@media (max-width: 575px) {
    .section-category-content {
        padding: 25px 0;
    }

    .section-category-content h1 {
        font-size: 22px;
    }

    .section-category-content h2 {
        font-size: 20px;
        margin-top: 28px;
    }

    .section-category-content h3 {
        font-size: 18px;
        margin-top: 24px;
    }

    .section-category-content .image-wrapper {
        margin: 20px 0;
    }

    .section-category-content table {
        font-size: 13px;
    }

    .section-category-content table th,
    .section-category-content table td {
        padding: 8px;
    }
}
/* End section category content */

/* Section category more */
    .section-category-more {
    padding-bottom: 60px;
    background-color: #ffffff;
}

.section-category-more .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-category-more .section-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-category-more .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
}

.section-category-more .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.section-category-more .service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.section-category-more .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.section-category-more .service-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.section-category-more .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-category-more .service-card:hover .service-image img {
    transform: scale(1.05);
}

.section-category-more .service-content {
    padding: 24px;
}

.section-category-more .service-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .section-category-more {
        padding: 40px 0;
    }

    .section-category-more .section-header {
        margin-bottom: 40px;
    }

    .section-category-more .section-title {
        font-size: 28px;
    }

    .section-category-more .services-grid {
        gap: 24px;
    }

    .section-category-more .service-image {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .section-category-more {
        padding: 30px 0;
    }

    .section-category-more .section-header {
        margin-bottom: 30px;
    }

    .section-category-more .section-subtitle {
        font-size: 12px;
    }

    .section-category-more .section-title {
        font-size: 24px;
    }

    .section-category-more .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-category-more .service-image {
        height: 200px;
    }

    .section-category-more .service-content {
        padding: 20px;
    }

    .section-category-more .service-title {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .section-category-more {
        padding: 25px 0;
    }

    .section-category-more .section-title {
        font-size: 22px;
    }

    .section-category-more .service-image {
        height: 180px;
    }

    .section-category-more .service-content {
        padding: 16px;
    }

    .section-category-more .service-title {
        font-size: 14px;
    }
}
/* End Section category more */