.offer-banner-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* or your page background */
  margin: 0 auto;
  padding: 30px 0;
}

.offer-banner-container {
  width: 90%;
  max-width: 1200px; /* Keeps banner same as your image size */
  border: 2px solid #8cc63f; /* green border like example */
  box-sizing: border-box;
  overflow: hidden;
}

.offer-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .offer-banner-container {
    width: 95%;
    border-width: 1px;
  }

  .offer-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/*** offer second ***/
.offers-section {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.offer-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform 0.2s ease;
}



.offer-left {
  background: #fff5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border-right: 2px dashed #ff7b00;
}

.discount {
  font-size: 20px;
  color: #ff3d00;
  font-weight: 700;
}

.offer-content {
  flex: 1;
  padding: 20px;
}

.offer-content h4 {
  font-weight: 700;
  color: #003366;
}

.offer-content p {
  font-size: 15px;
  color: #444;
  margin: 8px 0;
}

.offer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-offer {
  background-color: #ff7b00;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-offer:hover {
  background-color: #e56a00;
}

/*** SERVICE CARD UPDATED WITH TRANSPARENT BUTTONS ***/
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 25px;
  margin-top: 10px;
  text-align: center;
}

.service-card h4 {
  background: #001d3d;
  color: #fff;
  padding: 12px 0;
  border-radius: 10px;
  margin-bottom: 25px;
}

.service-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.service-btn {
  border: 2px solid #001d3d;
  background-color: transparent;
  color: #000;
  padding: 10px 20px;
  border-radius: 10px; /* smaller curve for squarish shape */
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 250px; /* makes them consistent */
  text-align: center;
}

.service-btn:hover {
  background-color: #001d3d;
  color: #fff;
  transform: translateY(-2px);
  border-color: #001d3d;
}


/* Responsive */
@media (max-width: 768px) {
  .offer-card {
    flex-direction: column;
  }

  .offer-left {
    border-right: none;
    border-bottom: 2px dashed #ff7b00;
  }

  .offer-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .service-buttons {
    flex-direction: column;
    align-items: center;
  }

  .service-btn {
    width: 100%;
  }
}
/*** Counter ***/

.count{
  font-family: 'Josefin Sans', sans-serif;
  font-size: 40px;
  font-weight: bold;
}
.counter-wrapper{
  background: #333;
  background: cover;
  background-position: center center;
  position: relative;
}
.counter-wrapper:after{
  content: '';
  position: absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  background: rgba(0,0,0,.5);
}
.counter-inner{
  position:relative;
  z-index:2;
}
.count-icon{
  font-size: 48px;
}


.logo-img {
    width: 100px;  
    height: 100px;
    object-fit: cover;  
    border-radius: 50%;  
    margin-bottom: 15px;  
}


.project-counter {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap; 
}


@media (max-width: 768px) {
    .project-counter {
        flex-direction: column;
        align-items: center;
    }

    .counter-item {
        margin-bottom: 30px;
    }

    .counter-text h3 {
        font-size: 2rem;
    }

    .counter-text p {
        font-size: 1rem;
    }
}
.offer-heading {
    text-align: center;
    padding: 20px;
}

.offer-heading h1 {
    font-size: 2rem;  /* Default font size for large screens */
    margin: 0;
    color: #333;  /* Text color */
    font-weight: bold;
    line-height: 1.3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .offer-heading h1 {
        font-size: 1.5rem;  /* Smaller font size on mobile */
        padding: 10px;  /* Adjust padding on smaller screens */
    }
}

@media (max-width: 480px) {
    .offer-heading h1 {
        font-size: 1.2rem;  /* Even smaller font size on very small screens */
    }
}

