/*i frame start*/
.iframe-window {
  width: 1000px;      /* width of the window */
  height: 500px;     /* height of the window */
  overflow: hidden;  
  position: relative;
  margin: auto;
}

.iframe-window iframe {
  position: absolute;
  top: -450px;       /* move iframe up/down to show desired section */
  left: -500px;      /* move iframe left/right */
  
  width: 2000px;    
  height: 1800px;   
  border: none;
}

.Look{
	width: 100%;
	margin: auto;
	text-align: center;
	color: white;
}

/*i frame end*/

/*about us info start*/
.about-simple {
  padding: 4rem 1rem;
  background-color: #f4e1a0;
  text-align: center;
}

.about-header h2 {
  font-size: 2rem;
  color: #5C2E00;
  margin-bottom: 0.5rem;
}

.about-header p {
  color: #5C2E00;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media(min-width: 768px) {
  .about-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: #fff8e1;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}

.card h3 {
  font-size: 1.25rem;
  color: #5C2E00;
  margin-bottom: 0.5rem;
}

.card p {
  color: #5C2E00;
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}
/*about us info end*/