* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.hero-section {
    min-height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(assets/images/background/scrap-yard-hero.jpg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    padding: 20px 0;
}

/* Compact & Sharp Design */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(253, 126, 20, 0.08);
    animation: floatSharp 15s infinite linear;
    border: 2px solid rgba(253, 126, 20, 0.2);
}

.shape:nth-child(1) {
    width: 180px;
    height: 180px;
    top: 15%;
    left: 8%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 65%;
    right: 12%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: -5s;
    animation-duration: 18s;
}

.shape:nth-child(3) {
    width: 90px;
    height: 90px;
    bottom: 25%;
    left: 25%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: -8s;
    animation-duration: 22s;
}

@keyframes floatSharp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.9;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.6;
    }
}

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

.particle {
    position: absolute;
    background: #fd7e14;
    border-radius: 2px;
    animation: sparkleSharp 3s infinite;
    transform: rotate(45deg);
}

@keyframes sparkleSharp {

    0%,
    100% {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }

    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

/* Main Content - Compact */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideUpSharp 0.8s ease-out;
}

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

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

.hero-badge {
    display: inline-block;
    background: rgba(253, 126, 20, 0.15);
    color: #fd7e14;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(253, 126, 20, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #fd7e14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.5;
    padding-left: 10px;
    border-left: 2px solid #fd7e14;
    font-weight: 500;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 30px;
    max-width: 520px;
}

/* Sharp CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #fd7e14, #e8590c);
    color: white;
    box-shadow: 0 4px 12px rgba(253, 126, 20, 0.3);
    border: 1px solid rgba(253, 126, 20, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(253, 126, 20, 0.4);
    background: linear-gradient(135deg, #e8590c, #d9480f);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: #fd7e14;
    background: rgba(253, 126, 20, 0.1);
    transform: translateY(-3px);
}

/* Compact Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 18px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #fd7e14;
    background: rgba(253, 126, 20, 0.05);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fd7e14;
    margin-bottom: 5px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* Sharp Materials Tags */
.materials-container {
    margin-top: 25px;
}

.materials-title {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.materials-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.material-tag {
    background: rgba(37, 99, 235, 0.1);
    color: #3b82f6;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    animation: tagAppearSharp 0.4s ease-out forwards;
    opacity: 0;
    transform: translateY(15px);
}

.material-tag:nth-child(1) {
    animation-delay: 0.1s;
}

.material-tag:nth-child(2) {
    animation-delay: 0.15s;
}

.material-tag:nth-child(3) {
    animation-delay: 0.2s;
}

.material-tag:nth-child(4) {
    animation-delay: 0.25s;
}

.material-tag:nth-child(5) {
    animation-delay: 0.3s;
}

.material-tag:nth-child(6) {
    animation-delay: 0.35s;
}

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

.material-tag:hover {
    background: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
    border-color: #2563eb;
}

/* Sharp 3D Cube */
.hero-visual {
    position: relative;
    animation: slideInRightSharp 0.8s ease-out;
}

@keyframes slideInRightSharp {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

.metal-cube {
    width: 320px;
    height: 320px;
    position: relative;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: rotateCubeSharp 18s infinite linear;
    transform: rotateX(25deg) rotateY(25deg);
}

.cube-face {
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 126, 20, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fd7e14;
    backdrop-filter: blur(5px);
}

.front {
    transform: translateZ(160px);
}

.back {
    transform: rotateY(180deg) translateZ(160px);
}

.right {
    transform: rotateY(90deg) translateZ(160px);
}

.left {
    transform: rotateY(-90deg) translateZ(160px);
}

.top {
    transform: rotateX(90deg) translateZ(160px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(160px);
}

@keyframes rotateCubeSharp {
    from {
        transform: rotateX(25deg) rotateY(0deg);
    }

    to {
        transform: rotateX(25deg) rotateY(360deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(253, 126, 20, 0.7);
    animation: bounceSharp 2s infinite;
}

@keyframes bounceSharp {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-8px) translateX(-50%);
    }

    60% {
        transform: translateY(-4px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-container {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .metal-cube {
        width: 280px;
        height: 280px;
    }

    .cube-face {
        width: 280px;
        height: 280px;
    }

    .front {
        transform: translateZ(140px);
    }

    .back {
        transform: rotateY(180deg) translateZ(140px);
    }

    .right {
        transform: rotateY(90deg) translateZ(140px);
    }

    .left {
        transform: rotateY(-90deg) translateZ(140px);
    }

    .top {
        transform: rotateX(90deg) translateZ(140px);
    }

    .bottom {
        transform: rotateX(-90deg) translateZ(140px);
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 20px;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 30px;
    }

    .metal-cube {
        width: 240px;
        height: 240px;
    }

    .cube-face {
        width: 240px;
        height: 240px;
        font-size: 1.6rem;
    }

    .front {
        transform: translateZ(120px);
    }

    .back {
        transform: rotateY(180deg) translateZ(120px);
    }

    .right {
        transform: rotateY(90deg) translateZ(120px);
    }

    .left {
        transform: rotateY(-90deg) translateZ(120px);
    }

    .top {
        transform: rotateX(90deg) translateZ(120px);
    }

    .bottom {
        transform: rotateX(-90deg) translateZ(120px);
    }

    .hero-subtitle {
        border-left: none;
        padding-left: 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .materials-tags {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        min-height: 85vh;
    }

    .stats-container {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }

    .metal-cube {
        width: 200px;
        height: 200px;
    }

    .cube-face {
        width: 200px;
        height: 200px;
        font-size: 1.4rem;
    }

    .front {
        transform: translateZ(100px);
    }

    .back {
        transform: rotateY(180deg) translateZ(100px);
    }

    .right {
        transform: rotateY(90deg) translateZ(100px);
    }

    .left {
        transform: rotateY(-90deg) translateZ(100px);
    }

    .top {
        transform: rotateX(90deg) translateZ(100px);
    }

    .bottom {
        transform: rotateX(-90deg) translateZ(100px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .metal-cube {
        width: 160px;
        height: 160px;
    }

    .cube-face {
        width: 160px;
        height: 160px;
        font-size: 1.2rem;
    }

    .front {
        transform: translateZ(80px);
    }

    .back {
        transform: rotateY(180deg) translateZ(80px);
    }

    .right {
        transform: rotateY(90deg) translateZ(80px);
    }

    .left {
        transform: rotateY(-90deg) translateZ(80px);
    }

    .top {
        transform: rotateX(90deg) translateZ(80px);
    }

    .bottom {
        transform: rotateX(-90deg) translateZ(80px);
    }

    .hero-container {
        padding: 40px 15px;
    }
}





.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.feature-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s;
}

.feature-card:hover .feature-link {
    transform: translateY(0);
}

.feature-content {
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: #f0f7ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

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

.feature-subtitle {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.feature-title {
    font-size: 22px;
    margin: 0 0 10px 0;
    color: #222;
}

.feature-desc {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .features-section {
        padding: 50px 0;
    }

    .feature-content {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .feature-img {
        height: 180px;
    }
}

.about-section {
    position: relative;
    background: #f8f9fa;
    padding: 120px 0;
}

.about-section .pattern-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    opacity: 0.1;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Container */
.about-section .container {
    position: relative;
    z-index: 2;
}

/* Titles */
.about-section .sec-title h6 {
    color: #f0571a;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-section .sec-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.about-section .sec-title h2 span {
    color: #f0571a;
}

/* Team Block */
.about-section .single-team {
    position: relative;
    margin-bottom: 40px;
}

.about-section .single-team h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.about-section .single-team .rotate-text {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: rotate(90deg);
    color: #f0571a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.about-section .single-team .image-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-section .single-team .image-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* Story Block */
.about-section .text-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.about-section .text-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-section .theme-btn {
    display: inline-flex;
    align-items: center;
    background: #f0571a;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-section .theme-btn i {
    margin-right: 8px;
}

.about-section .theme-btn:hover {
    background: #21867a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.2);
}

/* Aluminum Types */
.about-section .aluminum-types {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.about-section .aluminum-types h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.about-section .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-section .aluminum-tag {
    background: #e8f4f3;
    color: #f0571a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #c1e7e1;
}

/* Certificates */
.about-section .award-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 30px;
}

.about-section .icon-list {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.about-section .icon-list i {
    font-size: 40px;
    color: #f0571a;
}

.about-section .award-box h5 {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Image Box */
.about-section .image-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.about-section .image-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-section .image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-section .image-content .text-box {
    color: white;
}

.about-section .image-content .text-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #f0571a;
}

.about-section .image-content .text-box h2 span {
    font-size: 24px;
}

.about-section .image-content .text-box h5 {
    font-size: 14px;
    font-weight: 400;
    margin: 5px 0 0 0;
    color: #ddd;
}

/* Video Box */
.about-section .video-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-section .video-box h5 {
    color: white;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.about-section .video-popup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-section .video-popup i {
    font-size: 18px;
}

.about-section .video-popup:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Features Grid */
.about-section .features-grid .row {
    margin: 0 -10px;
}

.about-section .feature-item {
    background: white;
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.about-section .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 157, 143, 0.15);
    border-color: #f0571a;
}

.about-section .feature-item i {
    font-size: 40px;
    color: #f0571a;
    margin-bottom: 15px;
}

.about-section .feature-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.about-section .feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .about-section .sec-title h2 {
        font-size: 36px;
    }

    .about-section .single-team .rotate-text {
        right: -80px;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }

    .about-section .sec-title h2 {
        font-size: 32px;
    }

    .about-section .single-team .rotate-text {
        display: none;
    }

    .about-section .image-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }

    .about-section .sec-title h2 {
        font-size: 28px;
    }

    .about-section .aluminum-tag {
        padding: 6px 15px;
        font-size: 13px;
    }

    .about-section .feature-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .about-section .sec-title h2 {
        font-size: 24px;
    }

    .about-section .icon-list {
        gap: 15px;
    }

    .about-section .icon-list i {
        font-size: 32px;
    }
}


.compact-section {
    padding: 60px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* HEADER */
.compact-header {

    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.section-label {
    display: inline-block;
    color: #f0571a;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.industry-icon i {
    font-size: 32px;
    color: #f0571a;
}


.section-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0;
}

/* STATS */
.header-stats {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-item {
    text-align: center;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-number span {
    font-size: 20px;
}

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

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #f0571a;
    border: 2px solid #f0571a;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.view-all-btn:hover {
    background: #f0571a;
    color: white;
    transform: translateY(-2px);
}

/* SOURCING COMPACT */
.sourcing-compact {
    margin-bottom: 40px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid #f0571a;
}

.sourcing-header h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.sourcing-header p {
    color: #666;
    margin: 0 0 20px 0;
    font-size: 15px;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.region-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.region-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 15px;
}

.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.country-tag {
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
    border: 1px solid #e0e0e0;
}

/* FOCUS COMPACT */
.focus-compact {
    margin-bottom: 40px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid #f0571a;
}

.focus-header h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.focus-header p {
    color: #666;
    margin: 0 0 20px 0;
    font-size: 15px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #eee;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* INDUSTRIES GRID */
.industries-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.industry-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: #f0571a;
    box-shadow: 0 10px 30px rgba(240, 87, 26, 0.1);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #f0571a;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.industry-card h4 {
    margin: 0 0 15px 0;
    color: #222;
    font-size: 18px;
    font-weight: 600;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tag {
    background: #f8f8f8;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: #666;
    border: 1px solid #eee;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f0571a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

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

/* COMPACT FOOTER */
.compact-footer {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    border-top: 2px solid #eee;
}

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

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-box svg {
    flex-shrink: 0;
}

.phone-box div {
    display: flex;
    flex-direction: column;
}

.phone-box span {
    font-size: 13px;
    color: #666;
}

.phone-box a {
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-box a:hover {
    text-decoration: underline;
}

.primary-cta {
    background: #f0571a;
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #f0571a;
}

.primary-cta:hover {
    background: white;
    color: #f0571a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240, 87, 26, 0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .compact-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-stats {
        flex-direction: row;
        justify-content: flex-start;
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat-item {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .compact-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .regions-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid-compact {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }

    .phone-box {
        justify-content: center;
    }
}

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

    .sourcing-compact,
    .focus-compact {
        padding: 20px;
    }

    .industry-card {
        padding: 20px;
    }

    .header-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}


.modern-processing-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Pattern Background */
.process-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.05;
    z-index: 1;
}

/* Floating Dots */
.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f0571a;
    border-radius: 50%;
    animation: floatDot 3s infinite ease-in-out;
}

.dot:nth-child(2) {
    animation-delay: 0.5s;
}

.dot:nth-child(3) {
    animation-delay: 1s;
}

.dot:nth-child(4) {
    animation-delay: 1.5s;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* HEADER */
.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.header-content {
    flex: 1;
    min-width: 300px;
}

.process-badge {
    display: inline-block;
    background: rgba(240, 87, 26, 0.1);
    color: #f0571a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.main-title span {
    color: #f0571a;
}

.subtitle {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

/* Header Stats */
.header-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #f0571a;
}

.stat-circle {
    position: relative;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #f0571a;
}

.circle-number {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    line-height: 1;
}

.circle-suffix {
    font-size: 24px;
    color: #f0571a;
    font-weight: 600;
}

.circle-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-info {
    flex: 1;
}

.stat-info p {
    color: #555;
    margin: 0 0 15px 0;
    font-size: 16px;
}

.process-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f0571a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

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

/* PROCESS CONTAINER */
.process-container {
    margin-bottom: 60px;
}

/* Step Navigation */
.step-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.step-tab {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-tab:hover {
    transform: translateY(-5px);
    border-color: var(--step-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-tab.active {
    background: linear-gradient(135deg, var(--step-color) 0%, var(--step-color) 100%);
    border-color: var(--step-color);
    color: white;
}

.step-tab.active .step-number {
    background: white;
    color: var(--step-color);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--step-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.step-info {
    padding-right: 30px;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.step-tab h4 {
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.step-tab p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.step-tab.active p {
    color: rgba(255, 255, 255, 0.9);
}

.step-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--step-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-tab.active .step-indicator {
    transform: scaleX(1);
}

/* Step Content Area */
.step-content-area {
    min-height: 500px;
}

.step-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-panel.active {
    display: block;
}

/* Step Detail Card */
.step-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.step-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 40px 20px;
    border-bottom: 1px solid #eee;
}

.step-badge {
    display: inline-block;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.step-header h2 {
    font-size: 32px;
    margin: 0 0 10px 0;
    color: #222;
}

.step-subtitle {
    color: #666;
    font-size: 18px;
    margin: 0;
}

/* Step Content Grid */
.step-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
}

.step-visual {
    padding: 30px;
    border-right: 1px solid #eee;
}

.step-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.step-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-detail-card:hover .step-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.timeline-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.step-tools h5 {
    font-size: 16px;
    margin: 0 0 15px 0;
    color: #222;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tool-tag {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: #555;
    border: 1px solid #e0e0e0;
}

/* Step Details */
.step-details {
    padding: 30px;
    background: #fafbfc;
}

.details-section h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: #222;
}

.details-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.point-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.point-item span {
    color: #555;
    line-height: 1.5;
}

/* Next Step Info */
.next-step-info {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.next-step-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.next-step-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.next-step-icon {
    width: 40px;
    height: 40px;
    background: #f0571a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.next-step-content h4 {
    font-size: 18px;
    margin: 0 0 5px 0;
    color: #222;
}

.next-step-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Timeline Overview */
.timeline-overview {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    border: 1px solid #e0e0e0;
}

.overview-title {
    font-size: 24px;
    text-align: center;
    margin: 0 0 40px 0;
    color: #222;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.metric-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: #f0571a;
}

.metric-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.metric-content h4 {
    font-size: 24px;
    margin: 0 0 5px 0;
    color: #222;
}

.metric-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.process-cta {
    background: linear-gradient(135deg, #f0571a 0%, #e64a19 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    margin: 0 0 15px 0;
    color: white;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #f0571a;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f8f9fa;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Animations */
@keyframes floatDot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive */
@media (max-width: 992px) {
    .process-header {
        flex-direction: column;
    }

    .header-stats {
        width: 100%;
        justify-content: flex-start;
    }

    .step-content-grid {
        grid-template-columns: 1fr;
    }

    .step-visual {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .modern-processing-section {
        padding: 60px 0;
    }

    .main-title {
        font-size: 32px;
    }

    .step-navigation {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-cta {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

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

    .timeline-overview {
        padding: 30px 20px;
    }
}

/* ===== STEP CONNECTOR LINES (NEW) ===== */

.step-navigation {
    position: relative;
}

/* Main horizontal connector */
.step-navigation::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30px;
    right: 30px;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

/* Keep steps above the line */
.step-tab {
    position: relative;
    z-index: 1;
    background: white;
}

/* Connector dot after each step */
.step-tab::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* Remove dot from last step */
.step-tab:last-child::after {
    display: none;
}

/* Active step dot */
.step-tab.active::after {
    background: var(--step-color);
}

/* Hover dot */
.step-tab:hover::after {
    background: var(--step-color);
}

/* Mobile: remove connectors */
@media (max-width: 768px) {

    .step-navigation::before,
    .step-tab::after {
        display: none;
    }
}


.certification-block {
    margin-bottom: 30px;
    /* vertical gap between rows */
}

/* Card base style */
.certification-block-one .inner-box {
    background: #ffffff;
    padding: 30px 25px;
    border: 1px solid #eaeaea;
    /* separation line */
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

/* Shadow for depth */
.certification-block-one .inner-box {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Hover effect (professional) */
.certification-block-one .inner-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #ff6600;
}

/* Title spacing */
.certification-block-one h3 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

/* Description spacing */
.certification-block-one p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Download button spacing */
.download-box {
    margin-top: 15px;
}

/* Preview icon spacing */
.preview-box {
    margin-top: 20px;
}


.blog-page {
    padding: 80px 0;
}

/* SECTION HEADING */
.sec-title-main {
    text-align: center;
    margin-bottom: 50px;
}

.sec-title-main h6 {
    font-size: 14px;
    font-weight: 600;
    color: #777;
    letter-spacing: 1px;
}

.sec-title-main h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
}

/* CARD */
.blog-card {
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    transition: all .3s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
}

/* IMAGE */
.blog-card .image-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* CATEGORY TAG */
.blog-card .category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f0571a;
    padding: 6px 14px;
    color: white;
    font-size: 13px;
}

/* CONTENT */
.blog-card .content {
    padding: 22px;
}


/* TITLE */
.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 28px;
    color: #333;
}

/* AUTHOR BOX */
.author-small {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.blog-title {
    color: #000000;

}

.author-small img {
    width: 42px;
    height: 42px;
    /* border-radius: 50%; */
    margin-right: 12px;
}

/* READ MORE */
.read-more {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #f0571a;
}

.read-more i {
    margin-left: 8px;
    font-size: 14px;
}

.creator-text {
    font-size: 14px;
    color: #bdbdbd;
}

.creator-text a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.creator-text a:hover {
    color: var(--theme-color);
}


.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/background/scrap-yard-hero.jpg') center/cover no-repeat;
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
}

.company-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #ff6600;
    display: block;
    line-height: 1;
}

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

/* ALUMINIUM TRADING SECTION */
.trading-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.trading-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trading-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #ff6600;
}

.trading-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.trading-icon {
    width: 70px;
    height: 70px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 32px;
}

.trading-card h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.trading-card ul {
    padding-left: 20px;
    margin-top: 15px;
}

.trading-card li {
    margin-bottom: 8px;
    color: #666;
    position: relative;
}

.trading-card li::before {
    content: '✓';
    color: #ff6600;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* COMPLIANCE SECTION */
.compliance-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.compliance-section h2 {
    color: white;
}

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

.compliance-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid #ff6600;
}

.compliance-item h4 {
    color: #ff6600;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* INFRASTRUCTURE SECTION */
.infrastructure-section {
    padding: 80px 0;
}

.facility-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: 0.3s;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.facility-image {
    height: 200px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.facility-content {
    padding: 25px;
}

.facility-content h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

/* TIMELINE REDESIGN */
.timeline-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    background: #ff6600;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-left: 20px;
}

.timeline-content h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

/* MISSION VISION VALUES */
.values-section {
    padding: 80px 0;
}

.value-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff6600;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 42px;
    color: #ff6600;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .company-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .trading-card {
        padding: 25px;
    }
}

.insights-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/background/blog-hero.jpg') center/cover no-repeat;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.insights-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.insights-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.hero-meta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stat {
    background: rgba(255, 102, 0, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    border-left: 3px solid #ff6600;
}

.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-category {
    background: #ff6600;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.blog-date {
    color: #888;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #1a1a1a;
}

.blog-content h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #ff6600;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ff6600;
}

.read-more {
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6600;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.category-list a:hover {
    color: #ff6600;
}

.category-count {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.trending-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.trending-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.trending-img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.trending-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.trending-content h4 a {
    color: inherit;
    text-decoration: none;
}

.trending-content h4 a:hover {
    color: #ff6600;
}

.trending-date {
    font-size: 12px;
    color: #888;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #ff6600;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.newsletter-box .sidebar-title {
    color: white;
    border-bottom-color: #ff6600;
}

.newsletter-box p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.newsletter-box input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-box button {
    width: 100%;
    background: #ff6600;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-box button:hover {
    background: #e55a00;
}

.pagination-wrapper {
    margin-top: 50px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    gap: 10px;
}

.pagination li a {
    display: block;
    padding: 10px 18px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    border: 1px solid #ddd;
}

.pagination li a.current,
.pagination li a:hover {
    background: #ff6600;
    color: white;
    border-color: #ff6600;
}

.seo-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.seo-content h2 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 24px;
}

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

.seo-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.seo-content li {
    margin-bottom: 10px;
    color: #666;
}

@media (max-width: 768px) {
    .insights-hero h1 {
        font-size: 36px;
    }

    .blog-image {
        height: 200px;
    }

    .seo-content {
        padding: 25px;
    }
}


/* ===== CONTACT PAGE ORANGE THEME ===== */

/* Section spacing */
.contact-section-page {
    padding: 70px 0;
    background: #ffffff;
}

/* Icon circle */
.dbox .icon {
    width: 60px;
    height: 60px;
    background: #ff6600;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 22px;
    color: #fff;
}

/* Contact info text */
.dbox .text p span {
    color: #ff6600;
    font-weight: 600;
}

/* Links */
.dbox .text a {
    color: #333;
    text-decoration: none;
}

.dbox .text a:hover {
    color: #ff6600;
}

/* Contact form heading */
.contact-wrap h3 {
    color: #ff6600;
    font-weight: 600;
}

/* Labels */
.contact-wrap .label {
    color: #333;
    font-weight: 500;
}

/* Inputs */
.contact-wrap .form-control {
    border-radius: 4px;
    border: 1px solid #ddd;
    box-shadow: none;
}

.contact-wrap .form-control:focus {
    border-color: #ff6600;
}

/* Button */
.contact-wrap .btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
}

.contact-wrap .btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

/* Right image panel */
.info-wrap {
    min-height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

/* ==========================================================================
   CERTIFICATIONS PAGE STYLES
   ========================================================================== */

/* HERO SECTION */
.certifications-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../images/backgrounds/certifications-bg.jpg') center/cover;
    padding: 120px 0 80px;
    position: relative;
}

.certifications-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.certifications-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* WATERMARK NOTICE */
.watermark-notice {
    background: linear-gradient(135deg, #ff6600 0%, #ff3300 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    margin: 30px auto 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.2);
}

.watermark-notice i {
    font-size: 32px;
    margin-right: 20px;
    color: white;
}

.watermark-notice h4 {
    color: white;
    margin: 0 0 5px 0;
    font-size: 22px;
}

.watermark-notice p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

/* CERTIFICATION CARDS */
.certification-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.certification-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    padding: 25px;
    position: relative;
    display: flex;
    align-items: center;
}

.certification-icon {
    width: 60px;
    height: 60px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.certification-icon i {
    font-size: 28px;
    color: white;
}

.certification-header h3 {
    flex-grow: 1;
    color: white !important;
    margin: 0 !important;
    font-size: 20px !important;
    font-weight: 600;
}

.certification-badge {
    background: #ff6600;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.certification-content {
    padding: 30px;
    flex-grow: 1;
}

.certification-content h4 {
    color: #1a1a1a;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.certification-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.certification-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #1a1a1a;
    font-weight: 600;
}

.certification-actions {
    padding: 0 30px 30px;
    display: flex;
    gap: 15px;
}

.btn-preview,
.btn-download {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-preview {
    background: #f8f9fa;
    color: #1a1a1a;
    border: 2px solid #eee;
}

.btn-preview:hover {
    background: #e9ecef;
    border-color: #ddd;
}

.btn-download {
    background: #ff6600;
    color: white;
    border: 2px solid #ff6600;
}

.btn-download:hover {
    background: #e65c00;
    border-color: #e65c00;
}

/* ENVIRONMENT SECTION */
.environment-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    padding: 80px 0;
    margin: 80px 0;
}

.environment-section h6 {
    color: #ff6600 !important;
    letter-spacing: 2px;
}

.environment-section h2 {
    color: white !important;
}

.environment-section h2 span {
    color: #ff6600 !important;
}

.environment-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.environment-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.environment-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.environment-icon i {
    font-size: 36px;
    color: #ff6600;
}

.environment-card h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.environment-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* POLICY DOWNLOAD */
.policy-download {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-download h4 {
    font-weight: 600;
}

.policy-download .theme-btn {
    padding: 15px 30px;
    font-weight: 600;
}

.policy-download .theme-btn i {
    margin-right: 10px;
}

/* DOCUMENTS TABLE */
.documents-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.documents-table table {
    width: 100%;
    border-collapse: collapse;
}

.documents-table thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

.documents-table th {
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.documents-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.documents-table tbody tr:hover {
    background: #f8f9fa;
}

.documents-table td {
    padding: 20px;
    color: #333;
    font-size: 15px;
}

.doc-type {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* VERIFICATION BOX */
.verification-box {
    background: linear-gradient(135deg, #ff6600 0%, #ff3300 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.verification-box h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.verification-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 16px;
}

.verification-box .theme-btn {
    background: white;
    color: #ff6600;
    padding: 15px 30px;
    font-weight: 600;
}

.verification-box .theme-btn:hover {
    background: #f8f9fa;
}

.verification-box .theme-btn i {
    margin-right: 10px;
}

/* RESPONSIVE STYLES */
@media (max-width: 991px) {
    .certifications-hero h1 {
        font-size: 36px;
    }

    .certification-actions {
        flex-direction: column;
    }

    .watermark-notice {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .watermark-notice i {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .certifications-hero {
        padding: 100px 0 60px;
    }

    .certifications-hero h1 {
        font-size: 32px;
    }

    .certification-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .certification-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .certification-header h3 {
        margin-bottom: 10px !important;
    }

    .verification-box {
        text-align: center;
    }

    .verification-box .theme-btn {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .certification-content {
        padding: 20px;
    }

    .certification-actions {
        padding: 0 20px 20px;
    }

    .detail-row {
        flex-direction: column;
    }

    .documents-table {
        overflow-x: auto;
    }

    .documents-table table {
        min-width: 600px;
    }
}

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

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

.certification-card {
    animation: fadeInUp 0.5s ease forwards;
}

.certification-card:nth-child(2) {
    animation-delay: 0.1s;
}

.certification-card:nth-child(3) {
    animation-delay: 0.2s;
}

.certification-card:nth-child(4) {
    animation-delay: 0.3s;
}

.certification-card:nth-child(5) {
    animation-delay: 0.4s;
}

.certification-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* SCROLL ANIMATION FOR ENVIRONMENT CARDS */
.environment-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.environment-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CUSTOM SOURCING PAGE STYLES */
.hero-sourcing {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/background/sourcing-bg.jpg') center/cover no-repeat;
    padding: 110px 0;
    text-align: center;
    color: white;
    position: relative;
}

.hero-sourcing h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-sourcing p {
    opacity: 0.9;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.sourcing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.country-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.country-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.country-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #ff6600;
}

.country-box img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    height: 200px;
    object-fit: cover;
}

.country-box h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-size: 22px;
}

.country-box .coming-soon {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.country-box ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.country-box li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.country-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
}

.routes-section {
    padding: 80px 0;
    background: #edede9;
    color: white;
    text-align: center;
}

.route-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 3px solid #ff6600;
    text-align: left;
    display: flex;
    align-items: center;
}

.route-icon {
    background: #ff6600;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.route-details {
    flex: 1;
}

.route-details h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.route-details p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

.timeline-section {
    padding: 80px 0;
}

.timeline-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    height: 100%;
    transition: 0.3s;
    border-top: 4px solid #ff6600;
}

.timeline-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.timeline-box h3 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-number {
    background: #ff6600;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.timeline-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-box li {
    padding: 12px 0;
    font-size: 16px;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.timeline-box li:last-child {
    border-bottom: none;
}

.timeline-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
}

/* QUOTE FORM STYLES */
.quote-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quote-form-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff6600;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

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

.form-row .form-group {
    flex: 1;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.form-checkbox label {
    margin: 0;
    font-weight: normal;
}

.btn-submit {
    background: #ff6600;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

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

/* REQUIREMENT TAGS */
.requirement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag-item {
    background: #f0f0f0;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.tag-item:hover,
.tag-item.active {
    background: #ff6600;
    color: white;
}

@media (max-width: 768px) {
    .hero-sourcing h1 {
        font-size: 36px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .route-item {
        flex-direction: column;
        align-items: flex-start;
    }

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



.hero-import {
    background: url('assets/images/background/export-bg.jpg') center/cover no-repeat;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-import::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-import .auto-container {
    position: relative;
    z-index: 2;
}

.hero-import h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-import p {
    opacity: .9;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.export-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.export-box {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
    height: 100%;
}

.export-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.export-box img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 18px;
    height: 250px;
    object-fit: cover;
}

.export-box h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-size: 24px;
}

.export-box p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.export-box .list-item {
    margin-top: 20px;
}

.export-box .list-item li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
}

.export-box .list-item li:last-child {
    border-bottom: none;
}

.export-box .list-item li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
}

.feature-strip {
    background: #0d0d0d;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.feature-strip h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

.feature-strip ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.feature-strip li {
    font-size: 18px;
    margin: 15px 0;
    opacity: 0.85;
    padding-left: 30px;
    position: relative;
    text-align: left;
}

.feature-strip li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
    font-size: 20px;
}

.services-details {
    padding: 80px 0;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s ease;
    border-top: 4px solid #ff6600;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.service-card li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cta-section {
    background: #ff6600;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.theme-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease;
    border: none;
    text-decoration: none;
}

.theme-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.sec-title h6 {
    color: #ff6600;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.sec-title h2 span {
    color: #ff6600;
}

@media (max-width: 768px) {
    .hero-import h1 {
        font-size: 36px;
    }

    .hero-import p {
        font-size: 16px;
    }

    .sec-title h2 {
        font-size: 28px;
    }

    .export-box {
        padding: 25px;
    }

    .feature-strip h2 {
        font-size: 30px;
    }

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