/* Reset and Base Styles */


.section-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Times New Roman', serif;
}

/* Hero Section with Swiper */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title i {
    margin-right: 10px;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s;
}

.hero-title i:hover {
    transform: scale(1.1);
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 1px;
}

.hero-certifications {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Swiper Navigation */
.hero-swiper .swiper-pagination {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff4444;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 隐藏 Swiper 默认的文字 */
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    display: none;
}

/* Font Awesome 图标样式 */
.hero-swiper .swiper-button-next i,
.hero-swiper .swiper-button-prev i {
    font-size: 20px;
    color: #fff;
    line-height: 1;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-swiper .swiper-button-next:hover i,
.hero-swiper .swiper-button-prev:hover i {
    color: #fff;
}

.hero-swiper .swiper-button-next {
    right: 20px;
}

.hero-swiper .swiper-button-prev {
    left: 20px;
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background-color: #fff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    grid-auto-rows: 1fr;
}

.advantage-item {
    position: relative;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px 40px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}

.advantage-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.advantage-icon {

    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.advantage-icon img {
    width: 100%;
    height: 100;
    object-fit: contain;
}

.advantage-title {
    font-family: Roboto;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 4px;
}

.advantage-desc {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    padding-left: 0;
    margin: 0;
}

.advantages-actions {
    text-align: center;
    margin-top: 40px;
}

.read-more-btn {
    font-family: Roboto;
    display: inline-block;
    position: relative;
    padding: 12px 40px;
    background: #7a0812;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #aa0909;
    transition: width 0.4s ease;
    z-index: -1;
}

.read-more-btn:hover::before {
    width: 100%;
}

.read-more-btn:hover {
    color: #fff;
}

/* Categories Section */
.categories-section {
    padding: 80px 0 100px;
    background-color: #f5f5f5;
}

.categories-section .section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-item {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category_dec {
    padding-top: 16px;
    position: relative;
    left: 0;
    top: 0;
    display: flex;
    width: 83%;
    flex-direction: column;
    margin: auto;
}

.category-item .category-title {
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    text-align: center;
}

.category-item .category-desc {
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    text-align: center;
    font-size: 14px;
    color: #6F6F6F;
    letter-spacing: 0;
    line-height: 1.5;
}

.category-btn {
    font-weight: 700;
    font-size: 18px;
    color: #7a0812;
    border: 1px solid #7a0812;
    margin: 20px auto 40px;
    width: 166px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-btn:hover {
    background: #b30022;
    color: #fff;
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats Icons Section */
.stats-icons-section {
    background-color: #e6e6e6;
    padding: 40px 0;
}

.stats-icons-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    flex: 1 1 14%;
    min-width: 150px;
    gap: 15px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: translateY(0);
}

.stat-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-content .stat-number,
.stat-content .stat-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.2;
}

.stat-line {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 900px) {
    .stats-icons-wrapper {
        justify-content: center;
    }

    .stat-item {
        flex: 1 1 30%;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .stat-item {
        flex: 1 1 100%;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .stat-content {
        align-items: center;
    }

    .stat-icon {
        margin-bottom: 10px;
    }
}

/* About Service Section */
.about-service-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-service-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "image1 what"
        "about  image2";
    column-gap: 80px;
    row-gap: 80px;
    align-items: start;
}

.about-image-1 {
    grid-area: image1;
}

.about-what-we-do {
    grid-area: what;
    margin-top: 40px;
}

.about-our-service {
    grid-area: about;
}

.about-image-2 {
    grid-area: image2;
    position: relative;
    top: -30%;
}

.about-text .section-title {
    margin-bottom: 10px;
    text-align: left;
}

.about-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text .read-more-btn {
    margin-top: 20px;
}

.about-image .service-image {
    position: relative;
    width: 100%;
    /* height: 420px; */
    overflow: hidden;
}

.about-image .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-pillars {
    display: flex;
    gap: 0;
    margin: 25px 0 35px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding-top: 25px;
    padding-bottom: 25px;
}

.pillar-item strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

.pillar-item span {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pillar-item {
    padding: 0 20px;
    border-right: 1px solid #e0e0e0;
}

.pillar-item:last-child {
    border-right: none;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 30px;
    margin: 10px 0 30px;
}

.service-feature-box {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
    border: 1px solid #e0e0e0;
    padding: 14px 18px;
    background-color: #ffffff;
}

.service-feature-box .feature-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #444;
    background-color: #444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    position: relative;

}

.service-feature-box .feature-dot:after {
    content: "›";
    font-size: 20px;
    color: #fff;
    line-height: 1;
    font-weight: bold;
    position: relative;
    top: -2px;
}

.service-feature-box span:last-child {
    flex: 1;
}



/* Solutions Section */
.solutions-section {
    position: relative;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.solutions-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('/static/picture/1-1920-1920.webp');
    transition: background-image 0.5s ease;
    z-index: 0;
}

.solutions-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.solutions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.solutions-left {
    background: rgba(60, 60, 60, 0.75);
    padding: 50px 40px;
    max-width: 500px;
}

.solutions-title {
    font-family: 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.solutions-divider {
    width: 60px;
    height: 2px;
    background: #fff;
    margin: 0 0 25px 0;
}

.solutions-subtitle {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.solutions-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.solution-item {
    background: #fff;
    padding: 20px 25px;
    width: 325px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.solution-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    background-color: #7a0812;
    transform: translateX(5px);
}

.solution-item:hover .solution-name {
    color: #fff;
}

.solution-item:hover .solution-desc {
    color: #fff;
}

.solution-name {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 6px;
}

.solution-desc {
    font-size: 16px;
    text-align: center;
    color: #666;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .solutions-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .solutions-left {
        max-width: 100%;
    }
}

/* Showroom Section */
.showroom-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.showroom-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Blogs Section */
.blogs-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.blog-item {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid #7a0812;
}

.blog-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    background-color: #aaa;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-date i {
    color: #fff;
    font-size: 16px;
    margin-top: -2px;
}

.blog-date span {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.blog-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    box-orient: vertical;
}

.blog-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-read-more {
    display: inline-block;
    color: #7a0812;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    align-self: flex-end;
}



/* Quotation Section */
.quotation-section {
    position: relative;
    padding: 100px 0;
    min-height: 700px;
    overflow: hidden;
    background-image: url('/static/picture/ABOUT.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

.quotation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.quotation-section .container {
    position: relative;
    z-index: 1;
}

.quotation-form-wrapper {
    max-width: 800px;
    margin-left: auto;
    background: rgba(240, 240, 240, 0.6);
    padding: 50px 40px;
}

.quotation-title {
    font-family: 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 35px 0;
    text-align: left;
}

.quotation-form {
    width: 100%;
}

.form-columns {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.form-column {
    display: flex;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: 1px solid #7a0812;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: left;
    margin-top: 10px;
}

.submit-btn {
    padding: 12px 40px;
    background: #aaa;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: none;
    width: 100%;
}

.submit-btn:hover {
    background: #666;
}

@media (max-width: 768px) {
    .form-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quotation-form-wrapper {
        margin: 0 auto;
        padding: 40px 30px;
    }
}

/* Feedback form (feedback.htm) styles for index quotation section */
.quotation-form #feedbackForm {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.quotation-form #feedbackForm .form-group {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
    gap: 8px;
}

/* First four fields 50%, message full width */
.quotation-form #feedbackForm .form-group:nth-child(5) {
    width: 100%;
}


/* Inputs/textarea */
.quotation-form #feedbackForm .form-group input,
.quotation-form #feedbackForm .form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.quotation-form #feedbackForm .form-group input::placeholder,
.quotation-form #feedbackForm .form-group textarea::placeholder {
    color: #999;
}

.quotation-form #feedbackForm .form-group input:focus,
.quotation-form #feedbackForm .form-group textarea:focus {
    outline: none;
    border: 1px solid #7a0812;
}

.quotation-form #feedbackForm .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit */
.quotation-form #feedbackForm .form-submit {
    width: 100%;
    text-align: left;
    margin-top: 10px;
}

.quotation-form #feedbackForm .btn-submit-feedback {
    padding: 12px 40px;
    background: #aaa;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: none;
    width: 100%;
}

.quotation-form #feedbackForm .btn-submit-feedback:hover {
    background: #666;
}

@media (max-width: 1024px) {
    .quotation-form #feedbackForm {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quotation-form #feedbackForm {
        grid-template-columns: 1fr;
    }
}

/* Mobile responsiveness overrides */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-section {
        height: 60vh;
        min-height: 500px;
        max-height: 600px;
    }
    
    .hero-swiper {
        height: 100%;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 30px;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .advantages-section {
        padding: 80px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-item {
        padding: 20px 30px;
        min-height: auto;
    }
    
    .advantage-title {
        font-size: 22px;
    }
    
    .advantage-desc {
        font-size: 15px;
    }
    
    .about-service-section {
        padding: 80px 0;
    }
    
    .about-service-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image1"
            "what"
            "about"
            "image2";
        gap: 40px;
    }
    
    .about-image-2 {
        top: 0;
    }
    
    .about-text .section-title {
        font-size: 28px;
    }
    
    .about-subtitle,
    .service-text {
        font-size: 16px;
    }
    
    .service-pillars {
        flex-direction: column;
        gap: 20px;
    }
    
    .pillar-item {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 0;
    }
    
    .pillar-item:last-child {
        border-bottom: none;
    }
    
    .service-feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .solutions-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .solutions-left {
        padding: 40px 30px;
    }
    
    .solutions-title {
        font-size: 36px;
    }
    
    .solution-item {
        width: 100%;
    }
    
    .blogs-section {
        padding: 80px 0;
    }
    
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .quotation-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        height: 50vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero-swiper {
        height: 100%;
    }
    
    .hero-slide {
        height: 100%;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 20px;
    }
    
    .hero-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .advantages-section,
    .categories-section,
    .stats-icons-section,
    .about-service-section,
    .solutions-section,
    .blogs-section,
    .quotation-section {
        padding: 60px 0;
    }
    
    .advantages-grid,
    .categories-grid,
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-item {
        padding: 18px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-title {
        font-size: 20px;
    }
    
    .advantage-desc {
        font-size: 14px;
    }
    
    .categories-section .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .category-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .stats-icons-wrapper {
        gap: 20px;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 10px);
        min-width: auto;
    }
    
    .about-service-wrapper {
        gap: 30px;
    }
    
    .about-text .section-title {
        font-size: 24px;
    }
    
    .about-subtitle,
    .service-text {
        font-size: 15px;
    }
    
    .solutions-title {
        font-size: 32px;
    }
    
    .solutions-left {
        padding: 30px 20px;
    }
    
    .solution-item {
        padding: 18px 20px;
    }
    
    .solution-name {
        font-size: 18px;
    }
    
    .solution-desc {
        font-size: 14px;
    }
    
    .blog-image {
        height: 220px;
    }
    
    .blog-content {
        padding: 20px 16px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-desc {
        font-size: 13px;
    }
    
    .quotation-form-wrapper {
        padding: 30px 20px;
    }
    
    .quotation-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 28px;
    }
    
    .hero-section {
        height: 45vh;
        min-height: 350px;
        max-height: 450px;
    }
    
    .hero-swiper {
        height: 100%;
    }
    
    .hero-slide {
        height: 100%;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 15px;
    }
    
    .hero-swiper .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-title i {
        font-size: 20px;
        margin-right: 6px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .hero-stats {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .stat-item {
        min-width: auto;
        flex: 1 1 calc(50% - 6px);
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .hero-certifications {
        gap: 8px;
    }
    
    .cert-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .advantages-section,
    .categories-section,
    .stats-icons-section,
    .about-service-section,
    .solutions-section,
    .blogs-section,
    .quotation-section {
        padding: 40px 0;
    }
    
    .advantage-item {
        padding: 16px 18px;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
    }
    
    .advantage-title {
        font-size: 18px;
    }
    
    .advantage-desc {
        font-size: 13px;
    }
    
    .categories-section .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 11px;
    }
    
    .category_dec {
        width: 90%;
    }
    
    .category-title {
        font-size: 15px;
    }
    
    .category-desc {
        font-size: 13px;
    }
    
    .stats-icons-wrapper {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-item {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .about-text .section-title {
        font-size: 22px;
    }
    
    .about-subtitle,
    .service-text {
        font-size: 14px;
    }
    
    .pillar-item strong {
        font-size: 22px;
    }
    
    .pillar-item span {
        font-size: 14px;
    }
    
    .solutions-title {
        font-size: 28px;
    }
    
    .solutions-left {
        padding: 25px 18px;
    }
    
    .solution-item {
        padding: 16px 18px;
    }
    
    .solution-name {
        font-size: 16px;
    }
    
    .solution-desc {
        font-size: 13px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-title {
        font-size: 16px;
    }
    
    .blog-desc {
        font-size: 12px;
    }
    
    .quotation-form-wrapper {
        padding: 25px 15px;
    }
    
    .quotation-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .read-more-btn,
    .category-btn,
    .quotation-form .submit-btn,
    .quotation-form #feedbackForm .btn-submit-feedback {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}