/* Page Banner with Breadcrumbs */
.page-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #ffffff;
    width: 100%;
    max-width: 1152px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.banner-content h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Mona Sans', sans-serif;
    font-size: 15px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
    opacity: 0.8;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Services Page Section */
.services-page-section {
    padding: 40px 0 80px;
    border-bottom: 1px solid #00000033;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1e1e 0%, #333333 100%);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.1) rotate(2deg);
    opacity: 0.9;
}

.service-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image-wrapper::after {
    opacity: 1;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-number {
    transform: scale(1.1) rotate(360deg);
    background: #0066cc;
    color: #ffffff;
}

.service-contents {
    padding: 25px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-contents h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1e1e1e;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover .service-contents h3 {
    color: #0066cc;
}

.service-contents p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(60, 60, 60, 0.85);
    margin-bottom: 10px;
    flex-grow: 1;
    text-align: justify;
}

.service-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 12px 0 5px;
    border-bottom: 2px solid transparent;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.service-read-more::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: #0066cc;
    transition: left 0.5s ease;
}

.service-card:hover .service-read-more::before {
    left: 0;
}

.service-read-more i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-read-more {
    color: #0066cc;
}

/* Service Detail Hero Section */
.service-detail-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
    background-image: url('../images/concept-design-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 81%) 0%, rgb(0 0 0 / 57%) 50%, rgb(0 0 0 / 77%) 100%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
}

.service-hero-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Mona Sans', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-hero-breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-hero-breadcrumbs a:hover {
    color: #ffffff;
}

.service-hero-breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

.service-hero-breadcrumbs .current {
    color: rgba(255, 255, 255, 0.7);
}

.service-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Service Detail Main Section */
.service-detail-main {
    padding: 60px 0;
    background: #ffffff;
}

.service-detail-container {
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 95px;
    align-self: flex-start;
    border-radius: 8px;
    padding: 0px 0 20px;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.service-sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    padding: 0 0px 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #031dbd;
}

/* Service Content Image */
.service-content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 30px;
    display: block;
}

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

.service-sidebar-item {
    margin: 0;
    margin-bottom: 10px;
}

.service-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 10px 17px 15px;
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    background: #f8f8f8;
    font-weight: 500;
}

.service-sidebar-link:hover {
    color: #2773ad;
}

.service-sidebar-link.active {
    color: #2773ad;
    font-weight: 600;
    border-left-color: #2773ad;
}

.service-sidebar-link::after {
    content: '\f285';
    font-family: 'bootstrap-icons';
    font-size: 16px;
    color: #666666;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-sidebar-link.active::after {
    color: #031dbd;
}

.service-sidebar-link:hover::after {
    color: #031dbd;
}

/* Have Questions Section */
.service-sidebar-questions {
    margin-top: 30px;
    padding: 240px 20px 50px 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
}

.service-questions-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.service-questions-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    color: white;
}

.service-questions-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-questions-phone i {
    font-size: 24px;
    color: #ffffff;
}

.service-questions-phone a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.service-questions-phone a:hover {
    opacity: 0.9;
}

/* Service Content */
.service-content {
    background: #ffffff;
}

.service-intro {
    margin-bottom: 50px;
}

.service-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

/* Section Styles */
.service-section {
    margin-bottom: 60px;
}

.service-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #031dbd;
    position: relative;
}

.service-subsection {
    margin-bottom: 40px;
}

.service-subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-subsection p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 15px;
}

.service-subsection ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-subsection ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

.service-subsection ul li::before {
    content: '\f285';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: #031dbd;
    font-weight: 600;
}

/* Collaboration Section */
.service-disciplines {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-disciplines-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

.service-disciplines-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-disciplines-list li {
    font-size: 16px;
    color: #555555;
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 6px;
    border-left: 3px solid #031dbd;
    font-weight: 500;
}

/* Service CTA Section */
.service-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #031dbd 0%, #0066cc 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.service-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-cta-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #ffffff;
}

.service-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Projects Page Styles */
.projects-page-section {
    padding: 90px 0;
    background: #ffffff;
    border-bottom: 1px solid #00000021;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid #d0d0d0;
    border-radius: 30px;
    color: #666666;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Mona Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.filter-btn span {
    position: relative;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 30px;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: #ffffff;
    border-color: #000000;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    transform: scale(1);
}

.projects-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
}

.project-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    border-color: #e0e0e0;
}

.project-card:hover::before {
    opacity: 1;
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f8f8f8;
}

.project-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-card:hover .project-image-wrapper::after {
    opacity: 1;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image-wrapper img {
    transform: scale(1.15);
}

.project-type-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.project-card:hover .project-type-badge {
    background: #000000;
    color: #ffffff;
    transform: scale(1.05);
}

.project-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.85);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: none;
}

.project-card:hover .project-category-badge {
    background: rgba(0, 0, 0, 0.95);
    transform: scale(1.05);
}

.project-arrow-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: #0625ca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
}

.project-card:hover .project-arrow-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.project-content {
    padding: 35px 30px;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.project-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.project-card:hover .project-content h3 {
    color: #0625ca;
}

.project-content .project-type {
    font-size: 13px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin: 0;
}

.project-card.hidden {
    display: none;
}

/* Mission and Vision Section */
.mission-vision-section {
    padding: 70px 0 50px;
    background: #ffffff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.mission-card {
    position: relative;
    border-radius: 0;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

.vision-card {
    position: sticky;
    top: 150px;
    border-radius: 0;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
    align-self: start;
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1e1e1e;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.mission-card h3::after,
.vision-card h3::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: -15px;
    width: 35px;
    height: 3px;
    background: #000000;
    rotate: 90deg;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(60, 60, 60, 0.9);
    margin-bottom: 18px;
    text-align: justify;
}

.mission-card p:last-of-type {
    margin-bottom: 0;
}

.mission-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mission-card ul li {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(60, 60, 60, 0.9);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    text-align: justify;
}

.mission-card ul li:last-child {
    border-bottom: none;
}

.mission-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mission-card ul li span {
    font-weight: 600;
    color: #1e1e1e;
    display: inline;
    font-size: 15px;
}

/* Core Values Section */
.core-values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #00000021;
}

.value-head {
    margin-top: 40px;
}

.value-head h3.success {
    font-size: 30px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.value-head h3.success::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
}

.value-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #000000;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e1e1e;
    font-weight: 600;
    position: relative;
    line-height: 1.2;
}

.value-card h4 .first-letter {
    font-size: 21px;
    color: #0066cc;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(60, 60, 60, 0.85);
    margin: 0;
}

/* Chairman Message Section */
.chairman-section {
    padding: 120px 0;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.chairman-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(3, 29, 189, 0.03) 0%, rgba(3, 29, 189, 0) 100%);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.chairman-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.chairman-info {
    background: #ffffff;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    position: relative;
    border-left: 5px solid #031dbd;
}

.chairman-info::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-family: 'Times New Roman', serif;
    font-size: 180px;
    line-height: 1;
    color: #f0f2f5;
    z-index: -1;
}

.chairman-info h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #031dbd;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    border-bottom: 1px solid #031dbd;
    padding-bottom: 5px;
}

.chairman-info .chairman-title {
    font-size: 36px;
    color: #1e1e1e;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: 'Mona Sans', sans-serif;
    line-height: 1.2;
    max-width: 800px;
}

.chairman-message-container {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.chairman-message-container::before {
    display: none;
}

.chairman-message {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
    text-align: left;
    columns: 1;
}

.chairman-message p {
    margin-bottom: 25px;
}

.chairman-signature {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.chairman-signature p {
    font-size: 20px;
    color: #1e1e1e;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Mona Sans', sans-serif;
}

.chairman-signature span {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .chairman-section {
        padding: 80px 0;
    }

    .chairman-info {
        padding: 40px 30px;
    }

    .chairman-info .chairman-title {
        font-size: 28px;
    }

    .chairman-message {
        font-size: 16px;
        columns: 1;
    }

    .mission-vision-section {
        padding: 50px 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .vision-card {
        position: relative;
        top: 0;
    }

    .mission-card,
    .vision-card {
        padding-left: 25px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .value-head h3.success {
        font-size: 36px;
    }

    .value-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .value-card h4 .first-letter {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .value-card {
        padding: 30px 25px;
    }

    .chairman-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .chairman-message p {
        text-align: justify;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .page-banner {
        height: 380px;
    }

    .mission-vision-section,
    .core-values-section,
    .chairman-section {
        padding: 40px 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 25px;
    }

    .vision-card {
        position: relative;
        top: 0;
    }

    .mission-card,
    .vision-card {
        padding-left: 0px;
    }

    .mission-card p,
    .vision-card p {
        text-align: left;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 24px;
        margin-bottom: 18px;
        padding-left: 0px;
    }

    .mission-card h3::after,
    .vision-card h3::after {
        width: 50px;
        height: 2px;
        display: none;
    }

    .mission-card p,
    .vision-card p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 15px;
    }

    .mission-card ul {
        margin-top: 25px;
        gap: 10px;
    }

    .mission-card ul li {
        padding: 12px 0 12px 20px;
        font-size: 13px;
    }

    .mission-card ul li span {
        font-size: 14px;
    }

    .value-head h3.success {
        font-size: 25px;
        margin-bottom: 35px;
    }

    .value-head h3.success::first-letter {
        font-size: 40px;
        margin-right: 5px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .value-card h4 {
        font-size: 18px;
    }

    .value-card h4 .first-letter {
        font-size: 26px;
    }

    .value-card p {
        font-size: 14px;
    }

    /* Services Grid Responsive */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .service-image-wrapper {
        height: 220px;
    }

    .service-contents {
        padding: 25px;
    }

    .service-contents h3 {
        font-size: 22px;
    }

    .service-contents p {
        font-size: 14px;
    }

    .service-number {
        left: auto;
        transform: unset;
    }

    .services-page-section {
        padding: 40px 0 60px;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Projects Grid Responsive */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Service Detail Responsive */
    .service-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-sidebar {
        position: relative;
        top: auto;
    }

    .service-sidebar-questions {
        margin-top: 20px;
    }

    .service-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        min-height: 300px;
        margin-top: 70px;
    }

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

    .service-detail-main {
        padding: 40px 0;
    }

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

    .service-subsection-title {
        font-size: 20px;
    }

    .service-disciplines-list {
        grid-template-columns: 1fr;
    }

    .service-cta-section {
        padding: 60px 20px;
    }

    .service-cta-section h3 {
        font-size: 28px;
    }

    .service-cta-section p {
        font-size: 16px;
    }

    .service-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-cta-buttons .cta-btn-primary,
    .service-cta-buttons .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    /* Projects Page Responsive */
    .projects-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .page-banner {
        height: 380px;
    }

    .projects-page-section {
        padding: 60px 0;
    }

    .project-image-wrapper {
        height: 250px;
    }

    .project-content {
        padding: 30px 20px;
    }

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

@media (max-width: 992px) {
    .service-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-sidebar {
        position: relative;
        top: auto;
    }

    .service-sidebar-questions {
        margin-top: 20px;
    }

    .service-hero-title {
        font-size: 36px;
    }
}
