.contact-banner {
    min-height: 320px;
    display: flex;
    align-items: center;

    /* DEMO IMAGE */
    background:
        linear-gradient(to right, #efe7da 40%, rgba(0, 0, 0, 0.15)),
        url("../img/1 (5).jpg");

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* Left text */
.banner-content {
    padding: 60px;
    max-width: 500px;
}

.banner-content h1 {
    font-size: 42px;
    color: #c7921e;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 16px;
    color: #333;
}

/* Tablet */
@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-banner {
        background:
            linear-gradient(to bottom, rgba(239, 231, 218, 0.95), rgba(239, 231, 218, 0.85)),
            url("../img/1 (5).jpg");
        background-position: center;
        text-align: center;
    }

    .banner-content {
        padding: 40px 20px;
        margin: auto;
    }

    .banner-content h1 {
        font-size: 28px;
    }
}





.product-launch-section {
  padding: 80px 0;
  background: #f8f8f8;
  font-family: Arial, sans-serif;
}

/* Center Content */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* Titles */
.top-title {
  color: #f5b400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
}

.section-text {
  color: #555;
  max-width: 800px;
  margin: auto;
  font-size: 15px;
  line-height: 1.6;
}

/* Line */
.title-line {
  width: 80px;
  height: 3px;
  background: #f5b400;
  margin: 20px auto 0;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 20px;
}

/* Image Box */
.image-box {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

/* Hover Effect */
.image-box:hover img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-title {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .image-grid {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 22px;
  }
}





.hero-slider {
  width: 100%;
  position: relative;
  font-family: Arial, sans-serif;
}

/* Background */
.hero-slide {
  width: 100%;
  min-height: 400px;
  height: 100vh;
  max-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* Container */
.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  position: relative;
  z-index: 2;
}

/* Text Box */
.hero-content {
  color: #fff;
  max-width: 700px;
}

/* Heading Responsive */
.hero-content h2 {
  font-size: clamp(20px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
}

/* Paragraph Responsive */
.hero-content p {
  margin-top: 15px;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.6;
  color: #ddd;
}

/* Yellow Line */
.hero-line {
  width: 80px;
  height: 3px;
  background: #f5b400;
  margin: 15px 0;
}

/* Button */
.hero-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #f5b400;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-slide {
    height: auto;
    padding: 80px 0;
  }

  .hero-content {
    max-width: 100%;
  }
}







.basic-parameter-section {
    padding: 60px 0;
    background: #f7f7f7;
}

/* Title */
.section_title {
    text-align: center;
    margin-bottom: 25px;
}

.con_title {
    font-size: 30px;
    font-weight: 700;
}

.line_bottom {
    width: 90px;
    height: 4px;
    background: #f5b400;
    margin: 10px auto;
}

/* Responsive Table Wrapper */
.table-responsive {
    max-width: 1200px;
    margin: auto;
    overflow-x: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Table Style */
.parameter-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.parameter-table th,
.parameter-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

/* Left Column Style */
.parameter-table th {
    width: 30%;
    background: #f5f5f5;
    font-weight: bold;
}

/* Zebra Effect */
.parameter-table tr:nth-child(even) {
    background: #fafafa;
}

/* Hover Effect */
.parameter-table tr:hover {
    background: #fff3d4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .con_title {
        font-size: 22px;
    }

    .parameter-table th,
    .parameter-table td {
        font-size: 14px;
        padding: 10px;
    }
}

