
/*---------------------Gallary Robots Start------------------------- */
   .gallery-wrapper {
      width: calc(100% - 40px); /* 20px margin on left + 20px on right = 40px */
	  margin: 20px;            /* top/bottom 0, left/right 20px */
	  padding: 20px 30px;
	  box-sizing: border-box;
	  background-color: #141414;
	}
   
   h2 {
      text-align: center;
      margin-bottom: 30px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .gallery-card {
      background: #C0C0C0;
	  /* background: linear-gradient(105deg, #ff6600, #C0C0C0); */
      /* border-radius: 10px; */
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
    }

    .gallery-card img,
    .gallery-card1 video {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-text {
      padding: 15px;
    }

    .card-text h4 {
      margin: 0 0 8px;
      font-size: 16px;
      color: #000;
    }

    .card-text p {
      margin: 0;
      font-size: 14px;
      color: #000;
    }

    .load-more-btn {
      display: block;
      margin: 30px auto;
      padding: 12px 24px;
      font-size: 16px;
      background: #ff6600;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .load-more-btn:hover {
      background: #0056b3;
    }
	
	.title-Center2 {
		font-family: Century Gothic;
		font-size: 2.5rem;
		border-radius: 8px;
	  	max-width: 100%;
	  	font-weight:normal;
		color: #ff6600;
		text-align: center;
        padding:1rem 0rem;		

    }
	.gallery-description {
	  text-align: center;
	  /* max-width: 1200px; */
	  width:100%;
	  margin: 10px auto 20px;
	  font-size: 1.2rem;
	  line-height: 1.6;
	  color: #c1c1c1;
	  padding: 0 15px;
	}
	
	.gallery-description-p1 {
	  text-align: center;
	  /* max-width: 1200px; */
	  width:100%;
	  margin: 10px auto 20px;
	  font-size: 1.2rem;
	  line-height: 1.6;
	  color: white;
	  padding: 0 15px;
	}
	
	/* UL and LI styles inside cards */
.card-text ul {
    list-style-type: disc;
    padding-left: 1.2rem; /* space for bullets */
    margin: 8px 0;
}

.card-text li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #000; /* matches card text */
    line-height: 1.4;
}

/* Optional: custom orange bullets to match theme */
.card-text ul li::marker {
    color: #ff6600;
}
	
/*---------------------Gallary Robots End------------------------- */