.btn-primary {
    background-color: #d40000;
    border-color: #d40000;
    color: white;
}
.btn-primary:hover {
    background-color: #b30000;
    border-color: #b30000;
}


.section {
    padding: 80px 0;
}

.video-banner {
    /* position: relative;
    overflow: hidden;
    height: 80vh; Adjust the banner height */
}
.video-banner video {
    /* position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1; */
    width: 100%;
    height: auto;
    object-fit: cover;
}
.video-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* Optional dark overlay */
    z-index: 2;
}
.video-banner .content {
    /* position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%); */
    /* position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3; */
    position: relative;
    transform: unset;
    /* top: unset; */
    top: -5px;
    text-align: center;
    background: #d40000;
    color: #fff;
    padding: 30px;
}


.about-section {
    padding: 120px 0;
}
.about-section img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 450px;
}

@media (max-width: 768px) {
    .about-section .underline {
        margin-left: auto;
        margin-right: auto;
    }
}

.underline {
    border: 0;
    height: 3px;
    width: 60px;
    background-color: #d40000;
    opacity: 1;
}
.underline.light {
    background: #fff;
}






.precastWallSection {
    /* padding: 80px 0; */
    /* background-image: url('assets/images/bg-1.JPG');
    background-size: cover;
    background-position: center;
    position: relative; */
}

.inner {
    background-color: #d40000;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;   
}
.inner .title {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
}
.inner .desc {
    color: #fff;
    font-size: 18px;
    margin-top: 16px;
}

.imageGrid .bigImage {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}
.imageGrid .bigImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s;
}
.imageGrid .bigImage img:hover {
    filter: brightness(0.8);
    transform: scale(1.05);
}

.imageGrid .images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 70vh;
}
@media screen and (max-width: 768px) {
    .imageGrid .images {
        grid-template-columns: 1fr;
    }
}
.imageGrid .images .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.imageGrid .images .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s;
}
.imageGrid .images .image:hover img {
    filter: brightness(0.8);
    transform: scale(1.05);
}







.chartSection {
    padding: 120px 0;
    background-color: #f8f9fa;
}

.bubble {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
    background-color: #d40000;
}
.bubble .icon {
    margin: auto;
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bubble .icon img,
.bubble .icon svg {
    padding: 20px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s;
}

.bubble:hover {
    transform: translateY(-5px);
}
.bubble-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0d6efd;
    color: #fff;
}
.bubble:hover .bubble-number {
}
.bubble-text {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    color: #fff;
}
.bubble:hover .bubble-text {
}


.chartSection .chartImage {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.chartSection .chartImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s;
}


.drawingSection {
    padding: 120px 0;
    background-color: #fff;
}
.drawingSection img {
    width: 100%;
    height: auto;
}





header.bg-light {
    background-color: #fff !important;
    position: sticky;
    top: 0;
    z-index: 1050;
    /* Ensures header stays above other content */
}

.manufacturer-section {
    background: linear-gradient(135deg, #e9f1ff, #ffffff);
    padding: 60px 0;
}
.manufacturer-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2rem;
    color: #d40000;
}
.manufacturer-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    white-space: pre-line; /* preserves line breaks from your input */
}
.manufacturer-btn {
    background-color: #0d6efd;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    transition: background-color 0.3s;
}
.manufacturer-btn:hover {
    background-color: #0b5ed7;
}



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

    table {
      border-collapse: collapse;
      width: 100%;
      min-width: 800px;
      background-color: #fff;
    }

    thead {
      background-color: #003366;
      color: white;
    }

    th, td {
      padding: 12px;
      border: 1px solid #ccc;
      text-align: left;
      vertical-align: top;
    }

    tr:nth-child(even) {
      background-color: #f2f2f2;
    }

    .section-header {
        background-color: #d40000!important;
        color: white;
        font-weight: bold;
    }
    .section-header td {
        text-align: center;
    }

    @media (max-width: 768px) {
      table {
        font-size: 14px;
      }

      th, td {
        padding: 8px;
      }
    }

    .contact-footer {
  background: #0d4677;
  color: #fff;
  font-family: inherit;
}
.contact-box {
  background: #d40000;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  color: #fff;
  font-size: 1.2rem;
  font-family: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.contact-label {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.contact-info {
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  word-break: break-word;
}
.contact-icon i {
  font-size: 2.5rem;
  color: #fff;
}
.contact-form-box {
  /* background: #0d4677; */
  border-radius: 10px;
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.08); */
}
.form-title {
  color: #fff;
  font-family: inherit;
  font-size: 2rem;
  letter-spacing: 1px;
}
.contact-input {
  background: #dfdfdf;
  border: none;
  color: #000;
  border-radius: 5px;
  font-size: 1.1rem;
  font-family: inherit;
}
.contact-input:focus {
  background: #fff;
  color: #000;
  /* border: 1px solid #fff; */
  box-shadow: none;
}
.contact-btn {
  background: #d40000;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-family: inherit;
  transition: background 0.2s;
}
.contact-btn:hover {
  background: #a30000;
  color: #fff;
}





@media screen and (max-width: 768px) {
    .navbar {
        display: grid;
        grid-template-columns: 1fr auto;
    }
    .navbar-brand img {
        width: 100%!important;
    }
}



.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    /* background-color: red; */
    z-index: 99;
}

.carousel,
.carousel-item,
.carousel-item img {
    height: 80vh;
    width: 100%;
    object-fit: cover;
}
.carousel-item {
    position: relative;
}

.carousel-caption {
    /* bottom: 20%;
    max-width: 1200px;
    left: 50%!important;
    transform: translateX(-50%) */
}

.carousel-caption h1 {
    font-size: 4rem;
}

.carousel-item {
  /* position: relative; */
  /* height: 100vh; */
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: unset;
  width: 100%;
  text-align: center;
  z-index: 2;
  max-width: 1000px;
  background-color: rgba(0,0,0,0.6);
  height: auto;
  padding: 16px;
  border-radius: 32px;
}

#toggleBtn {
    display: none;
}

@media (max-width: 991px) {
    .carousel-caption h1 {
        font-size: 32px;
    }

    .carousel-caption p {
        font-size: 12px;
    }

    #toggleBtn {
        display: block;
    }

    .truncate-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2; /* show only 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

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

  display: none;
}



.tech-section .features-section .feature-grid {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
}
.tech-section .features-section .feature-grid .feature-card {
    flex: 1 0 calc(33% - 1rem);
    max-width: 400px;
    background-color: rgba(212, 0, 0, 0.1);
    padding: 20px 25px;
    border-left: 5px solid #d40000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}


.tech-section .feature-box {
    background-color: rgba(212,0,0,0.1);
    padding: 20px 25px;
    border-left: 5px solid #d40000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.tech-section .feature-box h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.tech-section .feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}




.batching-section {
    background-color: #f8f9fa;
}

.batching-section h2 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.batching-section .highlight {
    color: #d40000;
}

.batching-section .batch-item {
    background-color: rgba(212, 0, 0, 0.1);
    border-left: 4px solid #d40000;
    padding: 15px 20px;
    /* margin-bottom: 15px; */
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.batching-section .batch-item i {
    font-size: 1.2rem;
    color: #d40000;
    margin-right: 12px;
    margin-top: 3px;
}

.batching-section .batch-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    display: grid;
}
.batching-section .batch-item p strong {
    font-size: 24px;
}

@media (min-width: 768px) {
    .batching-section .batch-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}







.autoclaving-section {
    background: linear-gradient(to right, #1f1f1f, #2e2e2e);
    color: #fff;
    padding: 80px 20px;
}

.autoclaving-section .autoclaving-box {
    background-color: #1a1a1a;
    border-left: 6px solid #d40000;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    
    max-width: 900px;
    margin: 0 auto;
    border-left: 6px solid #d40000;
}

.autoclaving-section .autoclaving-title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.autoclaving-section .autoclaving-title .highlight {
    color: #d40000;
}

.autoclaving-section .autoclaving-intro {
    font-size: 1rem;
    margin-bottom: 30px;
}

.autoclaving-section .autoclaving-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.autoclaving-section .autoclaving-feature i {
    font-size: 1.3rem;
    color: #d40000;
    min-width: 24px;
}

.autoclaving-section .autoclaving-feature p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}







.cutting-section {
    /* padding: 60px 20px; */
}

.cutting-section .cutting-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 35px 30px;
    max-width: 900px;
    margin: 0 auto;
    border-left: 6px solid #d40000;
}

.cutting-section .cutting-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cutting-section .cutting-title .highlight {
    color: #d40000;
}

.cutting-section .cutting-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 15px;
}

.cutting-section .cutting-feature i {
    color: #d40000;
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.cutting-section .cutting-feature p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cutting-section .cutting-feature p {
        font-size: 1rem;
    }
}






.automation-section {
    background-color: #fff;
}

.automation-section .automation-box {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-left: 6px solid #d40000;
}

@media (min-width: 768px) {
    .automation-section .automation-box {
        flex-direction: row;
    }
}

.automation-section .automation-content {
    flex: 1;
    padding: 40px 30px;
}

.automation-section .automation-content h2 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.automation-section .automation-content h2 .highlight {
    color: #d40000;
}

.automation-section .automation-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.automation-section .automation-icon {
    background-color: #d40000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 250px;
    padding: 30px;
}

.automation-section .automation-icon i {
    font-size: 4rem;
}

@media (max-width: 767px) {
    .automation-section .automation-icon {
        flex: none;
        padding: 20px;
    }

    .automation-section .automation-icon i {
        font-size: 3rem;
    }
}








.features-section {
    /* padding: 80px 20px; */
    /* background: linear-gradient(to right, #ffffff, #f4f4f4); */
}

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

.features-section .features-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.features-section .features-header span {
    color: #d40000;
}

.features-section .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.features-section .feature-card {
    background-color: rgba(212, 0, 0, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s ease-in-out;
    border-left: 5px solid #d40000;
}

.features-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.features-section .feature-icon {
    font-size: 2.2rem;
    color: #d40000;
    margin-bottom: 15px;
}

.features-section .feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.features-section .feature-sub {
    font-size: 0.9rem;
    color: #666;
}



.boxed-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}