@font-face {
 font-family: 'Montserrat';
 src: url('../images/Montserrat-Light.otf') format('opentype');

}
@font-face {
 font-family: 'SourceHanSansCN';
 src: url('../images/SourceHanSansCN-Regular.ttf') format('truetype');
}
:root {
 --primary-font: 'Montserrat', Helvetica, Arial, sans-serif;
 --text-dark: #1a1a1a;
 --text-grey: #666;
 --text-light: #999;
 --bg-color: #fff;
 --border-light: #eee;
 --transition-smooth: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
 --max-width:112.5rem;
}
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
html {
 font-size: 16px;
}
body {
 font-family: var(--primary-font);
 background: var(--bg-color);
 color: var(--text-dark);
 line-height: 1.5;
 -webkit-font-smoothing: antialiased;
 
}
a {
 text-decoration: none;
 color: inherit;
 cursor: pointer;
}
ul {
 list-style: none;
}
img {
 height: auto;
 display: block;
}
header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 background: rgba(255, 255, 255, 0.96);
 z-index: 1000;
}
.header-inner {
	width:96%;
 max-width: var(--max-width);
 margin: 0 auto;
 padding: 2rem 0;
 display: flex;
 justify-content: space-between;
 align-items: center;
 position: relative;
}
.logo {
 font-weight: 900;
 font-size: 1.8rem;
 letter-spacing: 0.125rem;
 transition: var(--transition-smooth);
}
.logo img {
 height: 2rem;
}
.logo img:last-child {
 display: none;
}
.index .logo img:first-child {
 display: none;
}
.index .logo img:last-child {
 display: block;
}
.logo:hover {
 opacity: 0.8;
}
.nav-main {
 display: flex;
 align-items: center;
 margin-left: auto;
 margin-right: 4.375rem;
}
.nav-menu {
 display: flex;
 gap: 3.75rem;
 align-items: center;
}
.nav-item {
 position: relative;
 font-size: 1rem;
 text-transform: uppercase;
}
.nav-item > a {
 color: var(--text-grey);
 font-weight: 500;
 transition: var(--transition-smooth);
 padding: 0.5rem 0;
 display: inline-block;
 position: relative;
}
.nav-item > a:hover, .nav-item > a.active {
 color: var(--text-dark);
}
.nav-item > a.active::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 0.125rem;
 background: var(--text-dark);
 transform: scaleX(1);
 transition: transform 0.2s ease;
}
.nav-item > a:not(.active)::after {
 content: '';
 position: absolute;
 bottom: -0.125rem;
 left: 0;
 width: 100%;
 height: 0.125rem;
 background: var(--text-dark);
 transform: scaleX(0);
 transition: transform 0.2s ease;
}
.nav-item > a:hover::after {
 transform: scaleX(1);
}
.dropdown-menu {
 position: absolute;
 top: 100%;
 left: 0;
 background: #fff;
 min-width: 11.25rem;
 box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.08);
 opacity: 0;
 visibility: hidden;
 transform: translateY(0.75rem);
 transition: var(--transition-smooth);
 z-index: 100;
 border-radius: 0.125rem;
 padding: 0.5rem 0;
 border: 0.0625rem solid #f0f0f0;
}
.dropdown-menu li {
 display: block;
}
.dropdown-menu li a {
 display: block;
 padding: 0.625rem 1.25rem;
 font-size: 0.85rem;
 text-transform: none;
 font-weight: 400;
 color: var(--text-grey);
 transition: background 0.2s;
 white-space: nowrap;
}
.dropdown-menu li a:hover {
 background: #f8f8f8;
 color: var(--text-dark);
}
.nav-item.dropdown:hover .dropdown-menu {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
}
.nav-right {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 position: relative;
}
.lang-dropdown {
 position: relative;
}
.lang-current {
 font-size: 0.875rem;
 background: transparent;
 cursor: pointer;
 color: var(--text-grey);
 font-weight: 500;
 letter-spacing: 0.03125rem;
 padding: 0.375rem 1.25rem 0.375rem 0.5rem;
 display: inline-block;
 position: relative;
}
.lang-current::after {
 content: ' ';
 background: url(../images/ico11.svg) no-repeat;
 background-size:100%;
 width: 0.5625rem;
 height: 0.3125rem;
 position: absolute;
 right: 0.25rem;
 top: 49%;
}
.index .lang-current::after {
 background: url(../images/ico1.svg) no-repeat;
}
.lang-menu {
 position: absolute;
 top: 100%;
 right: 0;
 background: #fff;
 min-width: 5rem;
 box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.1);
 border-radius: 0.375rem;
 padding: 0.5rem 0;
 opacity: 0;
 visibility: hidden;
 transform: translateY(-0.5rem);
 transition: all 0.2s ease;
 z-index: 150;
 border: 0.0625rem solid #eee;
}
.lang-dropdown:hover .lang-menu {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
}
.lang-menu li a {
 display: block;
 padding: 0.5rem 1.25rem;
 font-size: 0.85rem;
 color: var(--text-grey);
 transition: background 0.2s;
}
.lang-menu li a:hover {
 background: #f5f5f5;
 color: var(--text-dark);
}
.search-container {
 position: relative;
}
.search-icon-trigger {
 width: 1.625rem;
 height: 1.625rem;
 cursor: pointer;
 background: url(../images/ico22.svg);
 background-size: 100%;
 font-size: 1.2rem;
 color: var(--text-grey);
 transition: color 0.2s;
 display: flex;
 align-items: center;
}
.index .search-icon-trigger {
 background: url(../images/ico2.svg);
}
.search-icon-trigger:hover {
 color: var(--text-dark);
}
.search-icon-trigger svg {
 width: 1.25rem;
 height: 1.25rem;
 stroke: currentColor;
 stroke-width: 1.8;
 fill: none;
}
.search-dropdown {
 position: absolute;
 top: calc(100% + 0.75rem);
 right: 0;
 width: 18.75rem;
 background: #fff;
 border-radius: 0.75rem;
 box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.12);
 padding: 1rem;
 z-index: 200;
 opacity: 0;
 visibility: hidden;
 transform: translateY(-0.5rem);
 transition: all 0.25s ease;
 border: 0.0625rem solid #eee;
}
.search-dropdown.open {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
}
.search-input-wrapper {
 display: flex;
 gap: 0.625rem;
 align-items: center;
 border: 0.0625rem solid #e0e0e0;
 border-radius: 0.5rem;
 padding: 0.5rem 0.75rem;
 transition: border 0.2s;
}
.search-input-wrapper:focus-within {
 border-color: var(--text-dark);
}
.search-input-wrapper input {
 flex: 1;
 border: none;
 outline: none;
 font-size: 0.9rem;
 background: transparent;
}
.search-input-wrapper button {
 background: none;
 border: none;
 cursor: pointer;
 display: inline-flex;
 align-items: center;
 padding: 0;
 color: var(--text-grey);
 transition: color 0.2s;
}
.search-input-wrapper button:hover {
 color: var(--text-dark);
}
.search-input-wrapper button svg {
 width: 1.125rem;
 height: 1.125rem;
 stroke: currentColor;
 stroke-width: 1.8;
 fill: none;
}
.search-suggest {
 margin-top: 0.625rem;
 font-size: 0.7rem;
 color: var(--text-light);
}
.hamburger {
 display: none;
 flex-direction: column;
 justify-content: space-between;
 width: 1.5rem;
 height: 1.125rem;
 cursor: pointer;
 z-index: 1100;
}
.hamburger span {
 width: 100%;
 height: 0.125rem;
 background: var(--text-dark);
 transition: all 0.3s ease;
}
.mobile-nav-overlay {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.5);
 backdrop-filter: blur(4px);
 visibility: hidden;
 opacity: 0;
 transition: visibility 0.25s ease, opacity 0.25s ease;
 z-index: 1200;
}
.mobile-nav-overlay.open {
 visibility: visible;
 opacity: 1;
}
.mobile-nav-panel {
 position: fixed;
 top: 0;
 right: 0;
 width: 100%;
 height: 100vh;
 background: white;
 box-shadow: -0.3125rem 0 1.875rem rgba(0, 0, 0, 0.15);
 z-index: 1300;
 padding: 1.75rem 1.5rem;
 overflow-y: auto;
 display: flex;
 flex-direction: column;
 opacity: 0;
 visibility: hidden;
 transform: translateX(100%);
 transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.mobile-nav-panel.open {
 opacity: 1;
 visibility: visible;
 transform: translateX(0);
}
.close-mobile {
 text-align: right;
 font-size: 1.75rem;
 cursor: pointer;
 align-self: flex-end;
 line-height: 1;
 margin-bottom: 1.25rem;
 color: var(--text-dark);
}
.mobile-nav-panel .nav-menu {
 flex-direction: column;
 align-items: stretch;
 gap: 0;
 width: 100%;
 display: flex !important;
}
.mobile-nav-panel .nav-item {
 width: 100%;
 border-bottom: 0.0625rem solid #f0f0f0;
 list-style: none;
}
.mobile-nav-panel .nav-item > a {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 1rem 0;
 font-size: 1.3rem;
 text-transform: none;
 font-weight: 500;
 color: #1a1a1a;
 transition: color 0.2s;
}
.mobile-nav-panel .nav-item > a:hover, .mobile-nav-panel .nav-item > a:active {
 color: #000;
}
.mobile-nav-panel .dropdown-menu {
 position: static;
 box-shadow: none;
 opacity: 1;
 visibility: visible;
 transform: none;
 padding: 0 0 0.75rem 1rem;
 min-width: auto;
 border: none;
 background: transparent;
 display: none;
 transition: none;
}
.mobile-nav-panel .dropdown-menu.open {
 display: block !important;
}
.mobile-nav-panel .dropdown-menu li a {
 padding: 0.625rem 0;
 white-space: normal;
 font-size:1rem;
 color: var(--text-grey);
}
.mobile-nav-panel .dropdown-menu li a:hover {
 color: var(--text-dark);
}
.mobile-arrow-svg {
 width: 1rem;
 height: 1rem;
 transition: transform 0.2s ease;
 stroke: var(--text-grey);
 stroke-width: 2;
 fill: none;
}
.mobile-arrow-svg.rotated {
 transform: rotate(180deg);
}
.footer {
 padding: 3.5625rem 0;
 border-top: 0.0625rem solid rgba(71, 71, 71, 1);
 border-bottom: 0.0625rem solid rgba(71, 71, 71, 1);
 display: flex;
 gap: 3rem;
 justify-content: space-between;
 align-items: center;
}
.footer-brand {
 display: flex;
 align-items: end;
 flex-direction: column;
}
.footer-brand h2 {
 font-weight: 900;
 margin-bottom: 0.75rem;
}
.footer-brand h2 img {
 height: 1.25rem;
}
.footer-brand p {
 font-size: 0.875rem;
 font-family: 'SourceHanSansCN';
 color: rgba(51, 51, 51, 1);
 max-width: 17.5rem;
}
.footer-links {
 display: flex;
 gap: 7.25rem;
 align-items: center;
}
.footer-links a {
 font-size: 1rem;
 font-weight: bold;
 color: rgba(51, 51, 51, 1);
 transition: 0.2s;
}
.footer-links a:hover {
 color: var(--text-dark);
 text-decoration: underline;
}
.copyright-bar {
 margin: 1.25rem 0;
 font-family: 'SourceHanSansCN';
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 1.25rem;
}
.social-icons {
 display: flex;
 gap: 1.25rem;
 align-items: center;
}
.social-icons a {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 transition: transform 0.2s ease, opacity 0.2s;
}
.social-icons a:hover {
 transform: translateY(-0.1875rem);
 opacity: 0.8;
}
.social-icons svg {
 width: 1.375rem;
 height: 1.375rem;
 fill: none;
 stroke: var(--text-dark);
 stroke-width: 1.5;
 transition: stroke 0.2s, fill 0.2s;
}
.social-icons a:hover svg {
 stroke: #000;
 fill: rgba(0, 0, 0, 0.05);
}
.copyright-text {
 font-size: 0.625rem;
 font-weight: 400;
 color: rgba(0, 0, 0, 1);
}
.index header {
 background: none;
 border-bottom: 0;
}
.index header .nav-item > a {
 color: #fff;
}
.index header .nav-item > a.active::after, .index header .nav-item > a:not(.active)::after {
 background: #fff;
}
.index header .lang-current {
 color: #fff;
}
.index header .search-icon-trigger svg {
 color: #fff;
}
.video-container {
 position: relative;
 width: 100%;
 height: 100vh;
 overflow: hidden;
}
video {
 width: 100%;
 height: 100%;
 display: block;
 object-fit: cover;
 cursor: pointer;
}
video::-webkit-media-controls, video::-webkit-media-controls-enclosure {
 display: none !important;
}
.play-btn {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 5rem;
 height: 5rem;
 background: rgba(0, 0, 0, 0.6);
 border-radius: 50%;
 border: none;
 z-index: 999;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 opacity: 0;
 pointer-events: none;
 transition: opacity 0.2s ease;
}
.play-btn.show {
 opacity: 1;
 pointer-events: auto;
}
.play-btn:hover {
 background: rgba(0, 0, 0, 0.8);
}
.play-btn svg {
 width: 2rem;
 height: 2rem;
 fill: #fff;
 display: block;
}

.h60 {
 height: 1.875rem;
}
main {

 padding: 7.5rem 0;
}
.page-header {
 margin-bottom: 4.75rem;
}
.page-title {
 font-size: 2.25rem;
 font-weight: 600;
 color: rgba(51, 51, 51, 1);
}
.category-filter {
 margin-top: 2.625rem;
 display: flex;
 gap: 3.125rem;
 padding-bottom: 0.75rem;
 flex-wrap: wrap;
}
.category-filter a {
 font-size: 1.125rem;
 color: rgba(51, 51, 51, 1);
 position: relative;
 padding-bottom: 0.375rem;
 transition: color 0.2s;
}
.category-filter a.active{
 font-weight: 600;
}
.category-filter a.active::after,.category-filter a:hover::after {
 content: '';
 position: absolute;
 bottom: -0.25rem;
 left: 0;
 width: 100%;
 height: 0.0625rem;
 background: rgba(68, 68, 68, 1);
}
.gallery {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 2.25rem 5.3125rem;
}
.gallery-item {
 display: block;
 transition: transform 0.3s;
}
.image-wrapper {
 overflow: hidden;
 margin-bottom: 1.125rem;
 aspect-ratio: 4 / 3;
}
.image-wrapper img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.gallery-item:hover img {
 transform: scale(1.04);
}
.item-title {
 font-size: 1rem;
 color: rgba(51, 51, 51, 1);
 transition: color 0.2s;
}
.pagination {
 display: flex;
 justify-content: end;
 align-items: center;
 gap: 1rem;
 margin: 4.375rem 0 1.25rem;
 flex-wrap: wrap;
}
.pagination a {
 font-size: 1rem;
 color: rgba(153, 153, 153, 1);
 transition: all 0.2s;
}
.pagination a:hover, .pagination a.page-num-current {
 color: #000000;
}
.pagination a.prev, .pagination a.next {
 width: 1.5rem;
 height: 1.5rem;
 display: flex;
 align-items: center;
 justify-content: center;
}
.pagination a.prev {
 background: url(../images/prev.svg) no-repeat;
 background-size: 100%;
}
.pagination a.prev:hover {
 background: url(../images/prev1.svg) no-repeat;
 background-size: 100%;
}
.pagination a.next {
 background: url(../images/next.svg) no-repeat;
 background-size: 100%;
}
.pagination a.next:hover {
 background: url(../images/next1.svg) no-repeat;
 background-size: 100%;
}
.main-wrapper {
 max-width: var(--max-width);
 margin: 0 auto;
 width: 96%;
}
#profile {
 padding: 2.5rem 0 0 0;
 display: flex;
 max-width: 70%;
 margin: 0px auto;
 align-items: center;
 gap: 9.25rem;
}
#profile .profile-image-wrapper {
 width: 35rem;
 overflow: hidden;
}
#profile .profile-image-wrapper img {
 transition: transform 0.6s ease;
 width: 100%;
 height: 100%;
 object-fit: cover;
}
#profile .profile-image-wrapper:hover img {
 transform: scale(1.02);
}
#profile .profile-content {
 flex: 1;
}
#profile .profile-content h1 {
 font-size: 2.25rem;
 color: rgba(51, 51, 51, 1);
 font-weight: 600;
 margin-bottom: 0.625rem;
}
#profile .profile-content h2 {
 font-size: 1.25rem;
 color: rgba(102, 102, 102, 1);
 font-weight: 400;
 text-transform: uppercase;
}
#profile .profile-content p {
 font-size: 1rem;
 color: #000;
 line-height: 1.6;
 margin-top: 2.5rem;
}
#services {
 padding: 7.5rem 0;
}
#services .services-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 3.75rem;
}
#services .service-item {
 position: relative;
 overflow: hidden;
 cursor: pointer;
}
#services .service-item img {
 width: 100%;
 height: 25rem;
 object-fit: cover;
 transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#services .service-item span {
 display: block;
 margin-top: 1.625rem;
 font-size: 1.75rem;
 color: rgba(51, 51, 51, 1);
 font-weight: 400;
}
#services .service-item:hover img {
 transform: scale(1.02);
}
#people .people-container {
	display: grid;
	gap: 3.625rem;
	grid-template-columns: repeat(3, 1fr);
}
#people .person-card {
 flex: 1;
 display: flex;
 flex-direction: column;
}
#people .person-image-wrapper {
 width: 100%;
 overflow: hidden;
 margin-bottom: 1.25rem;
}
#people .person-image-wrapper img {
 width: 100%;
 height: 37.5rem;
 object-fit: cover;
 transition: transform 0.6s ease, opacity 0.3s;
}
#people .person-info h3 {
 font-size: 1.5rem;
 color: rgba(51, 51, 51, 1);
 margin-bottom: 0.3125rem;
}
#people .person-info p {
 font-size: 1rem;
 color: rgba(51, 51, 51, 1);
}
#people .person-card:hover .person-image-wrapper img {
 transform: scale(1.08);
 opacity: 0.9;
}
#people .person-card:hover .person-info h3 {
 color: #000;
 text-decoration: underline;
}
#contact {
 display: flex;
 align-items: center;
 justify-content: space-between;
}
#contact .contact-info h2 {
 font-size: 2.25rem;
 color: rgba(51, 51, 51, 1);
 margin-bottom: 1.875rem;
 font-weight: 600;
}
#contact .info-item {
 margin-bottom: 1.25rem;
 font-size: 1rem;
 color: #000;
}
#contact .info-item strong {
 font-weight: normal;
}
#contact .info-item a {
 color: #000;
 transition: color 0.3s;
}
#contact .info-item a:hover {
 color: #888;
}
#contact .map-wrapper {
 width: 46.25rem;
 height: 37.5rem;
 background-color: #f0f0f0;
 overflow: hidden;
 position: relative;
}
#contact .map-wrapper img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s ease;
}
#contact .map-wrapper:hover img {
 transform: scale(1.02);
}
#about {
 display: flex;
 align-items: center;
 gap: 15.25rem;
 justify-content: space-between;
}
#about .info h2 {
 font-size: 2.25rem;
 color: rgba(51, 51, 51, 1);
 margin-bottom: 1.875rem;
 font-weight: 600;
}
#about .us {
 margin-bottom: 1.25rem;
 font-size: 1rem;
 color: #000;
}
#about .us p {
 margin-top: 2rem;
 line-height: 1.6;
}
#about .us a {
 color: #000;
 transition: color 0.3s;
}
#about .pic {
 width: 49.9375rem;
 height: 33.375rem;
 flex-shrink: 0;
 overflow: hidden;
 position: relative;
}
#about .pic img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s ease;
}
#about .pic:hover img {
 transform: scale(1.02);
}
.project-detail {
 padding-bottom: 3rem;
}
.project-detail .header {
 padding: 2.5rem 0 0 0;
 margin-bottom: 0;
}
.project-detail .header h1 {
 font-size: 2.25rem;
 font-weight: 600;
 color: #000;
 margin-bottom: 0.5rem;
}
.project-detail .header .location {
 font-size: 1rem;
 color: rgba(102, 102, 102, 1);
 font-weight: 400;
}
.hero-image-container{margin:3rem 0 6rem 0;}
.hero-image-container .hero-image {
 width: 100%;
 height: auto;
}
.project-detail .content-grid {
 display: flex;
 flex-direction: row;
 gap: 4rem;
}
.project-detail .sidebar {
 flex: 0 0 25%;
 position: sticky;
 top: 2rem;
}
.project-detail .sidebar h2 {
 font-size: 1.625rem;
 color: rgba(0, 0, 0, 1);
 font-weight: 700;
 margin-bottom: 1.5rem;
 text-transform: uppercase;
}
.project-detail .meta-group {
 margin-bottom: 1.5rem;
}
.project-detail .meta-label {
 font-size: 1.125rem;
 font-weight: 700;
 color: rgba(51, 51, 51, 1);
 margin-bottom: 0.25rem;
 display: block;
}
.project-detail .meta-value {
 font-size: 1.125rem;
 color: rgba(51, 51, 51, 1);
 margin-bottom: 0.5rem;
 font-weight: 400;
}
.project-detail .main-content {
 flex: 1;
}
.project-detail .description-text {
 font-size: 1rem;
 color: #444;
 margin-bottom: 3rem;
 text-align: justify;
}
.project-detail .description-text p {
 margin-bottom: 1.5rem;
}

.project-detail .description-text img {
    margin: 0px auto;
    max-width: 90%;
}

.project-detail .image-column {
 display: flex;
 flex-direction: column;
 padding: 5% 10%;
 gap: 2rem;
}

@media (max-width: 1600px) {
 html {
 font-size: 14px;
}	
#profile {
	max-width: 80%;
}

#profile .profile-image-wrapper {

}


}

@media (max-width: 1280px) {
	
	 html {
 font-size: 12px;
}
	
#about .pic {
	width: 39.9375rem;
}
}


@media (max-width: 768px) {

 main {
 padding: 3.5rem 1.25rem;
}
 .logo img {
 height: 1.25rem;
}
 .index .hamburger span {
 background: #fff;
}
 .header-inner {
 padding: 0.75rem 5%;
}
 .nav-main {
 display: none;
}

.nav-item > a.active::after {
	display: none;
}

 .hamburger {
 display: flex;
}
 .index header .nav-item > a {
 color: rgba(51, 51, 51, 1);
}
 .page-header {
 margin-bottom: 2rem;
}
 .video-container {
 height: 50vh;
}
 .gallery {
 grid-template-columns: 1fr;
 gap: 2.5rem;
}
 footer {
 grid-template-columns: 1fr;
 text-align: center;
 gap: 2rem;
}
 .footer-brand {
 align-items: center;
 width: 100%;
}
 .footer-links {
 display: none;
}
 .footer-brand p {
 margin: 0 auto;
}
 .copyright-bar {
 flex-direction: column-reverse;
 justify-content: center;
 text-align: center;
}
 .social-icons {
 justify-content: center;
}
 .page-title {
 font-size: 2rem;
}
 .pagination {
 align-items: center;
}
 .category-filter {
 gap: 1.25rem;
}
 .search-dropdown {
 width: 17.5rem;
 right: -1.25rem;
}
 #profile, #services, #people, #contact, #about {
 flex-direction: column;
}
 #services {
 padding: 2.5rem 1.25rem;
}
 #profile {
 max-width: 100%;
 gap: 2rem;
}
 #profile .profile-image-wrapper {
 padding-right: 0;
 margin-bottom: 1.875rem;
 width: 100%;
}
 #profile .profile-content h1 {
 font-size: 2rem;
}
 #services .services-grid {
 grid-template-columns: 1fr;
 gap: 3rem;
}
 #services .service-item img {
 height: 15.625rem;
}
 #people .people-container {
 flex-direction: column;
 gap: 2rem;
 grid-template-columns: repeat(1, 1fr);
}
 #people .person-image-wrapper img {
 height: auto;
}
 #contact .contact-info {
 padding-right: 0;
 margin-bottom: 1.875rem;
 width: 100%;
}
 #contact .map-wrapper {
 width: 100%;
 height: auto;
}
 #about {
 flex-direction: column;
 gap: 2rem;
}
 #about .pic {
 width: 100%;
 height: auto;
}
 .project-detail .content-grid {
 flex-direction: column;
 gap: 2.5rem;
}
 .project-detail .sidebar {
 flex: 1;
 width: 100%;
 position: static;
}
 .project-detail .header h1 {
 font-size: 1.75rem;
}
}