.navba {
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 15px 30px;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display:flex;
  align-items: center;
  position: relative;
  overflow: visible;
}

.logo {
  height: 2.5rem;
  width: auto;
  margin-right: 12px;
}

.company-name {
  color: #008080;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  justify-content: center;
  font-size: clamp(0.8rem,1.5vw,1rem);
  line-height: 1.4;
  max-width: 200px;
  word-wrap: break-word;
  
}
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font and Body */
body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
  padding: 20px;
   background: linear-gradient(135deg, #edf9ef, #008080);
 font-size: clamp(1rem, 2vw, 1.5rem);
  }

/* Header */
.header {
  text-align: center;
  padding: 40px 20px;
}

.header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
}

.header p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

/* Product Grid */

/* Product Card */

.footer {
      background-color: #333;
      color: #fff;
      padding: 20px 0;
      text-align: center;
    }

    .footer a {
      color: #ddd;
      margin: 0 10px;
      text-decoration: none;
    }

    .footer a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .footer .social-icons {
      margin-top: 10px;
    }

    .footer .social-icons i {
      margin: 0 8px;
      cursor: pointer;
    }

    .footer p {
      margin-top: 10px;
      ;
      color: #aaa;
      font-size: clamp(1rem, 2vw, 1.5rem);
    }
   .card-container {
      display:grid;
      flex-wrap: wrap;
      grid-template-columns:repeat(3,1fr);
      gap: 30px;
      padding: 20px 0;
      max-width: 1200px;
      margin: auto;
    }
    @media (max-width: 1024px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr); /* tablet */
  }
}

@media (max-width: 600px) {
  .card-container {
    grid-template-columns: 1fr; /* mobile */
  }
}

    .card {
      width: 100%;
      flex:1 1 1000px;
      height:clamp(500px,80vw,750px);
      perspective: 1000px;
      position: relative;
      align-items: center;
      box-shadow: #008080;
      border-radius: 15px;

    }

    .card-inner {
      width: 100%;
      height: 100%;
      transition: transform 0.6s ease;
      transform-style: preserve-3d;
      position: relative;
    }

    .card.flipped .card-inner {
      transform: rotateY(180deg);
    }

    .card-front,
    .card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border: 1px solid #ccc;
      background: white;
      box-sizing: border-box;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      font-size: small;
      object-fit: contain;
      
    }

    .card-front {
      z-index: 2;
      width: 100%;
      height: 100%;
      align-items: flex-start;
      text-align: center;
      padding: 20px 15px;
      box-sizing:border-box;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      border-radius: 20px;
      object-fit: contain;
      padding-bottom:50px;
      padding-top: 50px;
      overflow-y: auto;
    }

    .card-back {
      transform: rotateY(180deg);
      text-align: center;
      overflow-y: auto;
      border-radius: 15px;
      object-fit: contain;
      height: 100%;
    }

    .product-image {
      width:calc(100% - 20px);
      max-height: 200px;
      object-fit: contain;
      border-radius: 5px;
      margin: 10px auto 15px auto;
      display: block;
    }

    .card-front h3 {
      margin: 10px 0 5px;
    }

    .short-description {
      font-size: 0.95rem;
      margin-bottom: 10px;
    }

    .info-section {
      margin-bottom: 10px;
    }

    .info-section ul {
      margin: 5px 0 0 20px;
      padding: 0;
    }

    button {
      padding: 8px 12px;
      background-color: #007bff;
      border: none;
      color: white;
      cursor: pointer;
      border-radius: 4px;
      font-size: 0.9rem;
    }

    button:hover {
      background-color: #0056b3;
    }




