* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf0 50%, #f0f2f5 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #FF6B35);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.45);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(248, 249, 252, 0.95);
    color: #1a1a2e;
}

.btn-white {
    background: rgba(248, 249, 252, 0.95);
    color: #1a1a2e;
}

.btn-white:hover {
    background: rgba(232, 234, 240, 0.95);
    transform: translateY(-2px);
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
    animation: tagPulse 3s ease-in-out infinite;
}

@keyframes tagPulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
    }

    50% {
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
    color: #fff;
}

.link-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.link-btn:hover {
    gap: 12px;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px 10px 180px;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    position: absolute;
    left: 20px;
}

.logo img {
    height: 80px;
    width: auto;
    margin: 0;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav ul {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav ul li a {
    display: block;
    padding: 20px 22px;
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #e55a2b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: #FF6B35;
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    transform: scaleX(1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #FF6B35;
}

.header-cta-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
}

.header-cta-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Split Layout Style */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: #000;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-image: url('https://images.pexels.com/photos/12274282/pexels-photo-12274282.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.75) 0%, rgba(40, 40, 60, 0.6) 50%, rgba(20, 30, 40, 0.8) 100%);
}

.chevron-pattern {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-left {
    text-align: center;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 30px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.hero-main-title {
    font-size: 68px;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 40px;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    color: #fff;
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #FF6B35);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-image-right {
    position: relative;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-description {
    font-size: 17px;
    color: #fff;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 400;
}

/* Page Banner */
.page-banner {
    padding: 180px 0 100px;
    position: relative;
    text-align: center;
    background: #1a1a2e;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.8));
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Section */
.stats {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 250, 0.9) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 252, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #e55a2b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, #fff 0%, #fafbfc 100%);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.15), 0 10px 20px rgba(0, 0, 0, 0.08);
}

.stat-item i {
    font-size: 48px;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-item p {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Services Preview (Home) */
.services-preview {
    padding: 120px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #e8eaf0 100%);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF6B35, transparent);
}

.services-preview .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.services-preview .service-card {
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.services-preview .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #e55a2b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-preview .service-card:hover::before {
    opacity: 1;
}

.services-preview .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.15), 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-preview .service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.services-preview .service-card:hover img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 35px 30px;
    background: #fff;
    position: relative;
}

.service-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.services-preview .service-card:hover .service-card-content h3 {
    color: #FF6B35;
}

.service-card-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Safe Work Practices Section */
.safe-practices {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #e8eaf0 100%);
}

.practices-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.practices-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.practices-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 80px;
}

.practice-card {
    background: rgba(248, 249, 252, 0.9);
    padding: 40px 25px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.6;
    transform: scale(0.85);
    min-height: 320px;
}

.practice-card:nth-child(n+4) {
    display: none;
}

.practice-card:nth-child(2) {
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    z-index: 5;
    padding: 50px 30px;
}

.practice-card:hover {
    transform: scale(0.9);
}

.practice-card:nth-child(2):hover {
    transform: scale(1.2);
}

.practice-logo {
    width: 160px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practice-card:nth-child(2) .practice-logo {
    width: 240px;
    height: 160px;
}

.practice-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.practice-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.practice-card:nth-child(2) h3 {
    font-size: 22px;
}

.practice-card p {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.practice-card:nth-child(2) p {
    font-size: 16px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

@media (max-width: 992px) {
    .practices-cards {
        gap: 20px;
    }

    .practice-card {
        transform: scale(0.75);
    }

    .practice-card:nth-child(2) {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .practices-title {
        font-size: 24px;
    }

    .practices-cards {
        padding: 0 60px;
    }

    .practice-card {
        display: none;
    }

    .practice-card:nth-child(2) {
        display: block;
        transform: scale(1);
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* About Preview (Home) */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(229, 90, 43, 0.03) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-content>p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #2c3e50;
    font-size: 15px;
}

.about-list li i {
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
}

/* Services Page */
.services-section {
    padding: 100px 0;
}

.services-section.bg-light {
    background: #e8eaf0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse>* {
    direction: ltr;
}

.service-detail-image img {
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    width: 100%;
}

.service-detail-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-detail-content h3 i {
    color: #e67e22;
}

.service-detail-content>p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-content ul {
    padding-left: 0;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

/* About Page */
.about-intro {
    padding: 100px 0;
    background: #e8eaf0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-intro-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-intro-image img {
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* Service Acknowledged Section - Testimonial Style */
.service-acknowledged-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.testimonial-card-main {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: start;
}

.testimonial-text-content {
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin: 0;
    font-style: italic;
    font-weight: 400;
}

.testimonial-text-content p {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 15px;
}

.testimonial-author-card {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 120px;
}

.testimonial-author-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e67e22;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.2);
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.testimonial-author-role {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Centered Testimonial Layout */
.testimonial-card-centered {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-card-centered .testimonial-author-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e67e22;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.2);
}

.testimonial-card-centered .testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card-centered .testimonial-author-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.testimonial-card-centered .testimonial-author-role {
    font-size: 15px;
    color: #e67e22;
    font-weight: 500;
    margin-bottom: 20px;
}

.testimonial-card-centered .testimonial-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    margin: 0;
     text-align: justify;
}

/* Legacy styles - keep for backwards compatibility */
.service-acknowledged-layout {
    position: relative;
}

.service-acknowledged-image {
    float: right;
    width: 45%;
    margin-left: 40px;
    margin-bottom: 30px;
}

.service-acknowledged-image img {
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    width: 100%;
}

.service-acknowledged-content {
    clear: none;
}

.service-acknowledged-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
    margin-top: 10px;
}

.service-acknowledged-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.vision-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: rgba(230, 126, 34, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.vision-icon i {
    font-size: 32px;
    color: #e67e22;
}

.vision-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.vision-quote {
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.vision-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.vision-point i {
    color: #e67e22;
    margin-top: 3px;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: #e8eaf0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-image img {
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(211, 84, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mission-icon i {
    font-size: 24px;
    color: #e67e22;
}

.mission-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.mission-quote {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.mission-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #555;
    font-size: 15px;
}

.mission-content ul li i {
    color: #e67e22;
    margin-top: 4px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #e8eaf0;
}

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

.value-card {
    background: rgba(248, 249, 252, 0.9);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    transform: translateY(-5px);
}

.value-card:hover .value-icon {
    background: rgba(230, 126, 34, 0.2);
}

.value-card:hover h3 {
    color: #fff;
}

.value-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(211, 84, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: #e67e22;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.value-card.full-width {
    grid-column: span 3;
    max-width: 500px;
    margin: 0 auto;
}


/* Quality Page */
.quality-intro {
    padding: 100px 0;
    background: #e8eaf0;
}

.quality-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quality-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.quality-intro-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.quality-objectives-section {
    padding: 100px 0;
    background: #e8eaf0;
}

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

.objective-card {
    background: rgba(248, 249, 252, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.objective-card i {
    font-size: 40px;
    color: #e67e22;
    margin-bottom: 15px;
}

.objective-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* QA Processes */
.qa-processes-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-item::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: rgba(230, 126, 34, 0.3);
}

.process-item:last-child::before {
    display: none;
}

.process-number {
    width: 50px;
    height: 50px;
    background: #e67e22;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 15px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-content h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.process-content ul li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.process-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e67e22;
}

/* Quality Responsibility */
.quality-responsibility {
    padding: 100px 0;
    background: #e8eaf0;
}

.responsibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.responsibility-image img {
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.responsibility-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.responsibility-content>p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.quality-statement-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 15px;
    margin-top: 25px;
}

.quality-statement-box i {
    color: #e67e22;
    font-size: 30px;
    margin-bottom: 15px;
}

.quality-statement-box p {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}

/* Compliance Page */
.compliance-intro {
    padding: 100px 0;
    background: #e8eaf0;
}

.compliance-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.compliance-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.compliance-intro-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.compliance-areas {
    padding: 100px 0;
    background: #e8eaf0;
}

.compliance-block {
    background: rgba(248, 249, 252, 0.95);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.compliance-block:last-child {
    margin-bottom: 0;
}

.compliance-block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.compliance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(211, 84, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compliance-icon i {
    font-size: 24px;
    color: #e67e22;
}

.compliance-block-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
}

.compliance-block-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.compliance-block-content.single {
    grid-template-columns: 1fr;
}

.compliance-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.compliance-col ul li {
    color: #555;
    font-size: 14px;
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.compliance-col ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e67e22;
    font-size: 12px;
}

.compliance-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
}

.compliance-list-grid li {
    color: #555;
    font-size: 14px;
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.compliance-list-grid li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e67e22;
    font-size: 12px;
}

/* Compliance Culture */
.compliance-culture {
    padding: 100px 0;
    background: #e8eaf0;
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.culture-image img {
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.culture-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.culture-content>p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.compliance-statement-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 15px;
    margin-top: 25px;
    text-align: center;
}

.compliance-statement-box i {
    color: #e67e22;
    font-size: 40px;
    margin-bottom: 15px;
}

.compliance-statement-box h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.compliance-statement-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
}


/* Contact Page */
.contact-section {
    padding: 100px 0;
    background: #e8eaf0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.contact-info>p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(211, 84, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: #e67e22;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.contact-text p {
    color: #666;
    font-size: 14px;
}

.contact-text p.small {
    font-size: 12px;
    color: #999;
}

.social-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.social-section .social-links a {
    background: #e67e22;
    color: #fff;
}

.social-section .social-links a:hover {
    background: #d67019;
    transform: scale(1.1);
}

.contact-form-wrapper {
    background: rgba(248, 249, 252, 0.9);
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 25px;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
    background: rgba(255, 255, 255, 0.95);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e67e22;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    height: 400px;
    background: #e8eaf0;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}

.map-placeholder i {
    font-size: 60px;
    color: #e67e22;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 18px;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #e67e22, #d35400);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

/* CTA Modern Section */
.cta-modern {
    padding: 100px 0;
    background: #e8eaf0;
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 90, 43, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(229, 90, 43, 0.05) 100%);
    padding: 50px 60px;
    border-radius: 0;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    color: #fff;
    padding: 18px 36px;
    border-radius: 0;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b 0%, #FF6B35 100%);
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    border: 2px solid rgba(255, 107, 53, 0.25);
    transition: all 0.3s ease;
}

.cta-contact:hover {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
}

.cta-contact i {
    font-size: 28px;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-contact>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: #1a1a2e;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: block;
    margin-bottom: 25px;
    width: fit-content;
}

.footer-logo img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
}

.footer .logo {
    color: #fff;
    margin-bottom: 25px;
    display: block;
    width: 100%;
}

.footer .logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.footer-col>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    margin-top: 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #e67e22;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #e67e22;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: #e67e22;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-main-title {
        font-size: 56px;
    }

    .cta-content {
        padding: 40px 50px;
        gap: 40px;
    }

    .cta-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .header-container {
        padding: 10px 20px;
        padding-left: 100px;
    }

    .logo img {
        height: 65px;
    }

    .nav ul li a {
        padding: 20px 16px;
        font-size: 12px;
    }

    .header-cta-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero {
        padding: 100px 0 80px;
        min-height: 80vh;
    }

    .hero-main-title {
        font-size: 48px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 16px 32px;
        font-size: 14px;
    }

    .page-banner {
        padding: 150px 0 80px;
    }

    .page-banner h1 {
        font-size: 40px;
    }

    .stats {
        padding: 60px 0;
        margin-top: -40px;
    }

    .testimonial-card-main {
        grid-template-columns: 1fr;
        padding: 35px;
        gap: 35px;
    }

    .testimonial-author-card {
        position: static;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 30px;
        gap: 20px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-item i {
        font-size: 40px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .services-preview,
    .about-preview,
    .services-section,
    .about-intro,
    .mission-section,
    .values-section,
    .quality-intro,
    .quality-objectives-section,
    .qa-processes-section,
    .quality-responsibility,
    .compliance-intro,
    .compliance-areas,
    .compliance-culture,
    .contact-section {
        padding: 80px 0;
    }

    .services-preview .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .safe-practices {
        padding: 60px 0;
    }

    .practices-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .practices-cards {
        gap: 20px;
        padding: 0 70px;
    }

    .practice-card {
        transform: scale(0.75);
        min-height: 280px;
        padding: 35px 20px;
    }

    .practice-card:nth-child(2) {
        transform: scale(1);
        padding: 45px 25px;
    }

    .about-grid,
    .about-intro-grid,
    .mission-grid,
    .responsibility-grid,
    .culture-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .vision-points {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-card.full-width {
        grid-column: span 2;
    }

    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .compliance-block {
        padding: 30px;
    }

    .compliance-block-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .compliance-list-grid {
        grid-template-columns: 1fr;
    }

    .cta-modern {
        padding: 80px 0;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .cta-contact {
        width: 100%;
        justify-content: center;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}

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

    .header-container {
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        left: 10px;
        position: relative;
    }

    .logo img {
        height: 55px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .header-right {
        order: 2;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(232, 234, 240, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        width: 100%;
    }

    .nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    }

    .nav ul li a {
        padding: 18px 0;
        font-size: 14px;
        width: 100%;
    }

    .nav ul li a::after {
        left: 0;
        bottom: 0;
        width: 4px;
        height: 100%;
        transform: scaleY(0);
    }

    .nav ul li a:hover::after,
    .nav ul li a.active::after {
        transform: scaleY(1);
    }

    .header-right {
        gap: 8px;
        order: 2;
    }

    .social-icon {
        display: none;
    }

    .header-cta-btn {
        padding: 10px 16px;
        font-size: 10px;
        white-space: nowrap;
        display: inline-block;
        line-height: 1.3;
        min-width: auto;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: 70vh;
    }

    .hero-main-title {
        font-size: 36px;
        margin-bottom: 30px;
        letter-spacing: -1px;
    }

    .hero-tag {
        font-size: 10px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 16px 32px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .page-banner {
        padding: 130px 0 60px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner p {
        font-size: 16px;
    }

    .stats {
        padding: 50px 0;
        margin-top: -30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 15px;
    }

    .stat-item {
        padding: 25px 20px;
    }

    .stat-item i {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 13px;
    }

    .services-preview,
    .about-preview,
    .services-section,
    .about-intro,
    .mission-section,
    .values-section,
    .quality-intro,
    .quality-objectives-section,
    .qa-processes-section,
    .quality-responsibility,
    .compliance-intro,
    .compliance-areas,
    .compliance-culture,
    .contact-section {
        padding: 60px 0;
    }

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

    .section-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 15px;
    }

    .tag {
        font-size: 10px;
        padding: 8px 20px;
        margin-bottom: 15px;
    }

    .services-preview .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-preview .service-card img {
        height: 200px;
    }

    .service-card-content {
        padding: 25px 20px;
    }

    .service-card-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .service-card-content p {
        font-size: 14px;
    }

    .safe-practices {
        padding: 50px 0;
    }

    .practices-title {
        font-size: 22px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .practices-cards {
        padding: 0 60px;
    }

    .practice-card {
        display: none;
    }

    .practice-card:nth-child(2) {
        display: block;
        transform: scale(1);
        padding: 40px 25px;
        min-height: auto;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-arrow {
        left: 5px;
    }

    .next-arrow {
        right: 5px;
    }

    .about-grid,
    .about-intro-grid,
    .mission-grid,
    .responsibility-grid,
    .culture-grid {
        gap: 30px;
    }

    .service-acknowledged-image {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .about-content h2,
    .about-intro-content h2,
    .mission-content h2,
    .responsibility-content h2,
    .culture-content h2,
    .quality-intro-content h2,
    .compliance-intro-content h2,
    .contact-info h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about-content p,
    .about-intro-content p,
    .mission-content p,
    .responsibility-content p,
    .culture-content p,
    .quality-intro-content p,
    .compliance-intro-content p {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .about-list li {
        font-size: 14px;
        padding: 8px 0;
    }

    .btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .service-detail {
        gap: 30px;
        margin-bottom: 50px;
    }

    .service-detail-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .service-detail-content p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .service-detail-content ul li {
        font-size: 14px;
        padding: 6px 0;
    }

    .vision-section,
    .qa-processes-section {
        padding: 60px 0;
    }

    .vision-card h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .vision-quote {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .vision-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .vision-icon i {
        font-size: 26px;
    }

    .vision-point {
        font-size: 13px;
    }

    .mission-icon,
    .value-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .mission-icon i,
    .value-icon i {
        font-size: 20px;
    }

    .mission-quote {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .mission-content ul li {
        font-size: 14px;
        padding: 8px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-card {
        padding: 25px;
    }

    .value-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 13px;
    }

    .value-card.full-width {
        grid-column: span 1;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .objective-card {
        padding: 25px;
    }

    .objective-card i {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .objective-card p {
        font-size: 14px;
    }

    .process-timeline {
        padding: 0 10px;
    }

    .process-item {
        gap: 20px;
        margin-bottom: 30px;
    }

    .process-item::before {
        left: 20px;
        top: 50px;
        bottom: -30px;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .process-content {
        padding: 20px;
    }

    .process-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .process-content ul li {
        font-size: 13px;
        padding: 5px 0;
    }

    .quality-statement-box,
    .compliance-statement-box {
        padding: 25px;
        margin-top: 20px;
    }

    .quality-statement-box i,
    .compliance-statement-box i {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .quality-statement-box p,
    .compliance-statement-box p {
        font-size: 14px;
    }

    .compliance-statement-box h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .compliance-block {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .compliance-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .compliance-icon {
        width: 50px;
        height: 50px;
    }

    .compliance-icon i {
        font-size: 20px;
    }

    .compliance-block-header h3 {
        font-size: 20px;
    }

    .compliance-col h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .compliance-col ul li,
    .compliance-list-grid li {
        font-size: 13px;
        padding: 5px 0;
        padding-left: 20px;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-details {
        margin-bottom: 25px;
    }

    .contact-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 18px;
    }

    .contact-text h4 {
        font-size: 15px;
    }

    .contact-text p {
        font-size: 13px;
    }

    .social-section h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form form {
        gap: 15px;
    }

    .form-group label {
        font-size: 13px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px 16px;
        font-size: 13px;
    }

    .contact-form button {
        width: 100%;
    }

    .map-section {
        height: 300px;
    }

    .map-placeholder i {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .map-placeholder p {
        font-size: 16px;
    }

    .cta-modern {
        padding: 60px 0;
    }

    .cta-content {
        padding: 30px 20px;
        gap: 25px;
    }

    .cta-text h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .cta-text p {
        font-size: 15px;
    }

    .btn-cta-primary {
        padding: 16px 32px;
        font-size: 15px;
    }

    .cta-contact {
        padding: 16px 25px;
    }

    .cta-contact i {
        font-size: 24px;
    }

    .contact-value {
        font-size: 16px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        display: block;
        margin-bottom: 20px;
        width: fit-content;
    }

    .footer-logo img {
        height: 60px;
        max-width: 220px;
        display: block;
    }

    .footer .logo {
        margin-bottom: 20px;
        display: block;
        width: 100%;
    }

    .footer .logo img {
        height: 50px;
        max-width: 200px;
        display: block;
    }

    .footer-col > p {
        font-size: 13px;
        margin-bottom: 15px;
        margin-top: 0;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 20px;
        margin-top: 0;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a,
    .footer-contact li {
        font-size: 13px;
    }

    .social-links {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .footer-bottom {
        padding: 20px 0;
        margin-top: 40px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        position: relative;
        left: 0;
    }

    .logo img {
        height: 50px;
    }

    .header-cta-btn {
        padding: 8px 12px;
        font-size: 9px;
        line-height: 1.3;
    }

    .hero-main-title {
        font-size: 28px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 28px;
        font-size: 13px;
    }

    .page-banner h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .about-content h2,
    .about-intro-content h2,
    .mission-content h2,
    .responsibility-content h2,
    .culture-content h2,
    .quality-intro-content h2,
    .compliance-intro-content h2,
    .contact-info h2,
    .vision-card h2,
    .cta-text h2,
    .cta-section h2 {
        font-size: 24px;
    }

    .practices-title {
        font-size: 20px;
    }

    .practices-cards {
        padding: 0 50px;
    }

    .practice-card:nth-child(2) {
        padding: 30px 20px;
    }

    .cta-content {
        padding: 25px 15px;
    }

    .btn-cta-primary {
        padding: 14px 28px;
        font-size: 14px;
    }

    .cta-contact {
        padding: 14px 20px;
    }

    .contact-value {
        font-size: 15px;
    }

    .footer-logo img {
        height: 55px;
        max-width: 200px;
        display: block;
    }

    .footer .logo img {
        height: 45px;
        max-width: 180px;
        display: block;
    }

    .footer-col > p {
        font-size: 12px;
        margin-top: 0;
    }

    .footer-col h4 {
        font-size: 15px;
        margin-top: 0;
    }
}