/* Page-specific styles */

/* Active navigation state */
.main-nav a.active {
    color: #1a3a5f;
    font-weight: 600;
}

/* Page Hero */
.page-hero {
    height: 66.67vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    margin-top: 70px;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 33, 55, 0.9), rgba(26, 58, 95, 0.8)),
                url('../images/header-bg.svg') center/cover;
    z-index: -1;
}

/* Specific page hero backgrounds */
.why-aplus-page .page-hero-background {
    background: url('images/WHYAPLUS.png') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    transform: translateZ(0);
    will-change: transform;
}

.why-aplus-page .page-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.cutting-tools-page .page-hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cutting-tools-page .page-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: white;
    opacity: 0.9;
    max-width: 600px;
    margin: 10px auto 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.cutting-tools-page .page-hero-content .sharpest {
    font-size: 1.33em;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Cutting Tools Page Hero */
.cutting-tools-page .page-hero {
    height: 66.67vh;
}

/* Instruments Page Hero */
.products-page .page-hero {
    height: 66.67vh;
}

.products-page .page-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Aplus Technologies Page Hero */
.aplus-tech-page .page-hero {
    height: 66.67vh;
}

.aplus-tech-page .page-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.aplus-tech-page .page-hero-background {
    background: linear-gradient(rgba(12, 26, 44, 0.9), rgba(26, 58, 95, 0.8)),
                url('../images/products-bg.svg') center/cover;
}

.cutting-tools-page .page-hero-background {
    background: url('../images/Products-CT1.png') center center/cover no-repeat;
}

.capabilities-page .page-hero {
    height: 500px !important;
}

.capabilities-page .page-hero-background {
    background-image: url('images/Capabilities.png') !important;
    background-position: center center !important;
    background-size: 130% auto !important;
    background-repeat: no-repeat !important;
    min-width: 100% !important;
    min-height: 100% !important;
}

.about-page .page-hero-background {
    background: linear-gradient(rgba(13, 33, 55, 0.9), rgba(26, 58, 95, 0.8)),
                url('../images/about-bg.svg') center/cover;
}

.contact-page .page-hero-background {
    background: linear-gradient(rgba(15, 33, 51, 0.9), rgba(26, 58, 95, 0.8)),
                url('../images/contact-bg.svg') center/cover;
}

.page-hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

/* Intro Section */
.intro-section {
    text-align: center;
    margin-bottom: 80px;
}

.intro-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Capabilities Grid Layout */
.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

/* Responsive for capabilities-grid */
@media (max-width: 992px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .capabilities-cards {
        width: 100%;
    }
}

/* Introduction Grid Layout */
.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

/* Responsive for intro-grid */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.intro-content {
    max-width: none;
    margin: 0;
    text-align: left;
}

.intro-content p {
    text-align: left;
}

.product-bullet-list {
    text-align: left;
}

.intro-image {
    align-self: center;
}

/* Capabilities Cards */
.capabilities-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.capability-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.capability-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.capability-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    min-height: 60px;
}

.capability-header h3 {
    font-size: 0.7rem;
    color: #1a3a5f;
    margin: 0;
    font-weight: 700;
    line-height: 17px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
}



.capability-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border-radius: 50%;
}

.toggle-icon {
    font-size: 1.2rem;
    color: #1a3a5f;
    font-weight: bold;
    transition: color 0.3s ease;
}

.capability-card.expanded .toggle-icon {
    color: #1a3a5f;
}

.capability-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.capability-card.expanded .capability-content {
    max-height: 500px;
    padding: 15px 25px 8px 25px;
}

.capability-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.capability-list li:before {
    content: "•";
    color: #1a3a5f;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.capability-list li:last-child {
    border-bottom: none;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 400px;
    }

    .capabilities-page .page-hero {
        height: 50vh;
        min-height: 350px;
    }

    .capabilities-page .page-hero-background {
        background-size: cover !important;
        background-position: center center !important;
    }

    .why-aplus-page .page-hero-background {
        background-size: cover;
        background-position: center center;
    }

    .intro-section {
        text-align: left;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-content p {
        max-width: 100%;
        text-align: left;
    }

    .capabilities-cards {
        width: 100%;
    }

    .capability-card {
        width: 100%;
        box-sizing: border-box;
    }

    .capability-header {
        height: auto;
        min-height: 40px;
        padding: 15px 20px;
    }

    .capability-header h3 {
        font-size: 1rem;
        white-space: normal;
        line-height: 1.4;
    }

    .capability-card.expanded .capability-content {
        max-height: 800px;
        padding: 20px;
    }

    .capability-columns {
        grid-template-columns: 1fr;
    }

    .capability-list {
        width: 100%;
        box-sizing: border-box;
    }

    .capability-list li {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding-left: 30px;
    }

    .carousel-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .page-hero {
        height: 50vh;
        min-height: 350px;
    }

    .capabilities-page .page-hero {
        height: 50vh;
        min-height: 300px;
    }

    .capabilities-page .page-hero-background {
        background-size: cover !important;
        background-position: center center !important;
    }

    .why-aplus-page .page-hero-background {
        background-size: cover;
        background-position: center center;
    }

    .intro-section {
        text-align: left;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-content p {
        max-width: 100%;
        text-align: left;
    }

    .capabilities-cards {
        width: 100%;
    }

    .capability-card {
        width: 100%;
        box-sizing: border-box;
    }

    .capability-header {
        padding: 12px 15px;
        min-height: 36px;
    }

    .capability-header h3 {
        font-size: 0.95rem;
    }

    .capability-card.expanded .capability-content {
        max-height: 1000px;
        padding: 15px;
    }

    .capability-columns {
        grid-template-columns: 1fr;
    }

    .capability-list {
        width: 100%;
        box-sizing: border-box;
    }

    .capability-list li {
        font-size: 0.85rem;
        padding: 6px 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding-left: 30px;
    }

    .carousel-container {
        height: 250px;
    }
}

/* Advantages Section */
.advantages-section {
    margin-bottom: 80px;
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.advantage-card {
    flex: 0 0 calc(33.333% - 27px);
    max-width: calc(33.333% - 27px);
}

@media (max-width: 1199px) {
    .advantage-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .advantage-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.advantage-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #1a3a5f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a3a5f;
    font-weight: 600;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

/* Manufacturing Section */
.manufacturing-section {
    margin-bottom: 80px;
}

.manufacturing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.manufacturing-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 20px;
}

.manufacturing-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.manufacturing-features {
    list-style: none;
    margin-bottom: 30px;
}

.manufacturing-features li {
    padding: 10px 0;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.manufacturing-features li:last-child {
    border-bottom: none;
}

.manufacturing-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Client Success Section */
.client-success-section {
    margin-bottom: 80px;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.success-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #1a3a5f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.success-item h3 {
    font-size: 1.4rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.success-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.success-category, .success-duration {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #666;
    border: 1px solid #e0e0e0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a3a5f, #2a4a7f);
    color: white;
    padding: 80px 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #1a3a5f;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #1a3a5f;
}

/* Product Categories */
.product-categories {
    margin-bottom: 80px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.category-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 30px;
}

.category-content h3 {
    font-size: 1.5rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.product-features li:last-child {
    border-bottom: none;
}

/* Product Bullet List */
.product-bullet-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
}

.product-bullet-list li {
    color: #1a3a5f;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.product-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a3a5f;
    font-weight: bold;
    font-size: 1.1em;
}

/* Product List Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.product-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a3a5f;
    margin-bottom: 10px;
}

.product-item p {
    color: #666;
    line-height: 1.6;
}

/* Capabilities List Styles */
.capabilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.capability-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.capability-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a3a5f;
    margin-bottom: 12px;
}

.capability-item p {
    color: #666;
    line-height: 1.6;
}

/* Technology Sections */
.tech-platforms {
    margin-bottom: 80px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tech-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3a5f, #2a4a7f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.tech-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a3a5f;
    font-weight: 600;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.tech-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.tech-features li:last-child {
    border-bottom: none;
}

/* Innovation Process */
.innovation-process {
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a3a5f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.25rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Technical Capabilities */
.tech-capabilities {
    margin-bottom: 80px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.capability-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #1a3a5f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.capability-item h3 {
    font-size: 1.25rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.capability-item p {
    color: #666;
    line-height: 1.6;
}

/* Technical Specifications */
.tech-specs {
    margin-bottom: 80px;
}

.specs-content {
    margin-top: 50px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.spec-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.spec-item h3 {
    font-size: 1.25rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.spec-item p {
    color: #666;
    line-height: 1.6;
}

/* Quality Standards */
.quality-standards {
    margin-bottom: 80px;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.quality-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 20px;
}

.quality-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.quality-list {
    list-style: none;
    margin-bottom: 30px;
}

.quality-list li {
    padding: 10px 0;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.quality-list li:last-child {
    border-bottom: none;
}

.quality-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Future Technologies */
.future-tech {
    margin-bottom: 80px;
}

.future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.future-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 20px;
}

.future-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.future-initiatives {
    list-style: none;
    margin-bottom: 30px;
}

.future-initiatives li {
    padding: 10px 0;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.future-initiatives li:last-child {
    border-bottom: none;
}

.future-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Core Capabilities */
.core-capabilities {
    margin-bottom: 80px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.capability-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.capability-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3a5f, #2a4a7f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-icon img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.capability-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a3a5f;
    font-weight: 600;
}

.capability-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.capability-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.capability-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.capability-features li:last-child {
    border-bottom: none;
}

/* Materials Expertise */
.materials-expertise {
    margin-bottom: 80px;
}

.materials-content {
    margin-top: 50px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.material-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #1a3a5f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.material-item h3 {
    font-size: 1.25rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.material-item p {
    color: #666;
    line-height: 1.6;
}

/* Quality Systems */
.quality-systems {
    margin-bottom: 80px;
}

.quality-features {
    list-style: none;
    margin-bottom: 30px;
}

.quality-features li {
    padding: 10px 0;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.quality-features li:last-child {
    border-bottom: none;
}

/* Equipment Section */
.equipment-section {
    margin-bottom: 80px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.equipment-category {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.equipment-category h3 {
    font-size: 1.4rem;
    color: #1a3a5f;
    margin-bottom: 20px;
    font-weight: 600;
}

.equipment-category ul {
    list-style: none;
    padding: 0;
}

.equipment-category ul li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.equipment-category ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #1a3a5f;
    font-weight: bold;
}

.equipment-category ul li:last-child {
    border-bottom: none;
}

/* Company Overview */
.company-overview {
    margin-bottom: 80px;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.overview-stats {
    align-self: start;
    margin-top: 0;
}

.overview-image {
    align-self: flex-start;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.overview-image .key-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 0;
}



.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.key-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.overview-image .stat-item {
    padding: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mission & Vision */
.mission-vision {
    margin-bottom: 80px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #1a3a5f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #1a3a5f;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #0d2137;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    margin-bottom: 80px;
}

.leadership-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 30px auto 50px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.leader-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.leader-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info h3 {
    font-size: 1.25rem;
    color: #1a3a5f;
    margin-bottom: 10px;
    font-weight: 600;
}

.leader-title {
    color: #2a4a7f;
    font-weight: 500;
    margin-bottom: 15px;
}

.leader-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3a5f, #2a4a7f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.value-item h3 {
    font-size: 1.3rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Global Presence */
.global-presence {
    margin-bottom: 80px;
}

.presence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.presence-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 20px;
}

.presence-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.presence-features {
    list-style: none;
    margin-bottom: 30px;
}

.presence-features li {
    padding: 10px 0;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.presence-features li:last-child {
    border-bottom: none;
}

.presence-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* News Page Styles */
.featured-news {
    margin-bottom: 80px;
}

.featured-article {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 40px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
}

.article-category {
    background: #1a3a5f;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.featured-content h3 {
    font-size: 1.8rem;
    color: #1a3a5f;
    margin-bottom: 20px;
    font-weight: 600;
}

.featured-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.read-more {
    color: #1a3a5f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2a4a7f;
}

/* News Grid */
.news-grid-section {
    margin-bottom: 80px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
    width: 100%;
}

/* Responsive layout for news grid */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.news-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-header {
    padding: 20px 30px 15px 30px;
    border-bottom: 1px solid #f0f0f0;
}

.news-header h3 {
    font-size: 1rem;
    color: #1a3a5f;
    margin: 0;
    font-weight: 600;
}

.news-body {
    display: flex;
    flex: 1;
    align-items: flex-start;
}

.news-image {
    width: 40%;
    min-width: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    transition: transform 0.3s ease;
}

.news-content {
    padding: 30px;
    padding-top: 15px;
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.news-content h3 {
    font-size: 1.3rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-content .article-meta {
    margin-bottom: 10px;
    margin-top: 0;
}

.news-content .news-description {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: max-height 0.3s ease;
}

.news-content .news-description.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    color: #1a3a5f;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.95rem;
    padding: 8px 12px;
    min-height: 44px;
    min-width: 44px;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #2d5a8a;
}

/* Industry News */
.industry-news {
    margin-bottom: 80px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #1a3a5f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.industry-item h3 {
    font-size: 1.25rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.industry-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #1a3a5f, #2a4a7f);
    color: white;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 80px;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group button {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    background: white;
    color: #1a3a5f;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-group button:hover {
    background: #f8f9fa;
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-main {
    margin-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

/* Contact Introduction */
.contact-intro-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 25px;
}

.contact-intro-section h2 {
    font-size: 2.5rem;
    color: #1a3a5f;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Contact Form */
.contact-form-section h3 {
    font-size: 1.8rem;
    color: #1a3a5f;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form-wrapper {
    margin-top: 0;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: #1a3a5f;
    margin-bottom: 30px;
    font-weight: 600;
}



.contact-form {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.form-group {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: -5px;
    color: #333;
    font-weight: 500;
}

.form-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a3a5f;
    box-shadow: 0 0 0 3px rgba(26, 58, 95, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.contact-form .btn {
    width: 100%;
    min-width: 120px;
    min-height: 44px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.contact-form .btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Contact Information */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card,
.quick-links-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.contact-info-card h3,
.quick-links-card h3 {
    font-size: 1.5rem;
    color: #1a3a5f;
    margin-bottom: 25px;
    font-weight: 600;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a3a5f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon img {
    width: 25px;
    height: 25px;
    filter: invert(1);
}

.info-content h4 {
    font-size: 1.1rem;
    color: #1a3a5f;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.quick-links li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.quick-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #1a3a5f;
}

/* Office Locations */
.office-locations {
    margin-bottom: 80px;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.location-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.location-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-content {
    padding: 40px;
}

.location-content h3 {
    font-size: 1.5rem;
    color: #1a3a5f;
    margin-bottom: 10px;
    font-weight: 600;
}

.location-type {
    color: #2a4a7f;
    font-weight: 500;
    margin-bottom: 20px;
}

.location-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.location-features {
    list-style: none;
    padding: 0;
}

.location-features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.location-features li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 80px;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #1a3a5f;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #1a3a5f;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 20px;
    color: #666;
    line-height: 1.8;
}

/* Responsive Design for pages */
@media (max-width: 992px) {
    .page-hero {
        height: 60vh;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        overflow: hidden;
    }

    .page-hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .page-hero-content h1 {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-hero-content p {
        font-size: 1rem;
    }

    .cutting-tools-page .page-hero-content h1 {
        font-size: 1rem;
        margin-top: 150px;
    }

    .cutting-tools-page .page-hero-content .sharpest {
        font-size: 1.3rem;
    }

    .cutting-tools-page .page-hero {
        min-height: 300px;
    }

    .cutting-tools-page .page-hero-background {
        background: url('../images/Products-CT1.png') center top/contain no-repeat !important;
    }

    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-content h2 {
        font-size: 1.75rem;
    }

    .news-body {
        flex-direction: column;
    }

    .news-image {
        width: 100%;
        min-width: auto;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .capabilities-cards {
        gap: 15px;
    }

    .capability-card {
        padding: 20px;
    }

    .capability-columns {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .manufacturing-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .manufacturing-text h2 {
        font-size: 1.75rem;
    }

    .success-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .success-meta {
        flex-direction: column;
        gap: 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-intro-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .contact-intro-section p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 40vh;
    }

    .page-hero-content {
        padding: 0 15px;
    }

    .page-hero-content h1 {
        font-size: 1.2rem;
    }

    .page-hero-content p {
        font-size: 0.9rem;
    }

    .cutting-tools-page .page-hero-content h1 {
        font-size: 0.9rem;
        margin-top: 80px;
    }

    .cutting-tools-page .page-hero-content .sharpest {
        font-size: 1.1rem;
    }

    .cutting-tools-page .page-hero-background {
        background: url('../images/Products-CT1.png') center top/contain no-repeat !important;
    }

    .main-content {
        padding: 40px 0;
    }

    .contact-intro-section h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .advantage-card, .success-item {
        padding: 30px 20px;
    }

    .cta-section {
        padding: 40px 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 300px;
    }
}