* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
    display: flex;
    flex-direction: column;
}

/* ---------- Navigation Styles ---------- */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.2s ease;
}

.main-nav {
    background-color: transparent;
    padding: 10px 0;
    transition: background-color 0.2s ease, backdrop-filter 0.2s ease;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 55px;
    width: auto;
    transition: max-height 0.3s ease;
}

.nav-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.header-scrolled .main-nav {
    background-color: rgba(51, 55, 44, 0.9);
    backdrop-filter: blur(5px);
}

.header-scrolled .logo {
    max-height: 40px;
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ---------- Swiper Slider Styles ---------- */
.swiper-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: white;
    text-align: left;
}

.text-overlay h2 {
    font-size: 3em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.text-overlay p {
    font-size: 1.5em;
    max-width: 60%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.swiper-slide-active .text-overlay h2,
.swiper-slide-active .text-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.swiper-button-next, .swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #FDF100;
}

/* ---------- Production Line Section Styles ---------- */
.production-line-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px;
    margin: 0 auto;
    max-width: 1200px;
    gap: 30px;
}

.production-line-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.production-line-photo {
    width: 100%;
    height: auto;
    margin-right: 75px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.production-line-description {
    width: 50%;
}

.production-line-description h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.production-line-description p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    justify-content: space-between;
}

.stat {
    text-align: center;
}

.stat h2 {
    font-size: 40px;
    margin: 0;
}

.stat p {
    font-size: 16px;
    margin: 5px 0 0;
}

.painting-process {
    background-color: #f0f0f0;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.process-title {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.step {
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    width: 200px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.step h3 {
    color: #019A45;
    margin: 0.5rem 0;
}

.step p {
    font-size: 0.9rem;
    color: #666;
}

.arrow {
    font-size: 1.5rem;
    color: #019A45;
}

/* ---------- Company Overview Section Styles ---------- */
.company-overview {
    background-color: #1d7f357c;
    padding: 50px 0;
    text-align: center;
}

.company-overview .overview-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.company-overview h2 {
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
}

.company-overview p {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
}

/* Product Example Button Styles */
.product-example-btn {
    background-color: #019A45;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.product-example-btn:hover {
    background-color: #017a36;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#modal-content {
    margin-top: 20px;
}

#modal-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* ---------- EDP Section Styles ---------- */
.edp-section {
    background-color: #c5c5c5;
    padding: 60px 10px;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.edp-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.edp-text {
    flex: 1;
    text-align: left;
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.edp-photo {
    flex: 1;
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.edp-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ---------- Customer Logos Section Styles ---------- */
.customer-logos {
    background-color: #f7f7f7;
    padding: 60px 20px;
}

.customer-logos h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

.swiper.customer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    position: relative;
}

.swiper-wrapper.custom-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide.custom-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 10px;
}

.logo-container-cust {
    width: 100%;
    max-width: 140px;
    aspect-ratio: 1;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-container-cust img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.caption{
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 15, 152, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    padding-top: 70%;
    transition: 0.4s;
}
.logo-container-cust:hover .caption{
    opacity: 1;
    padding-top: 0;
}

/* ---------- About Section Styles ---------- */
.about-section {
    padding: 80px 0;
    background-color: #f7f7f7;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.section-title {
    font-size: 2.5em;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.vision-mission-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
}

.vision-box, .mission-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    width: 45%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: translateX(0);
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.vision-box h3, .mission-box h3 {
    font-size: 2em;
    color: #019A45;
    margin-bottom: 15px;
}

.objective-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.objective-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.objective-list li:hover {
    transform: translateX(10px);
}

/* Animation classes (continued) */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
}

.animate-box {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-list-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-list-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Contact Section Styles ---------- */
.contact-us-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.address-info, .contact-info {
    width: 48%;
}

.address-info h2 {
    font-size: 2.5em;
    color: #019A45;
    margin-bottom: 15px;
}

.address-info p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}

.address-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.address-info ul li {
    display: flex;
    margin-bottom: 8px;
    align-items: center;
    color: #666;
    font-size: 1.1em;
}

.address-info ul li i {
    margin-right: 12px;
    color: #019A45;
    width: 12px;
}

.contact-info form {
    display: flex;
    flex-direction: column;
}

.contact-info label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.contact-info input,
.contact-info textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.contact-info textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info button {
    background-color: #019A45;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.contact-info button:hover {
    background-color: #017a35;
}

/* ---------- Find Us Section Styles ---------- */
.find-us-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    color: #333;
}

.find-us-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.find-us-text {
    flex: 1;
    margin-right: 40px;
}

.find-us-text h2 {
    color: #019A45;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.find-us-text p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.find-us-button {
    display: inline-block;
    background-color: #019A45;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.find-us-button:hover {
    background-color: #1557b0;
}

.find-us-map {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.find-us-map iframe {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.find-us-map iframe:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ---------- Footer Styles ---------- */
.footer {
    background-color: #33372C;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    font-size: 0.9em;
    margin-top: auto;
}

.footer p {
    margin: 0;
}

/* ---------- Utility Classes ---------- */
.hidden {
    display: none;
}

.visible {
    display: block;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Service Section */
.service-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.service-section .section-title {
    color: #019A45;
    font-size: 2.2em;
    margin-top: 50px;
    margin-bottom: 20px;
}

.service-intro {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.service-details h2 {
    color: #009245;
    font-size: 1.8em;
    margin: 40px 0 20px;
}

.service-details p {
    font-size: 1em;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.benefits-list li {
    background-color: #f0f0f0;
    color: #333;
    padding: 15px;
    margin: 10px 0;
    border-left: 5px solid #019A45;
    border-radius: 4px;
    font-size: 1.1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefits-list li.visible {
    opacity: 1;
    transform: translateX(0);
}

/* submit button */
.btn{
    background: #f5f5f5;
    color: #212121;
    padding: 14px 25px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    border: 0;
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn.dark-btn{
    background: #212EA0;
    color: #fff;
}

/* Form section */
.contact-info form input, .contact-info form textarea{
    display: block;
    width: 100%;
    background: #EBECFE;
    padding: 15px;
    border: 0;
    outline: 0;
    margin-bottom: 15px;
    margin-top: 5px;
    resize: none;
}



/* Product Showcase Section */
.product-showcase {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.product-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 1.5em;
    color: #333;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background-color: #019A45;
    color: white;
    text-align: center;
}

.cta-section p {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cta-section p.visible {
    opacity: 1;
    transform: translateY(-2);
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #019A45;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #FDF100;
    color: #019A45;
    transform: scale(1.05);
}

.contact-options {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.contact-options.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #019A45;
    padding: 12px 25px;
    margin: 0 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-option:hover {
    background-color: #FDF100;
    transform: scale(1.05);
}

.contact-option i {
    margin-right: 10px;
    font-size: 1.2em;
}

.hidden {
    display: none;
}

/* ---------- Responsive Styles ---------- */
@media screen and (max-width: 1024px) {
    .find-us-container {
        flex-direction: column;
        text-align: center;
    }

    .find-us-text {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .find-us-map {
        width: 100%;
        justify-content: center;
    }

    .find-us-map iframe {
        width: 100%;
        max-width: 600px;
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .navbar {
        flex-direction: column;
        padding: 15px;
    }

    .logo-container {
        margin-bottom: 10px;
    }

    .production-line-section {
        flex-direction: column;
        padding: 20px;
    }

    .production-line-left, .production-line-description {
        width: 100%;
    }

    .production-line-photo {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .process-steps {
        flex-direction: column;
    }
      
    .arrow {
        transform: rotate(90deg);
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .edp-content {
        flex-direction: column;
    }

    .edp-text, .edp-photo {
        width: 100%;
        transform: translateX(0);
    }

    .edp-photo img {
        margin-left: 0;
        margin-top: 20px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .find-us-map iframe {
        height: 350px;
    }

    .address-info, .navigation-links, .contact-info {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .address-info p{
        font-size: 15px;
    }
    .address-info ul li{
        font-size: 14px;
        text-align: left;
    }

    .navigation-links h3, .contact-info h3,
    .navigation-links li, .contact-info li {
        margin-left: 0;
    }

    .text-overlay h2 {
        font-size: 2em;
    }

    .text-overlay p {
        font-size: 1em;
        max-width: 80%;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .swiper.customer {
        padding: 20px 30px;
    }

    .swiper-slide.custom-slide {
        padding: 5px;
    }

    .logo-container-cust {
        max-width: 100px;
    }

    .main-nav {
        background-color: rgba(51, 55, 44, 0.9);
    }

    .hamburger-menu {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(51, 55, 44, 0.9);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
        opacity: 0;
    }

    .nav-links.active {
        max-height: 300px;
        padding: 20px 0;
        opacity: 1;
    }

    .nav-links li {
        margin: 10px 0;
        transform: translateY(-20px);
        margin-left: 12px;
        opacity: 0;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    }

    .nav-links.active li {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }

    .section-title {
        font-size: 24px;
    }

    .service-intro,
    .service-details p,
    .benefits-list li {
        font-size: 15px;
    }

    .product-item {
        width: 70%;
    }

    .cta-title {
        font-size: 2em;
    }

    .cta-description {
        font-size: 1em;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-option {
        width: 80%;
        max-width: 250px;
        margin: 10px 0;
    }

    .cta-button {
        width: 80%;
        max-width: 250px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .logo-text {
        font-size: 1em;
    }

    .logo-img {
        width: 40px;
    }

    .logo {
        max-height: 40px;
    }
    
    .find-us-map iframe {
        height: 300px;
    }

    .logo-container-cust {
        width: 80px;
        height: 80px;
    }

    .swiper.customer {
        padding: 20px 20px;
    }

    .logo-container-cust {
        max-width: 80px;
    }

    .hero-content {
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .vision-box, .mission-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .vision-mission-container {
        flex-direction: column;
    }

    .section-title {
        font-size: 22px;
    }

    .product-item {
        width: 60%;
    }

    .service-intro,
    .service-details p,
    .benefits-list li {
        font-size: 14px;
    }

    .cta-title {
        font-size: 1.7em;
    }

    .cta-description {
        font-size: 0.6em;
    }

    .contact-option, .cta-button {
        width: 60%;
        max-width: 60%;
    }
}

/* Addressing specific warnings */
.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.swiper-scrollbar {
    -ms-touch-action: none;
    touch-action: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

.scroll-trigger {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-trigger.visible {
    opacity: 1;
    transform: translateY(0);
}