
/* ------------all-heding-section------------ */

    .heding-section
    {
        display:flex;
        flex-direction:column;
        justify-items:center;
        align-items:center;
        gap:20px;
        margin:55px 0px 15px 0px;
        padding:0px 100px;
    }
     .heding-section h2
     {
        margin:0px;
        font-size:35px;
     }
      .heding-section p
      {
        margin:0px;
        text-align:center;
        font-size:16px;
      }
      


/* ------------home-banner-section ------------ */
.home-banner-section 
{
  background: #f9f9f9;
  text-align: center;
  background-size:cover;
  object-fit:cover;
  display:flex;
  justify-content:center;
  align-items:center;
  position: relative;
  z-index:99;
  overflow:hidden;
}
.home-banner-section>img
{
  width:100%;
}

/* ------------about-us-section ------------ */
.cpvc-section {
  padding:50px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.cpvc-section .about-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap:50px;
}
.cpvc-section .about-info div
{
    width:50%;
    display:flex;
    }

.about-info-content
{
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
.about-info-content h1
{
  font-size:35px;
  font-weight:600;
  text-align:left !important;
  width:100%;
  margin-bottom:25px;
}
.about-info-content ul
{
    display:flex;
    flex-direction:column;
    gap:15px;
}
.about-info-content ul li
{
    line-height:20px;
    font-size:16px;
}
.about-info-content ul li span
{
    color:#0a3d62;
    font-weight:600;
}

.cpvc-section p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.cpvc-section .image-content {
  flex: 1;
  text-align: center;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:25px;
  /* padding:20px; */
  overflow: hidden;
}

.cpvc-section .image-content img {
  width:100%;
  border-radius:25px;
  box-shadow: inset 0 4px 15px rgba(0,0,0,0.1);
  margin-top:-15px;
}

/* ------------Product-Range-conatiner ------------ */

.Product-Range-conatiner {
      max-width: 1200px;
      margin:30px auto;
      padding: 20px;
      display:flex;
      flex-wrap: wrap;
      justify-content:center;
      gap:45px;
    }

    .Product-card {
      display: flex;
      flex-direction:column;
      align-items: center;
      background-color: #ffffff;
      border-radius:20px;
      overflow: hidden;
      width:40%;
      border:2px solid #0B2154;
    }

    .Product-card-img
    {
    width:100%;
    height:80%;
    }
    .Product-card-img img
      {
        width:100%;
        height:250px;
      }

    .Product-card-content 
       {
          padding: 25px 25px 20px 25px;
      }
    .Product-card-content h3 {
      color: #0a3d62;
      font-size: 26px;
      margin-bottom: 15px;
    }

    .Product-card-content p {
      font-size:16px;
    }

    @media (max-width: 768px) {
      .Product-card {
        flex-direction: column;
      }

      .Product-card:nth-child(even) {
        flex-direction: column;
      }

      .Product-card-content {
        padding: 20px;
      }

      .Product-card-content h3 {
        font-size: 22px;
      }
    }

    /* ------------Why-Choose-card-container ------------ */

    /* Why-Choose Cards */
.Why-Choose-card-container {
display:flex;
flex-wrap:wrap;
justify-content:center;
  gap: 25px;
  padding:25px 20px 40px 20px;
  justify-content:center;
}

.Why-Choose-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0px 5px rgba(0, 0, 0,0.5);
  transition: 0.3s ease;
  cursor: pointer;
  width:25%;
}

.Why-Choose-card h3
{
    font-size:23px;
    margin-top:15px;
}
.Why-Choose-card p
{
    font-size:16px;
}

.Why-Choose-card:hover {
  transform: translateY(-5px);
}

.Why-Choose-card img {
  width: 70px;
  margin-bottom: 15px;
}

/*-------------applications-section-----------------------*/

.applications-section {
      margin: auto;
      padding: 20px;
      display:flex;
      justify-content:center;
      align-items:center;
    }

    .applications-section h2 {
      text-align: center;
      font-size: 28px;
      color: #0B2154;
      margin-bottom: 30px;
    }

    .applications-section .card-container {
     display:flex;
     flex-wrap:wrap;
     gap:25px;
     justify-content:center;
     margin-top:15px;
    }

    .applications-section .card {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width:25%;
      border:1px dashed #0B2154;
    }

    .applications-section .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    }

   .applications-section .icon-container
   {
    font-size:25px;
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:5px;
    box-shadow:inset 0px 0px 5px rgba(0, 0, 0,0.5);
   }

    .applications-section .card h3 {
    color: #0B2154;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 30px;
    }

    .applications-section .card p {
      color: #555;
      font-size: 16px;
      line-height: 1.6;
    }

/*------------befits-section--------------*/
.befits-section
{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    padding:25px 50px;
    justify-content:center;
}

.befits-section .befits-card
{
    border:2px solid red;
    width:20%;
    padding: 20px 25px;
    border-radius:15px;
    border:1px solid #d81324;
}

.befits-section .befits-card .icon-container
{
  font-size:55px;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#d81324;
  margin-top: 13px;
}


.befits-section .befits-card h3
{
    text-align:center;
    font-size:18px;
    color:#000;
    margin-top: 26px;
    font-weight: 600;
}

/*--------faq-section----------*/

    .faq-container {
      max-width: 800px;
      margin: auto;
      padding:20px;
    }
    .faq-title {
      text-align: center;
      font-size: 24px; /* smaller */
      font-weight: bold;
      margin-bottom: 20px;
      color: #333;
    }
    .accordion {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 8px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    .accordion-header {
      cursor: pointer;
      padding: 12px 18px;
      font-size: 16px; /* reduced */
      font-weight:500;
      background: #e63946;
      color: #fff;
      border: none;
      text-align: left;
      outline: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
    }
    .accordion-header:hover {
      background: #d62828;
    }
    .icon {
      font-size: 18px; /* smaller icon */
      font-weight: bold;
      transition: transform 0.3s ease;
    }
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      padding: 0 18px;
      font-size: 15px; /* reduced */
      color: #444;
      background: #fff;
      transition: max-height 0.4s ease, padding 0.3s ease;
      line-height: 1.5;
    }
    .accordion.active .accordion-content {
      max-height: 300px; /* enough for content */
      padding: 12px 18px;
    }
    .accordion.active .icon {
      transform: rotate(180deg);
    }







/*--------faq-section----------*/




/*--------media-screen---------*/

@media only screen and (max-width: 600px) {

 .home-banner-section
 {
      padding: 40px 20px;
      height: 100%;
      text-align:left;
 }

 .home-banner-items h1
 {
    font-size:35px;
    background:none;
    color:#fff;
    text-align:left;
 }

 .home-banner-items p
 {
  color:#c3c0c0;
  text-align:left;
  line-height: 25px;
 }

.home-banner-items .cta-btn
 {
  text-align:left !important;
 }
 .cpvc-section .about-info
 {
  flex-direction:column;
  gap:25px;
 }
 .cpvc-section
 {
      padding: 35px 20px 20px 20px;
 }
 .cpvc-section .about-info div
 {
  width:100%;
 }
 .heding-section
 {
    margin:30px 0px 0px 0px;
    padding: 20px;
    align-items: start;
 }
 .heding-section h2
 {
      font-size: 28px;
 }
  .heding-section p
  {
    text-align:left;
  }

  .Why-Choose-card-container
  {
    padding:20px !important;
  }
    .Why-Choose-card-container .Why-Choose-card
  {
    width:100%;
    text-align:left !important;
  }
  .Product-Range-conatiner
  {
   margin:0px !important;
   gap:20px !important;
  }

  .Product-card
  {
    width:100%;
  }
  .applications-section .card-container
  {
    margin:0px !important;
  }
  .applications-section .card
  {
    width:100%;
  }

  .applications-section .icon-container
  {
    font-size: 35px;
    width: 60px;
    height: 60px;
  }
  .befits-section
  {
     padding:20px;
  }
  .befits-section .befits-card
  {
    width: 100%
  }
  .cpvc-section01
  {
    padding-top:0px !important;
  }
}


/*--------media-screen---------*/


