<?php include('header.php'); ?>
<!-- page-title -->
<div class="prt-page-title-row-1">
    <div class="prt-page-title-row-inner-1">
        <div class="container">
            <div class="row align-items-center">
                <div class="col-lg-12">
                    
                    <!-- Title -->
                    <div class="page-title-heading">
                        <h2 class="title">Product</h2>
                    </div>

                    <!-- Breadcrumb (kept inside same banner background) -->
                    <div class="breadcrumb-wrapper-main">
                        <div class="breadcrumb-wrapper-inner">
                            <span><a href="index.php" class="home">Home</a></span>
                            <span class="prt-bread-sep"> - </span>
                            <span>Product</span>
                        </div>
                    </div>

                </div>    
            </div>
        </div>
    </div>
</div>

<style>
/* Banner background applies to full section */
.prt-page-title-row-1 {
    background: url(images/header-imagesev1.png) no-repeat center center;
    background-size: cover;   /* fills whole section */
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 0;          /* ensures space for breadcrumbs */
    color: #fff;              /* makes text visible on banner */
}

/* Inner adjustments */
.page-title-heading {
    margin-bottom: 20px;
}
.page-title-heading h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}
.breadcrumb-wrapper-inner {
    font-size: 16px;
    color: #fff;
}
.breadcrumb-wrapper-inner a {
    color: #000;
    text-decoration: none;
}
.breadcrumb-wrapper-inner a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .prt-page-title-row-1 {
    min-height: 300px;
    padding: 40px 15px;
    background-position: top center;
  }
  .page-title-heading h2 {
    font-size: 24px;
    text-align: center;
  }
  .breadcrumb-wrapper-inner {
    text-align: center;
    font-size: 14px;
  }
}
</style>



<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Call to Action</title>
  <style>
    @keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

    body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff;
      color: #333;
      text-align: center;
    }

.cta-section {
  height: 10vh; /* Full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertical center */
  align-items: center;     /* Horizontal center */
  padding: 0 5px;
  box-sizing: border-box;
  text-align: center;
animation: fadeIn 1s ease-out;
}
    .cta-heading {
      font-size: 2.5rem;
      font-weight: 500;
      margin: 0;
    }

    .cta-heading .highlight {
      color: #28a745; /* Green */
    }

    .cta-subtext {
      font-size: 1rem;
      color: #666;
      margin-top: 5px;
      max-width: 100px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button {
      margin-top: 10px;
    }

    .cta-button a {
      background-color: #28a745;
      color: #fff;
      padding: 5px 5px;
      text-decoration: none;
      font-weight: 200;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .cta-button a:hover {
      background-color: #218838;
    }


  </style>
</head>
<body>

<div class="cta-section">
  <h1 class="cta-heading">Display Unit</h1>
</div>

</body>
</html>










<!--site-main start-->
<div class="site-main">
    <!-- <div class="prt-tabs prt-tab-style-02 text-center">
        <ul class="tabs">
            <li class="tab active"><a href="#">Designing</a></li>
            <li class="tab"><a href="#">Approved</a></li>
            <li class="tab"><a href="#">Guaranteed</a></li>
        </ul>
    </div> -->
    <!--prt-row-->
    <section class="prt-row bg-base-grey clearfix">
       <div class="container">
        <div class="prt-team-member-single-content-wrapper prt-team-member-view-default">

            


<!-- Section Title -->
 <!--<h2 style="text-align: left; margin: 20px 40px 0; font-size: 24px; font-weight: 600; color: #333;">
  HIGH VOLTAGE BATTERY
</h2> -->

<!-- PRODUCT GRID CONTAINER -->
<div class="grid-container" style="display: flex; flex-wrap: wrap; gap: 30px; justify-content: flex-start; padding: 40px;">

  <!-- Battery Card -->
<div class="battery-card">
  <img src="images/product/product_display.png" alt="Battery 01">
  <div class="battery-title">10 inch TFT Display</div>


  <a href="battery-details.php?id=display-unit" class="view-button">View Details</a>
</div>



</div>









<!-- CSS STYLES -->
<style>
  .battery-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
  }

.battery-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

  .battery-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .view-button {
    background-color: green;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .battery-details {
    display: none;
    text-align: left;
    font-size: 14px;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 992px) {
    .battery-card {
      width: 45%;
    }
  }

  @media (max-width: 600px) {
    .battery-card {
      width: 100%;
    }
  }
</style>

<!-- JS -->
<script>
  function toggleDetails(button) {
    const details = button.parentElement.querySelector('.battery-details');
    const visible = details.style.display === 'block';
    details.style.display = visible ? 'none' : 'block';
    button.textContent = visible ? 'View Details' : 'Hide Details';
  }
</script>





              </div> 
            </div>       
    </section>
    <!--prt-row end-->
</div><!--site-main end-->

<?php include('footer.php'); ?>