h3 {
    font-family: 'arial';
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 2px;
    background-color: #e4d9c1;
    padding: 0px 0px 10px 0px;
    margin: 0px;
}

.maincontent{
    width:"100%"";
}

.mainimg{
    width: 100%;
}

.mask{
    opacity: 0.2
}

.sticky-header{
    position: sticky;
    top: 0;

    display: flex;
    height: 160px;
    background-color: #1A1A1A;
    z-index: 5;
}

@keyframes zoom-in-out {
    0% {
      transform: scale(1);
    }

    100% {
      transform: scale(1.3);
    }
  }

.punch-container{
    align-items: center; /* Vertically centers content */
    justify-content: center; /* Horizontally centers content */
}

.punch-title{
    text-align: center;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: bold;
    padding-bottom: 20px;
}

.punch-text{
    max-width: 840px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    text-align: center;
    line-height: 36px;.
}

.zoom-parent{
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content (optional) */
    overflow: hidden;
    background-color: #1A1A1A;
}
  
.zoom-box {
    margin: 0px;
    height: 1000px;
    object-fit: cover;
    position: relative;
    animation: zoom-in-out 8s ease-in-out infinite; /* 3 seconds duration, infinite loop */
}


.tile-container {
    display: grid; /* Enables CSS Grid layout */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Creates flexible columns */
    gap: 40px; /* Adds space between tiles */
    padding: 20px;
    background-color: #1A1A1A;
    min-height: 120px;
  }
  
  .tile {
    background-color: #AC8C66;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block; /* For centering content within the tile */
    justify-content: center;
    align-items: center;
    min-height: 100px; /* Ensures a minimum height for tiles */
  }

  .metric{
    font-family: 'Montserrat', sans-serif;
    color: #1A1A1A;
    font-size: 80px;
    font-weight: bolder;
  }

  .metric-unit{
    font-family: 'Montserrat', sans-serif;
    color: #1A1A1A;
    font-size: 24px;
    font-weight: normal;
  }

  .metric-name{
    color: #1A1A1A;
    font-size: 42px;
    font-weight: bolder;
    display: block;
    font-family: 'Montserrat', sans-serif;
  }


.galary-img{  
  width: -webkit-fill-available;
}
