$url_parts = explode("/", $_SERVER['REQUEST_URI']);
// Find the index of "country" and get the next segment
$country_slug = "";
foreach ($url_parts as $index => $part) {
if ($part === "country" && isset($url_parts[$index + 1])) {
$country_slug = $url_parts[$index + 1];
break;
}
}