/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: "Manrope", sans-serif;
    line-height: normal;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #252528;
    margin-bottom: 15px;
    line-height: normal;    
}

.section-description {
    font-size: 18px;
    color: #252528;
    max-width: 981px;
    font-weight: 400;
    line-height: normal;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 25px;
    border-radius: 13px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: #2760AB;
    color: #fff;
    border-color: #2760AB;
}

.btn-primary:hover {
    background: #3577C7;
    border-color: #3577C7;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
}

.btn-secondary:hover {
    background: #2760AB;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #2760AB;
    padding: 15px 68px;
    z-index: 200;
}

.btn-white:hover {
    background: #2760AB;
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1DA851;
    border-color: #1DA851;
}

.btn-form{
    padding: 15px 48px;
}

.quote-btn {
    position: relative;
    padding-right: 45px; /* Увеличиваем правый отступ для места под стрелочку */
}

.quote-btn::after {
    content: "";
    position: absolute;
    right: 20px; /* Позиционируем стрелочку справа */
    top: 50%;
    transform: translateY(-50%) rotate(450deg); /* Поворачиваем стрелочку вправо */
    width: 12px;
    height: 6px;
    background-image: url('images/icon/arrow_up.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/* Header */
.header {
    position: relative;
    z-index: 10;
    background: transparent;
    max-width: 1300px;
    width: 100%;   
    align-self: center; 
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-list a {
    text-decoration: none;
    color: #252528;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.nav-list a:hover {
    color: #2760AB;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 23px;
}

.mobile-menu-toggle svg {
    width: 100%;
    height: 100%;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #EBEAEA;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
}

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

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 17px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    z-index: 10000;
}

.mobile-menu-close svg {
    width: 100%;
    height: 100%;
}

.mobile-nav-link {
    text-decoration: none;
    color: #252528;
    font-family: Manrope;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    display: block;
    padding: 1rem 0;
    transition: color 0.3s ease;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.mobile-menu-logo {
    margin-bottom: 3rem;
}

.mobile-logo-img {
    height: 50px;
    width: auto;
}

.mobile-nav-link:hover {
    color: #2760AB;
}

.mobile-quote-btn {
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}


/* Hero Section */
.hero {
    position: relative;
    height: 850px;
    display: flex;
    flex-direction: column;    
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-img-mobile{
    display: none;
}
.hero .container {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-content {
    width: 100%;
    max-width: 1300px;
    margin-top: 168px;
    z-index: 5;
    align-self: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #252528;
    line-height: normal;
    margin-bottom: 20px;
}

.hero-description {
    width: 506px;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: normal;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Capabilities Section */
.capabilities {
    padding: 80px 0;
}

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

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.capability-card {
    background: #EEF4F6;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
}

.capability-image {
    height: 303px;
    overflow: hidden;
}

.capability-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.capability-card:hover .capability-img {
    transform: scale(1.05);
}

.capability-content {
    padding: 0 20px 40px 20px
}

.capability-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%;
    color: #2B2B29;
    margin-bottom: 14px;
}

.capability-subtitle {
    color: #2B2B29;
    font-family: Manrope;
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 14px;
    font-weight: 500;
}

.capability-specs {
    list-style: none;
    padding: 0;
}

.capability-specs li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 20px;
    color: #2B2B29;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.capability-specs li::before {
    content: "•";
    color: #2B2B29;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 40px;
    margin: -40px 0 -40px 0;
}

.cta-cont::after {
    content: '';
    position: absolute;
    top: -34px;
    left: 20px;
    width: 210px;
    background-size: contain;
    height: 160%;
    background-image: url(images/3-shapeyour.png);
    background-repeat: no-repeat;
    z-index: 100;  
}

.cta-cont {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(0deg, #2760AB 0%, #2760AB 100%), radial-gradient(98.25% 88.94% at 50.09% 52.26%, #0F69E0 0%, #2760AB 99.04%), #2760AB;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    align-items: center;
    padding: 0 66px;    
}

.cta-cont::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: contain;
    height: 100%;
    background-image: url(images/texture.png);
    background-repeat: no-repeat;
    z-index: 100;    
}


.cta-content {
    text-align: center;
    margin: 30px;
    width: 800px;
    padding-left: 170px;
    z-index: 200;   
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: normal;
}

.cta-description {
    font-size: 18px;
    color: #FFF;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    aspect-ratio: 1 / 1; 
    display: flex;     
}

.gallery-item:hover {

}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.show-more-btn {
    position: relative;
    display: block;
    margin: -25px auto;
    padding: 15px 72px;
    border: none;             
    outline: 5px solid #FFF;   
}

/* Manufacturing Section */
.manufacturing {

}

.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.manufacturing-card {
    background: #EEF4F6;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.manufacturing-card:hover {
}

.manufacturing-image {
    aspect-ratio: 1 / 1; 
    display: flex;     
    overflow: hidden;
}

.manufacturing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.manufacturing-card:hover .manufacturing-img {
    transform: scale(1.05);
}

.manufacturing-content {
    padding: 20px 20px 40px 20px;
}

.manufacturing-title {
    font-size: 18px;
    font-weight: 800;
    color: #2B2B29;
    margin-bottom: 14px;
}

.manufacturing-description {
    color: #2B2B29;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}

/* WhatsApp Chat Section - Updated */
.whatsapp-chat {
    margin-top: 80px;
}

.whatsapp-content {
    background: #EEF4F6;
    display: grid;
    grid-template-columns: 1fr 635px;
    align-items: center;
    border-radius: 20px;
    overflow: visible;
}

.whatsapp-text{
    padding: 70px 30px 70px 60px;
}

.whatsapp-title {
    font-size: 36px;
    font-weight: 700;
    color: #2B2B29;
    margin-bottom: 10px;
    line-height: 140%;
}

.whatsapp-description {
    font-size: 18px;
    color: #2B2B29;
    margin-bottom: 30px;
}

.whatsapp-image {
    position: relative;
    overflow: visible;
    min-height: 100%; 
    background: linear-gradient(0deg, #2760AB 0%, #2760AB 100%), radial-gradient(51.72% 47.74% at 50.09% 52.26%, #0F69E0 0%, #2760AB 99.04%), #2760AB;
    border-radius: 0 20px 20px 0;
}

.whatsapp-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/texture.png);
    background-repeat: repeat;
    background-size: auto;
    z-index: 1;
}

.whatsapp-img {
    position: absolute;
    right: 130px;
    top: -60px;
    width: auto;
    height: calc(100% + 60px);
    z-index: 2;
}

/* Industries Section */
.industries {
    padding: 80px 0 0 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    background: #EEF4F6;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.industry-card:hover {
}

.industry-image {
    aspect-ratio: 1 / 1; 
    display: flex;     
    overflow: hidden;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-img {
    transform: scale(1.05);
}

.industry-content {
    padding: 2rem;
}

.industry-title {
    font-size: 18px;
    font-weight: 800;
    color: #2B2B29;
    margin-bottom: 14px;
}

.industry-description {
    color: #2B2B29;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}

/* Client Feedback Section */
.feedback {
    padding: 80px 0 0 0;
    background: #fff;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feedback-card {
    background: #EEF4F6;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-4px);
}

.feedback-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feedback-text {
    color: #2B2B29;
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 14px;
}

.feedback-author {
    color: #2B2B29;
    font-size: 18px;
    font-weight: 800;
    line-height: 140%;
}

/* Contact Form Section */
.contact-form {
    padding-top: 80px;
}

.contact-content {
    background: #EEF4F6;
    display: grid;
    grid-template-columns: 1fr 635px;
    align-items: center;
    border-radius: 20px;
    overflow: visible;
    gap: 60px;
}

.contact-text{
    padding: 70px 0 70px 60px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #2B2B29;
    margin-bottom: 10px;
    line-height: 140%;
}

.contact-description {
    font-size: 18px;
    color: #2B2B29;
    margin-bottom: 30px;
}

.contact-image {
    position: relative;
    overflow: visible;
    min-height: 100%; 
    background: linear-gradient(0deg, #2760AB 0%, #2760AB 100%), radial-gradient(51.72% 47.74% at 50.09% 52.26%, #0F69E0 0%, #2760AB 99.04%), #2760AB;
    border-radius: 0 20px 20px 0;    
}

.contact-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/texture.png);
    background-repeat: repeat;
    background-size: auto;
    z-index: 1;   
}

.contact-img {
    position: absolute;
    right: 30px;
    top: -60px;
    width: auto;
    height: calc(100% + 60px);
    z-index: 2;
}

/* Form styles  */
.form {
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-row:nth-child(2) {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-label {
    position: absolute;
    left: 14px;
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 400;
    color: #252528;
    background: #EEF4F6;
    padding: 0 8px;
    pointer-events: none;
    z-index: 1;
}

.form-input {
    padding: 15px 24px;
    border: 1px solid #878787;
    border-radius: 13px;
    font-size: 16px;
    font-family: inherit;
    background: #EEF4F6;
    transition: border-color 0.3s ease;
}

/* Стили для полей с ошибками */
.form-input.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

.form-input.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    margin-left: 14px;
    font-weight: 400;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-input.error + .form-label {
    color: #e74c3c;
}

.form-input.valid {
    border-color: #27ae60;
}

.form-input.valid:focus {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-input:focus {
    outline: none;
    border-color: #4A90E2;
}

.form-input:focus + .form-label {
    color: #4A90E2;
}

.form-input::placeholder {
    color: #C7C7C7;
    opacity: 1;
}

.form-footer {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 2rem;
}

.form-privacy {
    font-size: 14px;
    font-weight: 400;
    color: #2B2B29;
    max-width: 250px;
    margin-left: 20px;
}

.privacy-link {
    color: #2B2B29;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
}

.faq-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq-top-content {
    margin-bottom: 2rem;
}

.faq-helpful-info {
    font-size: 16px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #EEF4F6;
    padding: 10px 15px;
    border-radius: 300px;
}

.faq-helpful-info::before {
    content: "";
    background-image: url('images/icon/attention.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
}

.faq-text .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #252528;
    margin-bottom: 15px;
    line-height: 1.2;
}

.faq-text .section-description {
    font-size: 18px;
    color: #252528;
    line-height: 1.4;
    margin-bottom: 0;
}

.faq-help {
    background: #EEF4F6;
    border-radius: 16px;
    padding: 2rem;
    margin-top: auto;
}

.faq-help-title {
    font-size: 24px;
    font-weight: 700;
    color: #252528;
    margin-bottom: 10px;
}

.faq-help-description {
    color: #252528;
    margin-bottom: 20px;
    font-size: 18px;
}

.faq-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.btn-faq {
    padding: 12px 24px; 
}


.faq-content {
    flex: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #EEF4F6;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: #252528;
    margin: 0;
}

.faq-toggle {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 10px 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-toggle::before {
    content: "";
    width: 12px;
    height: 6px;
    background-image: url('images/icon/arrow_down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #2760AB;
}

.faq-item.active .faq-toggle::before {
    background-image: url('images/icon/arrow_up.svg');
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    color: #252528;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    font-size: 16px;
    max-width: 90%;
    margin-top: -20px;
}

/* Footer */
.footer {
    padding-bottom: 40px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-copyright,
.footer-address {
}

.footer-social {
    display: flex;
    gap: 5px;
    align-items: center;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@media (min-width: 1921px) {
    .hero-bg-img{
        object-fit: none;    
    }
    .hero-background {
        background: #ebe9ea;    
    }

    .cta-cont::after {
        top: -30px;
        left: 20px;
        height: 160%;
    }
}

@media (min-width: 768px) and (max-width: 1324px)  {
    .btn-white {
        padding: 15px 50px;    
    }

    .capability-content {
        padding: 20px 20px 40px 20px;
    }
    
    
    .contact-content {
        grid-template-columns: 1fr 49%;   
        gap: 30px;     
    }

    .contact-text {
        padding: 30px 0 30px 30px;    
    }

    section {
    }

    .hero, .manufacturing, .whatsapp-chat, .industries, .contact-form, .footer {
        padding-left: 30px;
        padding-right: 30px;        
    }

    .capabilities, .gallery, .feedback, .faq {
        padding: 80px 30px;    
    }

    .cta-section {
        padding: 30px;    
    }

    .manufacturing-grid, .capabilities-grid, .industries-grid, .feedback-grid {
        grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    }
    
}


@media (max-width: 1274px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 24px;
        padding-right: 20px;
    }

    .whatsapp-content {
        grid-template-columns: 1fr 40%;
        right:130px; 
    }

    .form-row:nth-child(2) {
        grid-template-columns: 1fr;
    }
    
    .section-description {
        font-size: 16px;     
        padding-right: 20px;          
    }
}

@media (min-width: 768px) and (max-width: 1024px)  {
    .contact-text {
        width: 45vw;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 17px;
    }
    
    .header {
        padding: 0 17px;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 25px 0;
    }
    
    .nav,
    .header .quote-btn:not(.mobile-quote-btn) {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .btn-white {
        padding: 14px 33px;
    }

    .hero {
        background-color: #EBEAEA;
        flex-direction: column;
        align-items: center;
        height: auto;
        min-height: auto;
        position: relative;
        display: flex;
        padding-bottom: 25px;
    }

    .hero-background {
        position: relative;
        background: #ebe9ea;
        width: 100%;
        height: auto;
        order: 1;
    }
    
    .hero-bg-img {
        display: none;
    }
    
    .hero-bg-img-mobile {
        display: block;
        position: relative;
        width: 100%;
        height: auto;
        object-fit: contain;
        top: -70px;
    }
    .hero-text {
        place-self: center;
    }

    .hero-content {
        order: 2;
        margin-top: -5rem;
        position: relative;
        z-index: 5;
        padding: 0 17px;        
    }

    .hero-description{
        text-align: center;
        margin-bottom:30px
    }
        
    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }
    
    .capabilities {
        padding: 50px 0 0 0;
    }
    
    .capability-specs {
        display: none;
    }

    .capabilities-grid {
        gap: 12px;
    }

    .capability-image {
        height: auto;
    }

    .capability-content{
        padding: 0 10px 20px 10px;
        text-align: center;        
    }

    .capability-title {
        margin-bottom: 7px; 
    }

    .capability-subtitle {
        margin-bottom: 0px;
    }

    .cta-section{
        padding: 0px;
        margin: 30px 0px;
        overflow: hidden;
    }

    .cta-cont::after {
        width: 182px;
        height: 182px;
        top: 20px;
        left: auto;
        right: 29px;       
    }

    .cta-cont{
        flex-direction: column;
        margin: 0 17px;
        padding: 30px 30px;
        align-items: start;
    }

    .cta-cont::before {
        background-size: auto;
        background-repeat: repeat;
    }

    .cta-content {
        text-align: left;
        padding-left: 0;
        margin: 0;  
        margin-bottom: 30px;
        width: 80%;      
    }

    .gallery {
        padding: 0;
    }
    
    .gallery-grid {
        gap: 12px;
    }

    .show-more-btn {
        padding: 9px 19px;
        border-radius: 10px;        
    }   

    .manufacturing {
        margin: 45px 0;        
    }

    .manufacturing-grid{
        gap: 12px;
    }

    .manufacturing-content {
        text-align: center;
        padding: 10px 10px 20px 10px;
    }    

    .manufacturing-description {
        font-size: 14px;
    }   

    .whatsapp-chat {
        margin-top: 30px;
    }   

    .whatsapp-content {
        display: flex;
        flex-direction: column-reverse;
        align-items: normal;
    }

    .whatsapp-text {
        padding: 30px 70px 40px;
        text-align: center;           
    }

    .whatsapp-title {
        font-size: 24px;    
    }

    .whatsapp-description {
        font-size: 14px;    
    }

    .whatsapp-image {
        min-height: 208px;
        border-radius: 20px 20px 0 0;        
    }

    .whatsapp-img{
        left: 15vw;    
    }    

    .industries {
        padding: 30px 0 0 0;
    }

    .industries-grid {
        gap: 12px;
    }
    
    .industry-card{
        border-radius: 10px;
    }

    .industry-content {
        padding: 10px 10px 20px 10px;
        text-align: center;        
    }

    .industry-description {
        font-size: 14px;    
    }

    .feedback {
    }

    .feedback-grid{
        gap: 15px;
    }

    .feedback-card{
        border-radius: 10px;
        padding: 10px;
    }
    
    .feedback-stars{
        margin-bottom: 10px;
    }

    .feedback-text{
        font-size: 16px;
        margin-bottom: 10px;        
    }

    .contact-form {
        padding-top: 30px;        
    }

    .contact-content {
        display: flex;
        flex-direction: column-reverse;
        align-items: normal;
        gap: 0px;
    }

    .contact-text {
        padding: 30px 30px;     
    }

    .contact-title {
        font-size: 24px;    
    }

    .contact-description {
        font-size: 14px;    
    }

    .contact-image {
        min-height: 208px;
        border-radius: 20px 20px 0 0;        
    }

    .contact-img{
        left: 15vw;
        top: -30px; 
        height: calc(100% + 30px);             
    }

    .form-row {
        margin-bottom: 20px;
    }

    .form-row:nth-child(2) {
        grid-template-columns: 1fr;
    }
    
    .form-footer {
        flex-direction: row;
        gap: 15px;
    }

    .form-privacy {
        margin-left: 0px;
        font-size: 12px;
    }

    .faq{
        padding: 30px 0;    
    }

    .faq-header {
        flex-direction: column;
        gap: 15px;
    }   

    .faq-text .section-title {
        font-size: 24px;    
    }

    .faq-text .section-description {
        font-size: 16px;            
    }

    .faq-top-content {
        margin-bottom: 15px;        
    }

    .faq-help {
        padding: 10px;    
    }

    .faq-help-title{
        font-size: 18px;            
    }

    .faq-help-description{
        font-size: 14px;            
    }    

    .faq-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .faq-question h3 {
        font-size: 16px;    
    }

    .faq-answer p {
        font-size: 14px;    
    }

    .faq-answer {
        padding: 0 30px 30px 30px;        
    }

    .footer-content {
        flex-direction: column;
    }
    .footer-text {
        text-align: center;    
    }
    .footer {
        padding-bottom: 30px;    
    }

    .footer-social{
        gap: 15px;    
    }
    .social-icon {
        width: 40px;
        height: 40px;    
    }
}



@media (max-width: 480px) {
    .capabilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(164px, 2fr)); 
    }

    .cta-cont::after {
        width: 142px; 
        height: 142px;        
        top: 120px;
        left: auto;
        right: -20px;          
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(164px, 2fr));         
    }

    .manufacturing-grid {
        grid-template-columns: repeat(auto-fit, minmax(164px, 2fr));         
    }  
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(164px, 2fr));         
    }        
}

@media (max-width: 400px) {
    .faq-buttons {
        flex-direction: column;
    }
}

