 
 
     .section-grids {
      display: flex;
      flex-wrap: wrap;
      padding: 4rem 2rem;
      align-items: flex-start;
      justify-content: space-between;
    }

    .text-contentR {
      flex: 1 1 500px;
      max-width: 600px;
      padding-right: 2rem;
    }

    .text-contentR h1 {
      font-size: 2.5rem;
      line-height: 1.2;
      margin-bottom: 1rem;
	  color:white;
	  text-align:left;
    }

    .text-contentR p {
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 1.5rem;
	  color:#fff;
    }

    .btn {
      background-color: #ff6d2e;
      color: #fff;
      padding: 0.9rem 2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
    }

    .card-grid {
      flex: 1 1 600px;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .flip-card {
      background-color: transparent;
      width: 200px;
      height: 300px;
      perspective: 1000px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.6s ease;
      transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 10px;
      overflow: hidden;
      backface-visibility: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .flip-card-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      cursor: pointer;
    }

    .flip-card-back {
      background-color: #ff6d2e;
      color: white;
      transform: rotateY(180deg);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1rem;
      font-size: 1.3rem;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
    }

    .close-lightbox {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
      z-index: 10000;
    }

/* Media Query for Mobile Devices */
/* Media Query for Mobile Devices */
/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  .section-grids {
    flex-direction: column;
    text-align: center;
    width: 100%; /* Full width of the parent container */
    padding: 2rem;  /* Adjust padding */
  }

  .text-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;  /* Ensure the card grid takes full width */
    padding: 0; /* No extra padding */
  }

  /* Flip Card Container */
  .flip-card {
    width: 100%; /* Flip card should take full width on mobile */
    max-width: 100%; /* Ensure it doesn't exceed the container width */
    height: 400px; /* Set height as required */
    margin: 10px 0; /* Adjust margin for spacing */
  }

  .flip-card-inner {
    width: 100%; /* Full width for inner flip card content */
    height: 100%; /* Full height for inner content */
    transition: transform 0.6s ease; /* Smooth rotation */
    transform-style: preserve-3d;
  }

  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    backface-visibility: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .flip-card-front img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures image covers full card */
    cursor: pointer;
  }

  .flip-card-back {
    background-color: #ff6d2e;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
  }
}
