/* Hero Carousel */
.hero-carousel {
    height: 80vh;
    overflow: hidden;
    position: relative;
}

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

.carousel-item:nth-child(3) .hero-image {
    object-position: center 100%;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item {
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    bottom: 30%;
    background: transparent;
    border-radius: 15px;
    padding: 30px;
    padding-left: 50px;
    max-width: 700px;
    margin: 0;
    left: 15%;
    right: auto;
    backdrop-filter: none;
    animation: fadeInUp 1s ease;
    border-left: 5px solid #ffffff;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Carousel Caption Responsive Adjustments */
@media (max-width: 1536px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 1366px) {
    .carousel-caption {
        bottom: 25%;
        left: 12%;
        max-width: 650px;
        padding: 25px;
        padding-left: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 992px) {
    .carousel-caption {
        bottom: 20%;
        left: 10%;
        max-width: 80%;
        padding: 20px;
        padding-left: 30px;
        border-left-width: 4px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        top: 50%;
        bottom: auto;
        left: 5%;
        right: 5%;
        transform: translateY(-50%);
        max-width: 90%;
        padding: 15px;
        padding-left: 20px;
        border-left-width: 3px;
        animation: none;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .btn-outline-custom {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        top: 50%;
        bottom: auto;
        left: 3%;
        right: 3%;
        transform: translateY(-50%);
        max-width: 94%;
        padding: 12px;
        padding-left: 15px;
        border-left-width: 2px;
        animation: none;
    }

    .hero-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .btn-outline-custom {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

.btn-outline-custom {
    background: var(--dark-gray);
    border: 2px solid var(--dark-gray);
    color: var(--bg-white);
    padding: 10px 30px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--dark-gray);
    color: var(--bg-white);
    transform: translateY(-3px);
}

/* Carousel arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 70%;
}

/* End of Carousel */
/* Scoped styles for powder coating content only */
    .powder-coating-content {
        --pc-primary-blue: #0066cc;
        --pc-secondary-blue: #004499;
        --pc-accent-orange: #ff6b35;
        --pc-light-gray: #f8f9fa;
        --pc-medium-gray: #6c757d;
        --pc-dark-gray: #343a40;
        --pc-white: #ffffff;
        --pc-gradient-primary: linear-gradient(135deg, #0066cc, #004499);
        --pc-gradient-accent: linear-gradient(135deg, #ff6b35, #ff8c42);
        --pc-shadow-light: 0 4px 20px rgba(0, 102, 204, 0.1);
        --pc-shadow-medium: 0 8px 40px rgba(0, 102, 204, 0.15);

        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--pc-dark-gray);
        position: relative;
    }

    /* Animated Background */
    .powder-coating-content .animated-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: linear-gradient(-45deg, #f8f9fa, #e9ecef, #dee2e6, #f8f9fa);
        background-size: 400% 400%;
        animation: pc-gradientShift 15s ease infinite;
    }

    @keyframes pc-gradientShift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Main Content */
    .powder-coating-content .main-content {
        position: relative;
        z-index: 1;
    }

    /* Company Info Section - Minimalist Design */
    .powder-coating-content .company-info {
        background: var(--pc-white);
        padding: 5rem 0;
        line-height: 1.8;
    }

    /* New Investment */
    .powder-coating-content .new-investment {
        border-top: 1px solid #e9ecef;
        border-bottom: 1px solid #e9ecef;
        padding: 3rem 0;
        margin-bottom: 4rem;
    }

    .powder-coating-content .investment-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .powder-coating-content .investment-header h2 {
        font-size: 2rem;
        font-weight: 400;
        color: var(--pc-primary-blue);
        margin: 0;
    }

    .powder-coating-content .launch-date {
        background: var(--pc-accent-orange);
        color: var(--pc-white);
        padding: 0.4rem 1.2rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .powder-coating-content .investment-content p {
        font-size: 1.1rem;
        color: var(--pc-dark-gray);
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .powder-coating-content .equipment-list {
        display: grid;
        gap: 1rem;
    }

    .powder-coating-content .equipment-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        background: var(--pc-light-gray);
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }

    .powder-coating-content .equipment-item:hover {
        background: #e9ecef;
    }

    .powder-coating-content .equipment-brand {
        font-weight: 600;
        color: var(--pc-primary-blue);
        font-size: 1.1rem;
    }

    .powder-coating-content .equipment-desc {
        color: var(--pc-medium-gray);
        font-size: 0.95rem;
        text-align: right;
        flex: 1;
        margin-left: 2rem;
    }

    
    /* Process Explanation */
    .powder-coating-content .process-explanation h3 {
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--pc-primary-blue);
        margin-bottom: 1rem;
        border-bottom: 2px solid var(--pc-accent-orange);
        padding-bottom: 0.5rem;
        display: inline-block;
    }

    .powder-coating-content .process-explanation p {
        font-size: 1.1rem;
        color: var(--pc-dark-gray);
        line-height: 1.7;
        margin: 0;
    }

    /* Quality Promise */
    .powder-coating-content .quality-promise {
        margin-bottom: 4rem;
    }

    .powder-coating-content .quality-promise h3 {
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--pc-primary-blue);
        margin-bottom: 1rem;
        border-bottom: 2px solid var(--pc-accent-orange);
        padding-bottom: 0.5rem;
        display: inline-block;
    }

    .powder-coating-content .quality-promise p {
        font-size: 1.1rem;
        color: var(--pc-dark-gray);
        line-height: 1.7;
    }

    /* Mission Statement */
    .powder-coating-content .mission-statement {
        max-width: 800px;
        margin: 0 auto 4rem;
        text-align: center;
    }

    .powder-coating-content .mission-statement p {
        font-size: 1.2rem;
        color: var(--pc-dark-gray);
        font-style: italic;
        padding: 2rem;
        background: linear-gradient(135deg, var(--pc-light-gray), var(--pc-white));
        border-radius: 15px;
        margin: 0;
    }

    /* Process Steps */
    .powder-coating-content .process-section {
        padding: 4rem 0;
        background: var(--pc-light-gray);
    }

    .powder-coating-content .process-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .powder-coating-content .process-header h2 {
        font-size: 2.5rem;
        color: var(--pc-primary-blue);
        margin-bottom: 1rem;
    }

    .powder-coating-content .steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .powder-coating-content .step-card {
        background: var(--pc-white);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: var(--pc-shadow-light);
        transition: all 0.3s ease;
        transform: translateY(20px);
        opacity: 0;
        animation: pc-fadeInUp 0.8s ease-out both;
    }

    .powder-coating-content .step-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .powder-coating-content .step-card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .powder-coating-content .step-card:nth-child(3) {
        animation-delay: 0.6s;
    }

    .powder-coating-content .step-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--pc-shadow-medium);
    }

    .powder-coating-content .step-number {
        display: inline-block;
        width: 60px;
        height: 60px;
        background: var(--pc-gradient-primary);
        color: var(--pc-white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
        animation: pc-pulse 2s infinite;
    }

    @keyframes pc-pulse {

        0%,
        100% {
            transform: scale(1);
        }

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

    .powder-coating-content .step-card h3 {
        color: var(--pc-primary-blue);
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Detailed Process */
    .powder-coating-content .detailed-process {
        padding: 4rem 0;
        background: var(--pc-white);
    }

    .powder-coating-content .process-stage {
        margin-bottom: 4rem;
        padding: 2rem;
        border-radius: 20px;
        background: linear-gradient(135deg, var(--pc-light-gray), var(--pc-white));
        box-shadow: var(--pc-shadow-light);
    }

    .powder-coating-content .stage-header {
        background: var(--pc-gradient-primary);
        color: var(--pc-white);
        padding: 1.5rem 2rem;
        border-radius: 15px;
        margin-bottom: 2rem;
        position: relative;
        overflow: hidden;
    }

    .powder-coating-content .stage-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        animation: pc-shimmer 3s infinite;
    }

    @keyframes pc-shimmer {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(100%);
        }
    }

    .powder-coating-content .stage-header h3 {
        font-size: 1.8rem;
        margin: 0;
        position: relative;
        z-index: 2;
    }

    .powder-coating-content .substep {
        background: var(--pc-white);
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-left: 4px solid var(--pc-accent-orange);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .powder-coating-content .substep:hover {
        transform: translateX(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .powder-coating-content .substep h4 {
        color: var(--pc-primary-blue);
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    /* Equipment Section */
    .powder-coating-content .equipment-section {
        padding: 4rem 0;
        background: var(--pc-dark-gray);
        color: var(--pc-white);
    }

    .powder-coating-content .equipment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .powder-coating-content .equipment-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .powder-coating-content .equipment-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }

    .powder-coating-content .equipment-icon {
        width: 60px;
        height: 60px;
        background: var(--pc-gradient-accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    /* Quality Control */
    .powder-coating-content .quality-section {
        padding: 4rem 0;
        background: var(--pc-light-gray);
    }

    .powder-coating-content .quality-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .powder-coating-content .quality-card {
        background: var(--pc-white);
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        box-shadow: var(--pc-shadow-light);
        transition: all 0.3s ease;
    }

    .powder-coating-content .quality-card:hover {
        transform: scale(1.05);
    }

    .powder-coating-content .quality-icon {
        width: 80px;
        height: 80px;
        background: var(--pc-gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 2rem;
        color: var(--pc-white);
    }

    /* Scroll animations */
    .powder-coating-content .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .powder-coating-content .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    @keyframes pc-fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .powder-coating-content .investment-header {
            flex-direction: column;
            text-align: center;
        }

        .powder-coating-content .investment-header h2 {
            font-size: 1.6rem;
        }

        .powder-coating-content .equipment-item {
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
        }

        .powder-coating-content .stat-number {
            font-size: 2.5rem;
        }

        .powder-coating-content .step-card {
            padding: 1.5rem;
        }

        .powder-coating-content .steps-container {
            grid-template-columns: 1fr;
        }

        .powder-coating-content .equipment-grid {
            grid-template-columns: 1fr;
        }

        .powder-coating-content .quality-features {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
    }

    @media (max-width: 576px) {
        .powder-coating-content .company-overview .row {
            gap: 1rem;
        }

        .powder-coating-content .stat-card {
            padding: 1.5rem 0.5rem;
        }
    }
/* Powder Coating Page video */
.video-container {
  max-width: 900px;    /* optional: cap width */
  margin: 0 auto;
  aspect-ratio: 16 / 9; /* keeps a 16:9 ratio */
  background: #000;     /* fallback while iframe loads */
  border-radius: 8px;   /* optional */
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.process-video-section {
padding: 80px 0;
background: #f5f7fb; /* same light bg as cards section */
}


.process-video-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 16px;
text-align: center;
}


.process-video-header {
margin-bottom: 40px;
}


.process-video-title {
font-size: 2.2rem;
font-weight: 600;
color: #0066d6; /* same blue as step titles */
margin-bottom: 8px;
}


.process-video-subtitle {
font-size: 1rem;
color: #5f6b7a;
margin: 0;
}


/* Card around the video to resemble step cards */
.process-video-card {
background: #ffffff;
border-radius: 24px;
box-shadow: 0 18px 40px rgba(15, 35, 52, 0.08);
padding: 24px;
max-width: 1200px;
margin: 0 auto;
}


.process-video-frame {
position: relative;
width: 100%;
padding-top: 56.25%; /* 16:9 ratio */
border-radius: 30px;
overflow: hidden;
}


.process-video-frame iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: none;
}


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


.process-video-title {
font-size: 1.8rem;
}

.process-video-frame {
border-radius: 14px;
}
}
/* End of section layout to match three-step block */
/*Contact us section styles */
.animated-btn {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.animated-btn:hover {
transform: scale(1.05);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


.custom-btn {
background: linear-gradient(90deg, #ff8800, #d33d10);
border: none;
border-radius: 50px;
color: #fff;
padding: 12px 30px;
}


.contact-hero {
height: 600px;
position: relative;
overflow: hidden;
}


.contact-hero-bg {
    /* background-image removed — set by HTML to make image source explicit in markup */
    background: none;
    background-color: #0b1220; /* dark fallback while image loads */
    background-position: center center;
    background-size: cover;
    filter: blur(5px);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform: scale(1.05);
/* prevents edges from appearing after blur */
}


.contact-hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}


.contact-hero-content {
position: relative;
z-index: 2;
}
/*end of powder coating css */

/*Equipment showcase*/
  /* Equipment Showcase */
  .powder-coating-content .equipment-showcase {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
  }

  .powder-coating-content .equipment-photo-card {
      background: var(--pc-white);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--pc-shadow-light);
      transition: all 0.3s ease;
  }

  .powder-coating-content .equipment-photo-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--pc-shadow-medium);
  }

  .powder-coating-content .equipment-photo-wrapper {
      width: 100%;
      height:400px;
      overflow: hidden;
      background: var(--pc-light-gray);
  }

  .powder-coating-content .equipment-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }

  .powder-coating-content .equipment-photo-card:hover .equipment-photo {
      transform: scale(1.05);
  }

  .powder-coating-content .equipment-photo-label {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
  }

  .powder-coating-content .equipment-photo-brand {
      font-weight: 700;
      font-size: 1.3rem;
      color: var(--pc-primary-blue);
  }

  .powder-coating-content .equipment-photo-desc {
      font-size: 0.95rem;
      color: var(--pc-medium-gray);
  }

  @media (max-width: 768px) {
      .powder-coating-content .equipment-showcase {
          grid-template-columns: 1fr;
      }

      .powder-coating-content .equipment-photo-wrapper {
          height: 250px;
      }
  }
  /*End of Equipment showcase section */