body{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Square721';
    src: url('square721_dmnormal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  h1, h4{
    font-family: 'Square721', Arial, sans-serif;
    font-weight: 600;
    color: #544c44
  }

/* banner */

.main-banner {
    position: relative;
    background: url(img/impress.webp) no-repeat center top fixed;
    background-size: cover;
    padding: 100px 0;
    color: #FFF;
    min-height: 720px;
}

.main-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 44%); /* Adjust the opacity for the overlay effect */
    z-index: 1;
    mix-blnd-mode:multiply;
}

.main-banner .container {
    position: relative;
    z-index: 2;
}

.lp-logo{
    width: 200px;
}

.btn-enquire{
    color: white;
    background: #df6938;
    margin-top: 40px;
    font-weight: 600;
    font-size: 25px;
}
}

.btn-enquire:hover{
  background-color: #ff9569;
  color: black;
}


.form-box {
    background-color: #382824c7;
    padding: 40px;
    border-radius: 20px;
    border-width: 5px;
    border-color: #c70c0094 !important;
    border: solid;
}

@media(max-width:700px){
  .form-box{
    padding: 20px 20px;
  }
}

/* about */

.text{
    font-size: 18px;
}


/* counter */

.counter-section {
    padding: 40px 0;
    text-align: center;
    color: #fff;
    background:#382824;
    background-size: cover;
  }
  
  .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .counter-box {
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
  }
  
  .counter-box h2 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: bold;
  }
  
  .counter-box p {
    margin: 10px 0 0;
    font-size: 1.2rem;
  }
  
  .counter-box:not(:last-child)::after {
    content: '';
    height: 60px;
    width: 1px;
    background-color: #555;
    position: absolute;
    right: 0;
  }
  
  .counter-box p{
    font-family: 'Square721', Arial, sans-serif;
  }

  /* project */

  .project {
    position: relative;
    overflow: hidden;
  }
  
  .project-img {
    width: 100%;
    display: block;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .project:hover .project-img {
    transform: scale(1.1); /* Zoom-in effect on hover */
  }
  
  .overlayy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .project:hover .overlayy {
    opacity: 1; /* Show overlay on hover */
  }
  
  .overlayy-content {
    color: #fff;
    text-align: center;
  }
  
  .overlayy-content h2 {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .overlayy-content p {
    margin-top: 10px;
    font-size: 1rem;
  }


.main-banner2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(189 0 0 / 44%); /* Adjust the opacity for the overlay effect */
    z-index: 1;
    mix-blnd-mode:multiply;
}

.main-banner2 .container {
    position: relative;
    z-index: 2;
}



/*whats app button*/
.whatsapp-button {
    position: fixed;        /* This will keep the button in a fixed position */
    bottom: 20px;           /* Distance from bottom */
    right: 20px;            /* Distance from right */
    background-color: #19c959; /* WhatsApp green color */
    color: #fff !important;
    padding: 5px 12px 6px 12px;
    border: 1px solid;
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    z-index: 1000;          /* So that it stays above other elements */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button a{
    color:#FFF;
}

   .strapline-slider{
    width:100%;
    overflow:hidden;
    background:#5a381e;   
    color:#fff;          
    font-size:18px;
    line-height:1.4;
    padding:10px 0;
    position:relative;
    user-select:none;
  }
  .strapline-track{
    display:flex;
    white-space:nowrap;
    will-change:transform;
    gap: var(--gap, 40px);         
    animation: scroll var(--dur, 20s) linear infinite;
  }
  .strapline-item{ display:inline-block; padding:0 6px; }
  /* Pause on hover (optional) */
  .strapline-slider:hover .strapline-track{ animation-play-state: paused; }

  @keyframes scroll{
    from{ transform: translateX(0); }
    to  { transform: translateX(calc(-1 * var(--distance, 600px))); }
  }
