/* Global Styles */
:root {
    --primary-color: #d1a874;
    --secondary-color: #fbeac5;
    --background-color: #f8fdff;
    --text-color: #1c394b;
    --container-width: 1920px;
    --glow-color: rgba(0, 162, 255, 0.5);
}

body,html {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    min-width: 320px;
    height:100%;
}
textarea,input,select,button{
    font-family: 'Inter', sans-serif;
}
.quicksand{
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
.wrapper{
    position: relative;
    left:0;
    transition: left 0.3s ease-out;
    overflow: hidden;
}
.menu-overlay{
    display: block;
    position: absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.2);
    z-index: 999;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.loading{
    display: none;
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.spinner {
    position: absolute;
    left:50%;
    top:50%;
    margin-left:-28px;
    margin-top:-28px;
    width: 56px;
    height: 56px;
    display: grid;
    border: 4.5px solid #0000;
    border-radius: 50%;
    border-color: #dbdcef #0000;
    animation: spinner-e04l1k 1s infinite linear;
 }
 
 .spinner::before,
 .spinner::after {
    content: "";
    grid-area: 1/1;
    margin: 2.2px;
    border: inherit;
    border-radius: 50%;
 }
 
 .spinner::before {
    border-color: var(--primary-color) #0000;
    animation: inherit;
    animation-duration: 0.5s;
    animation-direction: reverse;
 }
 
 .spinner::after {
    margin: 8.9px;
 }
 
 @keyframes spinner-e04l1k {
    100% {
       transform: rotate(1turn);
    }
 }
/* Header Styles */
.main-header {
    width: 100%;
    position: relative;
    background-color: #f7fdff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 36px;
    box-sizing: border-box;
    gap: 0px;
    text-align: left;
    font-size: 18px;
    color: #1c394b;
    font-family: Inter;
}
.menu{
    display: block;
}
.menu p{
    display: none;
}
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}
.logo img {
    display: block;
    height: 26px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    transition: color 0.1s ease-in;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}


/* Hero Section */
.hero-section {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--background-color);
    z-index: 0;
    margin:0;
}

.hero-content {
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 600;
}
.ai_answer {
    display: none;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--text-color);
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto 2rem;
    min-height: 2.4em;
    position: relative;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

#visualizer-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: transparent !important;
    z-index: 1;
}

#visualizer-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    mix-blend-mode: screen;
    background: transparent !important;
    opacity: 1;
}
#chat-form {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.input-wrapper {
    position: relative;
    width: 600px;
    margin: 0 auto;
    background: linear-gradient(-90deg, #ebca81, #d1a874);
    border-radius: 50px;
    padding: 0 15px 0 0;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 56px;
    transition: height 0.4s ease, background 0.4s ease;
    overflow: hidden;
}
.loading-form .input-wrapper{
    height: 10px;
    background: transparent;
    box-shadow: none;
}
.loading-bar{
    position: absolute;
    top:0;
    left:0;
    width: 20%;
    height: 100%;
    background: linear-gradient(-90deg, #ebca81, #d1a874);
    border-radius: 50px;   
    transform: translate(-50%,0); 
    animation: loading-bar 1.5s ease-in-out  infinite alternate;
    display: none;
}
.loading-form .loading-bar{
    display: block;
}
@keyframes loading-bar{
    0%{
        left:0;
    }
    25%{
    }
    50%{
    }
    75%{
    }
    100%{
        left:100%;
    }
}
.input-wrapper #text-input {
    flex-grow: 1;
    flex-shrink: 0;
    width:100px;
    border: none;
    background: transparent;
    padding: 16px 32px;
    font-size: 1rem;
    color: #1B3168;
    resize: none;
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    color: var(--text-color);
    transition: padding 0.2s ease, height 0.2s ease;
}
.loading-form #text-input{
    font-size: 0;
    padding:5px;
    height:0
}
.input-wrapper #text-input::placeholder {
    color: var(--secondary-color)
}
.input-wrapper #text-input:focus {
    outline: none;
}

.input-wrapper #generate-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #1B3168;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    background: url(../images/button_generate.png) no-repeat center center;
    background-size: 100% 100%;
    font-size: 0;
}
.input-wrapper #generate-button img{
    width: 100%;
}

.loading-form #generate-button{
    transform: scale(0);
}

.input-wrapper #generate-button:hover {
    transform: scale(1.1);
}

#waveform {
    margin-top: 2rem;
    background: rgba(27, 49, 104, 0.05);
    border-radius: 12px;
    padding: 1rem;
    width:200px;
    height:50px;
    display: none;
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* About Section */
section {
    margin: 3rem 0 12rem;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.3em;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1rem;
}

/* Stats Grid */
.items-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 80%;
    margin: 0 auto;
}

.items-grid .item {
    display: block;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.5s ease-out;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 1;
    width:25%;
    transform: translateY(50px);
}
.item.delay_0 {
    transition-delay: 0;
}
.item.delay_1 {
    transition-delay: 100ms;
}
.item.delay_2 {
    transition-delay: 200ms;
}
.item.delay_3 {
    transition-delay: 300ms;
}
.item.delay_4 {
    transition-delay: 400ms;
}
.item.delay_5 {
    transition-delay: 500ms;
}
.item.delay_6 {
    transition-delay: 600ms;
}
.item.delay_7 {
    transition-delay: 700ms;
}
.item.delay_8 {
    transition-delay: 800ms;
}
.item.delay_9 {
    transition-delay: 900ms;
}
.item.delay_10 {
    transition-delay: 1000ms;
}
.item.delay_11 {
    transition-delay: 1100ms;
}
.item.delay_12 {
    transition-delay: 1200ms;
}
.item.delay_13 {
    transition-delay: 1300ms;
}
.item.delay_14 {
    transition-delay: 1400ms;
}
.item.delay_15 {
    transition-delay: 1500ms;
}
.item.delay_16 {
    transition-delay: 1600ms;
}
.item.delay_17 {
    transition-delay: 1700ms;
}
.item.delay_18 {
    transition-delay: 1800ms;
}
.item.delay_19 {
    transition-delay: 1900ms;
}
.item.delay_20 {
    transition-delay: 2000ms;
}
.inview .items-grid .item {
    transform: translateY(0px);
}

/* .items-grid .item:hover {
    transform: translateY(-5px);
} */

.items-grid .item img {
    display: block;
    width: 50%;
    min-width: 60px;
    margin: 0 auto 0;
}

.services-section .items-grid .item .title{
    display: block;
    margin-bottom: 5px;
}
.services-section .items-grid .item span{
    display: block;
}

.services-section .items-grid .item:hover{
    transform: none;
}


.items-grid .item span.title {
    display: block;
    font-weight: 600;
    line-height: 1.3em;
    font-size: 1rem;
}
.items-grid .item span {
    font-weight: 400;
}


/* Works Grid */
.works-grid {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.works-grid .item {
    display: none;
    position: relative;
    text-align: center;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
    flex-grow: 0;
    width: 25%;
    padding:10px;
    transition: transform 0.5s ease-out;
}

.works-grid .item:hover {
    transform: scale(1.05);
}
.works-grid .item-box {
    display: block;
    position: relative;
    aspect-ratio: 10/7;
    overflow: hidden;
    background: #e3e3e3;
}

.works-grid .item img {
    display: block;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto 0;
    filter: brightness(0.7);
    transition: filter 0.2s ease, opacity 0.5s ease-out;
}
.works-grid .item:hover img{
    filter: brightness(1);
}

.works-grid .item .work-info {
    display: block;
    position: absolute;
    bottom:0;
    left:0;
    right:0;
    padding:15px;
    color: #fff;
    font-weight: 400;
    line-height: 1.3em;
    font-size: 1rem;
    text-align: left;
}
.works-grid .item .work-info span{
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}
.works-grid .item .work-info .work-tags{
    font-size: 0.6rem;
    font-weight: 400;
    line-height: 1.3em;
    margin-bottom: 10px;
}
.works-grid .item .work-info .work-title{
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3em;
}
.works-grid .item .work-info .work-description{
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3em;
}

.works-grid-more{
    display: block;
    text-align: center;
    padding: 20px;
}
.works-more-button{
    display: inline-block;
    box-shadow: 0px 0px 0px 1.92px #e8f0f4, 0px 0px 0px 0.92px #fff, 0px 1.9199999570846558px 0px rgba(255, 255, 255, 0.2) inset, 0px 0px 0px 1.92px rgba(255, 255, 255, 0.2) inset;
    border-radius: 25px;
    background-color: #d1a874;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 1rem;
    padding: 0 30px;
    color: #fff;
    min-width: 200px;
    text-decoration: none;
}
.works-more-button:hover{
    background-color: #cbb392;
}

/* Awards Grid */
.awards-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
    flex-wrap: wrap;
    margin: 0 -10px;
}

.awards-grid .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
    flex-grow: 0;
    padding:10px;
    margin-bottom:20px;
    transition-duration: 0.5s;
    transition-property: transform;
    transition-timing-function: ease-out;
    transform: translateY(50px);
}
.inview .awards-grid .item {
    transform: translateY(0px);
}

.awards-grid .item img{
    display: block;
    height:62px;
}
.awards-grid .item .award-des{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    align-self: stretch;
    width: 90px;
}
.awards-grid .item .award-des span{
    display: block;
    flex-grow:1;
    text-align: center;
    align-content: center;
    line-height: 1.2em;
    font-size:0.9rem;
    margin-bottom:3px;
}
.awards-grid .item .award-des .award-title{
    flex-grow: 0;
    font-size:10px;
    font-weight: 600;
}

.brands-list{
    /* height:48px; */
    width:100%;
    overflow: hidden;
}
.brands-list .item{
    display: block;
    height:60px;
    margin:0 30px;
}
.brands-list .item img{
    display: block;
    height:100%;
}

/* Pingcard */
.pingcard-section{

}
.pingcard-section .container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    max-width:1200px;
}
.pingcard-section .section-title {
    color: var(--text-color);
    text-align: left;
}
.pingcard-section .section-description {
    text-align: left;
}
.pingcard-section .section-left{
    width:40%;
    transform: translateX(-100px);
    transition: transform 0.5s ease-out;
}
.pingcard-section.inview .section-left{
    transform: translateX(0px);
}

.pingcard-section .section-right{
    width:60%;
    transform: translateX(100px);
    transition: transform 0.5s ease-out;
}
.pingcard-section.inview .section-right{
    transform: translateX(0px);
}
.pingcard-section .section-right .pingcard-kv{
    display: block;
    width: 100%;
}


.pingcard-button{
    display: inline-block;
    box-shadow: 0px 0px 0px 1.92px #e8f0f4, 0px 0px 0px 0.92px #fff, 0px 1.9199999570846558px 0px rgba(255, 255, 255, 0.2) inset, 0px 0px 0px 1.92px rgba(255, 255, 255, 0.2) inset;
    border-radius: 25px;
    background-color: #d1a874;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 1rem;
    padding: 0 30px;
    color: #fff;
    min-width: 200px;
    text-decoration: none;
}
.pingcard-button:hover{
    background-color: #cbb392;
}



/* Contact */
.contact-section{
    background: var(--primary-color);
    color:#fff;
    margin-bottom: 0;
}
.contact-section .container{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    padding: 50px 20px;
    max-width: 1200px;
}
.contact-section .section-title {
    color:#fff;
    text-align: left;
}
.contact-section .section-description {
    color:#fff;
    text-align: left;
}
.contact-section .section-left{
    width:50%;
    padding-right:50px;
}

.contact-section .section-right{
    width:50%;
}


.contact-section .form {
    display: flex;
    align-items: start;
    justify-content: center;
    align-content: start;
    flex-wrap: wrap;
    margin-right:-20px;
}


.contact-section .form .block{
    position: relative;
    width:50%;
}

.contact-section .form .heading {
    margin-bottom: 10px;
    color: #d1a874;
    font-size: 120%;
}

.contact-section .form p {
    margin-bottom: 20px;
}

.contact-section .form .block {
    margin-bottom: 20px;
    padding: 0 20px 0 0;
}
.contact-section .form .block.inputemail,
.contact-section .form .block.inputmessage{
    width:100%;
}
.contact-section .form .label {
    line-height: 1.5em;
}

.contact-section .form .value {
    font-weight: bold;
    line-height: 1.5em;
}

.contact-section .form a{
    color: #fff;
    text-decoration: underline;
}

.contact-section .form a:hover,
.info a:hover {
    text-decoration: underline;
}

.contact-section .form .input {
    margin-right: 0;
    position: relative;
    margin-bottom: 15px;
}

.contact-section .form .input input {
    -webkit-appearance: none;
    display: block;
    width: 100%;
    padding: 5px 0;
    border: 0;
    background: none;
    border-radius: 0;
    color: var(--text-color);
}

.contact-section .form .input label.error {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 50%;
    white-space: nowrap;
    color: var(--text-color);
}

.contact-section .form .input .line {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #fff;
    transition: width 0.2s ease-out;
}

.contact-section .form .input input:focus,
.contact-section .form .input textarea:focus {
    outline: none;
}

.contact-section .form .input input:focus ~ .line,
.contact-section .form .input textarea:focus ~ .line {
    width: 100%;
}

.contact-section .form .input textarea {
    -webkit-appearance: none;
    display: block;
    width: 100%;
    padding: 10px 0;
    border: 0;
    height: 50px;
    background: none;
    border-radius: 0;
    color: var(--text-color);
}

.contact-section .form .action{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width:100%;
}

.contact-section .form input[type=submit] {
    -webkit-appearance: none;
    display: block;
    border:0;
    box-shadow: 0px 0px 0px 1.92px #e8f0f4, 0px 0px 0px 0.92px #fff, 0px 1.9199999570846558px 0px rgba(255, 255, 255, 0.2) inset, 0px 0px 0px 1.92px rgba(255, 255, 255, 0.2) inset;
    border-radius: 25px;
    background-color: #fff;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 1rem;
    padding: 0 30px;
    color: var(--text-color);
    text-decoration: none;
    flex-grow: 1;
    margin-left: 20px;
}

/* Footer */
.main-footer {
    background-color: var(--text-color);
    color:#68818b;
    padding: 3rem 0;
}

.main-footer .container {
    display: flex;
    align-items: start;
    justify-content: stretch;
    align-content: start;
    align-content: start;
    flex-wrap: wrap;
    max-width: 1200px;
}
.main-footer .footer-left {
    width:50%;
    padding-right:25px;
    margin-bottom: 30px;
}
.main-footer .footer-right {
    width:50%;
    padding-left:25px;
    margin-bottom: 30px;
}

.main-footer .footer-logo {
    width:100%;
    margin-bottom: 30px;
}
.main-footer .footer-logo img{
    display: block;
    height:30px;
}
.main-footer a {
    display: inline-block;
    color:#68818b;
    text-decoration: none;
}
.main-footer a img{
    display: block;
    height:24px;
}
.main-footer h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom:20px;
    color:#fff;
}
.main-footer p {
    font-weight: 400;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}


/* Inner Page */
.inner-section {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--background-color);
    z-index: 0;
    margin:0;
}

.inner-content {
    width: 100%;
    text-align: center;
    position: relative;
}
.inner-banner-bg {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    text-align: center;
    height:100%;
    background-size: cover;
    background-position: center center;
    filter: brightness(0.9);
}
.inner-banner {
    width: 100%;
    text-align: center;
    height:550px;
    backdrop-filter: blur(5px);
}
.inner-banner img{
    display: block;
    max-height: 100%;
    margin:0 auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}
.inner-banner iframe{
    display: block;
    height: 100%;
    margin:0 auto;
    aspect-ratio: 16/9;
}
.details-section{
    text-align: left;
}
.details-section h1.section-title{
    margin-bottom:0;
    text-align: left;
}
.details-section h2.section-title{
    text-align: left;
    font-size:1.5rem;
}
.details-section .section-tags{
    margin:20px 0;
    font-weight: 200;
}
.details-section p{
    text-align: left;
}
.details-section ul{
    text-align: left;
    list-style: disc;
    margin-left:20px;
}
.details-section ol{
    text-align: left;
    list-style: decimal;
    margin-left:20px;
}
.details-section em,
.details-section i{
    font-style: italic;
}
.details-section strong,
.details-section b{
    font-weight: 600;
}
.details-section sup{
    vertical-align: super;
    font-size: 0.8rem;
}
.details-section sub{
    vertical-align: sub;
    font-size: 0.8rem;
}
.details-section a{
    color: var(--text-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    
    .pingcard-section .section-left{
        width:40%;
    }
    .pingcard-section .section-right{
        width:60%;
    }

    
    .contact-section .section-left{
        width:40%;
        padding-right:30px;
    }

    .contact-section .section-right{
        width:60%;
    }

}

@media (max-width: 768px) {
    .main-header{
        padding: 20px;
    }
    header .container{
        padding:0;
    }
    .mobile-menu-toggle {
        display: flex;
    }

    .menu {
        display: none;
        position: absolute;
    }
    body.menu-open{
        overflow: hidden;
    }
    .menu-open .menu-overlay{
        display: block;
        opacity: 1;
        left:0;
    }
    .menu-open .wrapper{
        position: absolute;
        left:-300px;
        width:100%;
        overflow: visible;
    }
    .menu-open .menu{
        display: block;
        top:0;
        left:100%;
        width:300px;
    }

    .menu-open .menu p{
        display: block;
        position: relative;
        padding:20px;
        border-bottom: 1px solid #e6e6e6;
    }
    .menu-open .menu p .btn-close_menu{
        display: block;
        position: absolute;
        right:10px;
        top:10px;
        padding:10px;
        color:var(--text-color);
        font-size:20px;
        font-weight: 600;
        text-decoration: none;
    }

    .menu-open .nav-menu{
        display: block;
        padding-top:20px;
    }

    .menu-open .nav-menu li{
        display: block;
    }
    .menu-open .nav-menu li a{
        display: block;
        padding: 10px 0;
    }


    section {
        margin: 3rem 0 3rem;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .items-grid .item{
        width:50%;

    }
    .input-wrapper {
        width:400px;
    }

    .hero-image img {
        max-width: 80%;
    }
    .works-grid .item{
        width:33%;
    }
    .pingcard-section .container{
        flex-direction: column;
        padding: 0 20px;
    }
    .pingcard-section .section-left{
        width:auto;
        text-align: center;
    }
    .pingcard-section .section-title,
    .pingcard-section .section-description{
        text-align: center;
    }
    
    .pingcard-section .section-right{
        width:auto;
        padding-top: 50px;
    }

    .contact-section .container{
        flex-direction: column;
    }
    .contact-section .section-left{
        width: 100%;
        padding-right:0;
    }

    .contact-section .section-right{
        width: 100%;
    }
    .inner-banner{
        height: auto;
    }
    .inner-banner img{
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
    }
    .inner-banner iframe{
        display: block;
        height: auto;
        width: 100%;
        aspect-ratio: 16/9;
    }
    .works-grid .item .work-info .work-title{
        font-size:0.8rem;
    }
    .works-grid .item .work-info .work-description{
        font-size:0.6rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    .ai_answer {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    .hero-title br{
        display: none;
    }
    .section-title {
        font-size: 2rem;
    }

    .input-wrapper {
        width:280px;
    }
    
    .works-grid .item{
        width:50%;
    }

    .contact-section .form .action{
        flex-direction: column;
        align-items: start;
    }
    .contact-section .form .action .input{
        width:100%;
        overflow: hidden;
    }
    .contact-section .form input[type=submit]{
        margin: 0;
        min-width: 200px;
    }
    .awards-grid .item img{
        height:55px;
    }
    
    .main-footer .footer-left {
        width:100%;
        padding-right:0;
    }
    .main-footer .footer-right {
        width:100%;
        padding-left:0;
    }
    .works-grid .item .work-info{
        padding:10px;
    }
}
