.what-we-do-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  /*border-radius: 8px;*/
  height: 320px; /* image বড় করার জন্য */
}

.what-we-do-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.what-we-do-image:hover img {
  transform: scale(1.05);
}

.what-we-do-image .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  text-align: left;
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}

/* ✨ Text shadow for readability */
.what-we-do-image .overlay-content h4 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 3px rgba(150, 150, 150, 0.4); /* 👈 subtle gray shadow */
font-family: Helvetica, Arial, sans-serif;
}

.what-we-do-image .overlay-content h2 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(150, 150, 150, 0.4); /* 👈 subtle gray shadow */
font-family: Helvetica, Arial, sans-serif;
}


/* ✅ Button styling */
.what-we-do-image .overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #007B09;
  color: #fff;
  padding: 9px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: background 0.3s ease;
  font-family: Helvetica;
}

.what-we-do-image .overlay-btn:hover {
  background: #005E07;
}

.what-we-do-image .overlay-btn i {
  font-size: 14px;
}


.what-we-do-col-3 {
  padding-left: 10px;
}


/*service Menu */

/* ==== Mega Menu Custom Link ==== */
.mega-menu-service-link {
    background-color: white;
    color: black;
    border: 1px solid grey;
    /*margin-left: 10px;*/
    padding: 3px 5px 3px 5px;
    display: inline-block;
    box-sizing: border-box;
    text-decoration: none;      /* লিংকের underline রিমুভ */
    transition: all 0.3s ease;  /* hover effect smooth করবে */
}

/* Hover Effect (optional but nice!) */
.mega-menu-service-link:hover {
    background-color: #007a09;
    border-color: #666;
    color: #ffff;
}

/* work With Us Menu */
.tender-text {
  font-size: 12px;
  font-weight: 300;
  padding-bottom: 2px;
  color : #000 !important;
  text-align: left;
   font-family: Helvetica, Arial, sans-serif !important;
}

.latest-tender-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #28a745; /* সবুজ বাটন */
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Optional: hover effect */
.latest-tender-btn:hover {
  background-color: #218838; 
  color : #ffff;
}


/* Max Mega Menu column width change */
.mega-menu-wrap .mega-sub-menu .work-with-us-col-2,
.mega-menu-wrap .mega-sub-menu .work-with-us-col-3 {
    width: 350px !important;       /* চাইলে px বা % দিতে পারো */
    box-sizing: border-box !important; /* padding সহ ঠিকভাবে দেখানোর জন্য */
}

/* Mega Menu column width change */

.mega-sub-menu .mega-menu-column.media-center-image.media-center-image
.mega-sub-menu .mega-menu-column.mega-media-center-col-2.media-center-col-2,
.mega-sub-menu .mega-menu-column.mega-media-center-col-3.media-center-col-3
{
    width: 380px !important;       /* fixed width */
    max-width: 380px !important;
    box-sizing: border-box;
    float: left;                   /* alignment ঠিক রাখতে */
}

/* Media Center */
.media-center-text {
  font-size: 0.45rem;
  line-height: 1.5; /* readability improve */
  color: #000;
  font-family: Helvetica, Arial, sans-serif;
}

.media-center-btn {
  background-color: green;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 0.75rem;
  text-transform: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px; /* arrow এবং text এর মধ্যে spacing */
  transition: background-color 0.3s ease;
  font-family: Helvetica, Arial, sans-serif;
}

.media-center-btn:hover {
  background-color: #006400; /* dark green on hover */
  color: white;
}

/* Optional: arrow icon style */
.media-center-btn-icon {
  font-size: 1rem; /* icon size */
}