.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-1 {
  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;
    }
}





/* Container styling */
.sf-product-section {
  background-color: #d8eadd;
  /* Light greenish background from image */
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.sf-container {
  max-width: 1100px;
  margin: 0 auto;
}

.sf-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

/* Content Column */
.sf-content-col {
  flex: 1;
  min-width: 300px;
}

.sf-main-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.sf-sub-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.sf-divider {
  width: 60px;
  height: 4px;
  background-color: #f39c12;
  /* Orange line */
  margin-bottom: 25px;
}

.sf-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

/* Image Column */
.sf-image-col {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.sf-image-wrapper {
  width: 100%;
  max-width: 500px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sf-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- Responsive Breakpoints --- */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .sf-main-title {
    font-size: 1.8rem;
  }

  .sf-sub-title {
    font-size: 1.5rem;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .sf-row {
    flex-direction: column;
    /* Stack image below text */
    text-align: left;
  }

  .sf-product-section {
    padding: 40px 15px;
  }

  .sf-image-col {
    order: 2;
    /* Content first, then image on mobile */
  }

  .sf-content-col {
    order: 1;
  }
}






/* Section Base Styling */
.sfc-features-section {
  padding: 50px 20px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

.sfc-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive Grid using CSS Grid */
.sfc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns on desktop */
  gap: 20px;
}

/* Card Styling */
.sfc-card {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
}

.sfc-image-box {
  width: 100%;
  aspect-ratio: 4 / 5;
  /* Matches the vertical image style */
  overflow: hidden;
}

.sfc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text Styling below image */
.sfc-text-box {
  padding: 15px 5px;
  text-align: left;
}

.sfc-title-1 {
  font-size: 16px;
  font-weight: 600;
  color: #003366;
  /* Dark blue color from image text */
  margin: 0;
}

/* --- Responsive Breakpoints --- */

/* Tablet View (2 columns) */
@media (max-width: 992px) {
  .sfc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile View (1 column) */
@media (max-width: 600px) {
  .sfc-grid {
    grid-template-columns: 1fr;
  }

  .sfc-text-box {
    text-align: center;
    /* Center text on mobile for better look */
  }
}








/* Section Container */
.sfp-product-grid-section {
  padding: 60px 20px;
  background-color: #fcfcfc;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.sfp-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid Logic */
.sfp-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Desktop: 3 Columns */
  gap: 30px;
}

/* Individual Card */
.sfp-item {
  display: flex;
  flex-direction: column;
}

/* Image Holder - White Background and Aspect Ratio */
.sfp-img-holder {
  background: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  /* Square images */
  margin-bottom: 15px;
}

.sfp-product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Caption and Icon Styling */
.sfp-caption {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-left: 5px;
}

/* Creating the calendar-like icon with CSS */
.sfp-icon-placeholder {
  min-width: 16px;
  height: 16px;
  border: 1.5px solid #555;
  border-radius: 2px;
  position: relative;
  margin-top: 3px;
}

.sfp-icon-placeholder::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: #555;
  opacity: 0.5;
}

.sfp-text {
  font-size: 14px;
  line-height: 1.4;
  color: #334e68;
  /* Blue-grey text color */
  margin: 0;
  font-weight: 500;
}

/* --- Responsive Media Queries --- */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .sfp-grid-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns on Tablet */
    gap: 20px;
  }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  .sfp-grid-container {
    grid-template-columns: 1fr;
    /* 1 Column on Mobile */
  }

  .sfp-img-holder {
    aspect-ratio: auto;
    height: 250px;
  }
}






.sfc-cleaver-section {
  padding: 60px 20px;
  background: #fff;
  font-family: sans-serif;
}

.sfc-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sfc-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sfc-text-col {
  flex: 1;
  min-width: 300px;
}

.sfc-img-col {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.sfc-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.2;
}

.sfc-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.sfc-orange-line {
  width: 50px;
  height: 4px;
  background-color: #f1c40f;
  /* Yellow/Orange line */
  margin-bottom: 30px;
}

.sfc-main-img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

@media (max-width: 768px) {
  .sfc-row {
    flex-direction: column;
    text-align: left;
  }

  .sfc-title {
    font-size: 1.8rem;
  }
}








.sfb-features-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: sans-serif;
}

.sfb-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sfb-main-heading {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.sfb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.sfb-img-box {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 20px;
}

.sfb-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sfb-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.sfb-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 992px) {
  .sfb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sfb-grid {
    grid-template-columns: 1fr;
  }

  .sfb-main-heading {
    font-size: 22px;
  }
}









.sfv-vfl-section {
  padding: 80px 20px;
  background-color: #e0e4e7;
  font-family: 'Arial', sans-serif;
}

.sfv-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sfv-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sfv-content,
.sfv-image {
  flex: 1;
  min-width: 300px;
}

.sfv-title {
  font-size: 32px;
  color: #fff;
  background: transparent;
  margin-bottom: 10px;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.sfv-subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.sfv-divider {
  width: 40px;
  height: 3px;
  background: #f39c12;
  margin-bottom: 30px;
}

.sfv-feat-title {
  color: #2c3e50;
  font-size: 18px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 700;
}

.sfv-feat-desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.sfv-responsive-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .sfv-row {
    flex-direction: column;
    text-align: left;
  }

  .sfv-title {
    font-size: 26px;
    color: #333;
  }
}








/* Unique wrapper to avoid conflicts */
.sf-fusion-section {
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  background-color: #ffffff;
  color: #333;
  line-height: 1.5;
}

.sf-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sf-main-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0b1e33;
}

.sf-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* Flexbox Grid */
.sf-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Card Styling */
.sf-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sf-card-text {
  font-size: 14px;
  height: 50px;
  /* Text alignment fix */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.sf-image-box {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #f9f9f9;
}

.sf-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Technical labels for the 3rd column */
.sf-labels {
  margin-top: 15px;
  text-align: left;
  font-size: 12px;
  color: #444;
}

.sf-label-text {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.sf-label-text::before {
  content: "•";
  position: absolute;
  left: 0;
  color: red;
}

/* Footer Section */
.sf-footer {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sf-footer-text {
  font-size: 13px;
  color: #555;
}

/* --- Media Queries --- */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .sf-main-title {
    font-size: 22px;
  }

  .sf-card {
    min-width: 45%;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .sf-card {
    min-width: 100%;
  }

  .sf-card-text {
    height: auto;
    margin-bottom: 10px;
  }
}







/* Background wrapper */
.sf-stripper-section {
  background-color: #ebede4;
  /* Light greenish-grey background from image */
  padding: 60px 20px;
  font-family: 'Arial Narrow', Arial, sans-serif;
  overflow: hidden;
}

.sf-stripper-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Image Column */
.sf-stripper-image-col {
  flex: 1;
  text-align: center;
}

.sf-stripper-main-img {
  max-width: 100%;
  height: auto;
  /* Optional: drop shadow for depth */
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Content Column */
.sf-stripper-content-col {
  flex: 1;
  text-align: left;
}

.sf-stripper-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a2b3c;
  margin-bottom: 15px;
  text-transform: none;
  line-height: 1.1;
}

.sf-stripper-divider {
  width: 50px;
  height: 4px;
  background-color: #fdb913;
  /* Yellow line */
  margin-bottom: 25px;
}

.sf-stripper-button {
  display: inline-block;
  background-color: #fdb913;
  /* Bright Yellow/Orange */
  color: #1a2b3c;
  padding: 12px 25px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

/* --- Responsive Adjustments --- */

/* Tablet (992px and below) */
@media (max-width: 992px) {
  .sf-stripper-title {
    font-size: 28px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .sf-stripper-container {
    flex-direction: column;
    /* Stack vertically */
    text-align: center;
    gap: 30px;
  }

  .sf-stripper-content-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sf-stripper-title {
    font-size: 24px;
  }

  .sf-stripper-image-col {
    order: 1;
    /* Image stays on top */
  }

  .sf-stripper-content-col {
    order: 2;
  }
}







.sf-detail-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: sans-serif;
}

.sf-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sf-detail-text {
  flex: 1;
  padding-left: 50px;
}

.sf-detail-model {
  font-size: 36px;
  margin-bottom: 5px;
  color: #1a2b3c;
}

.sf-detail-name {
  font-size: 36px;
  margin-top: 0;
  color: #1a2b3c;
  font-weight: 800;
}

.sf-detail-line {
  width: 45px;
  height: 3px;
  background: #fdb913;
  margin-bottom: 20px;
}

.sf-detail-desc {
  color: #6a7c8e;
  font-size: 18px;
}

.sf-detail-diagram {
  flex: 2;
  text-align: center;
}

.sf-detail-diagram img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .sf-detail-container {
    flex-direction: column;
    text-align: center;
  }

  .sf-detail-text {
    padding-left: 0;
    margin-bottom: 40px;
    order: 1;
  }

  .sf-detail-diagram {
    order: 2;
  }

  .sf-detail-line {
    margin: 0 auto 20px;
  }
}






/* Root Container Styling */
.fusion-product-section {
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fusion-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: row;
  /* Desktop view */
  align-items: center;
  gap: 50px;
}

/* Image Section */
.fusion-image-wrapper {
  flex: 1;
  position: relative;
  text-align: center;
}

.fusion-main-img {
  max-width: 100%;
  height: auto;
}

.fusion-action-hint {
  position: absolute;
  bottom: 10px;
  left: 10%;
  display: flex;
  align-items: center;
}

.fusion-hint-text {
  background-color: #b30000;
  color: white;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
}

/* Text Content Section */
.fusion-content-wrapper {
  flex: 1;
}

.fusion-title {
  font-size: 42px;
  color: #0c2340;
  margin-bottom: 10px;
  font-weight: 800;
}

.fusion-divider {
  width: 60px;
  height: 4px;
  background-color: #ffcc00;
  margin-bottom: 25px;
}

.fusion-badge {
  background-color: #ffbf00;
  color: #000;
  display: inline-block;
  padding: 10px 25px;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.fusion-details-list {
  list-style: none;
  padding: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.fusion-details-list li {
  margin-bottom: 8px;
}

/* --- Media Queries (Responsiveness) --- */

/* Tablet View */
@media (max-width: 992px) {
  .fusion-title {
    font-size: 32px;
  }

  .fusion-container {
    gap: 30px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .fusion-container {
    flex-direction: column;
    /* Stacked layout */
    text-align: center;
  }

  .fusion-divider {
    margin: 0 auto 25px auto;
    /* Center divider */
  }

  .fusion-action-hint {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: center;
  }

  .fusion-title {
    font-size: 28px;
  }
}





/* Unique Section Styles */
.svc-commitment-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.svc-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header & Line */
.svc-header {
    text-align: center;
    margin-bottom: 40px;
}

.svc-main-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.svc-yellow-line {
    width: 50px;
    height: 4px;
    background-color: #ffb400; /* Gold/Yellow color from image */
    margin: 0 auto;
}

/* Content Area */
.svc-content-wrapper {
    text-align: left;
    max-width: 950px;
    margin: 0 auto;
}

.svc-intro-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.svc-warranty-stmt {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

/* Terms List Styling */
.svc-terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-terms-list li {
    font-size: 14.5px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.svc-index {
    font-weight: bold;
    margin-right: 8px;
    white-space: nowrap;
}

/* --- RESPONSIVENESS --- */

/* Tablet & Smaller Desktop */
@media (max-width: 992px) {
    .svc-main-title {
        font-size: 24px;
    }
    .svc-warranty-stmt {
        font-size: 17px;
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .svc-commitment-section {
        padding: 40px 15px;
    }
    .svc-main-title {
        font-size: 20px;
    }
    .svc-intro-text, .svc-terms-list li {
        font-size: 13px;
    }
    .svc-warranty-stmt {
        font-size: 15px;
    }
}




/* Video Section Container */
.con_video_area {
    position: relative;
    width: 100%;
    min-height: 450px; /* Desktop height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Ensures text inside is centered */
}

/* Background & Overlay */
.video_bg_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url("../") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center; /* Wrapper ke andar content center karne ke liye */
}

/* Content Box centering */
.con_video_content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Button aur Text ko center karne ke liye */
    justify-content: center;
    z-index: 2;
    width: 100%;
}

/* Play Button Animation */
.play_btn_box {
    margin-bottom: 20px; /* Space between button and text */
    display: flex;
    justify-content: center;
}

.video_btn {
    display: flex; /* Flex use kiya taaki triangle perfect center rahe */
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #ffb400; 
    border-radius: 50%;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.5);
    animation: pulse 2s infinite;
    cursor: pointer;
}

/* Triangle Play Icon */
.play_icon {
    /* triangle positioning logic */
    margin-left: 5px; /* Triangle ko optical center dene ke liye thoda sa right shift */
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #fff;
}

.video_btn:hover {
    transform: scale(1.1);
    background: #fff;
}

.video_btn:hover .play_icon {
    border-left-color: #ffb400;
}

/* Text Styling */
.con_video_content h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0; /* Extra spacing remove karne ke liye */
}

/* --- Animations & Responsive --- */

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 180, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0); }
}

/* Tablet */
@media (max-width: 991px) {
    .con_video_area { min-height: 350px; }
    .con_video_content h2 { font-size: 28px; }
}

/* Mobile */
@media (max-width: 767px) {
    .con_video_area { 
        min-height: 300px;
        background-attachment: scroll;
    }
    .video_btn { width: 60px; height: 60px; }
    .play_icon { 
        border-left-width: 15px; 
        border-top-width: 10px; 
        border-bottom-width: 10px;
        margin-left: 4px;
    }
    .con_video_content h2 { font-size: 20px; }
}





/* Section General Style */
.pdf-download-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #1f2933;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: bold;
}

/* Grid System: Baad mein naye cards add karne par ye apne aap adjust hoga */
.pdf-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 Columns */
    gap: 30px;
}

/* Individual Card Style */
.pdf-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.pdf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.image-placeholder img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.pdf-card h3 {
    font-size: 18px;
    color: #1f2933;
    margin-bottom: 10px;
}

.pdf-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Download Button with Yellow Hover */
.download-btn {
    display: block;
    padding: 12px;
    background-color: #1f2933;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid #1f2933;
}

.download-btn:hover {
    background-color: #ffb400; /* Yellow Color */
    color: #1f2933;
    border-color: #ffb400;
}

/* --- Responsive Settings --- */

/* For Tablets (992px and below) */
@media (max-width: 992px) {
    .pdf-container {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns */
        gap: 20px;
    }
}

/* For Mobile Phones (600px and below) */
@media (max-width: 600px) {
    .pdf-container {
        grid-template-columns: 1fr; /* 1 Column (Full Width) */
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .pdf-card {
        padding: 20px;
    }
}





/* image  */

        /* Yeh aapka main section hai */
        .image-section {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #fff; /* Section ka background color */
            overflow: hidden; /* Image bahar na nikle */
        }

        /* Image styling - No Gaps */
        .full-responsive-img {
            width: 100%;       /* Desktop, Tab, Mobile sab par 100% width */
            display: block;    /* Bottom gap hatane ke liye */
            height: auto;      /* Aspect ratio barabar rahega */
        }


